/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 108 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 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 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 a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C 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 a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord 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 a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_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_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); " "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); " 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); " "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); " 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 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; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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 "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; " "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; " "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); " "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); " "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; " "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); " "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); " "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; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "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); " "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; " "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); " "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); " "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; " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM 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); " 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 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_size wyx wyy wyz = sizeFM 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; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchRight_size wyx wyy wyz = sizeFM wyz; " "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; " 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)) wzw wzx; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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 addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 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 wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (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 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 :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 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)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 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 wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];4380[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 7[label="",style="solid", color="burlywood", weight=3]; 4381[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9 -> 6[label="",style="dashed", color="red", weight=0]; 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];4382[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 4382[label="",style="solid", color="burlywood", weight=9]; 4382 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];4383[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4383[label="",style="solid", color="burlywood", weight=9]; 4383 -> 15[label="",style="solid", color="burlywood", weight=3]; 4384[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 4384[label="",style="solid", color="burlywood", weight=9]; 4384 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 21 -> 24[label="",style="dashed", color="green", weight=3]; 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];22 -> 25[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 24 -> 23[label="",style="dashed", color="red", weight=0]; 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare3 xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];27[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare2 xuu400 xuu30 (xuu400 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4385[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4385[label="",style="solid", color="burlywood", weight=9]; 4385 -> 28[label="",style="solid", color="burlywood", weight=3]; 4386[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4386[label="",style="solid", color="burlywood", weight=9]; 4386 -> 29[label="",style="solid", color="burlywood", weight=3]; 28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) xuu30 (Left xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4387[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 30[label="",style="solid", color="burlywood", weight=3]; 4388[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 31[label="",style="solid", color="burlywood", weight=3]; 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) xuu30 (Right xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4389[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 32[label="",style="solid", color="burlywood", weight=3]; 4390[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 33[label="",style="solid", color="burlywood", weight=3]; 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Left xuu300) (Left xuu4000 == Left xuu300) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Right xuu300) (Right xuu4000 == Right xuu300) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 34 -> 198[label="",style="dashed", color="red", weight=0]; 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];34 -> 199[label="",style="dashed", color="magenta", weight=3]; 34 -> 200[label="",style="dashed", color="magenta", weight=3]; 34 -> 201[label="",style="dashed", color="magenta", weight=3]; 34 -> 202[label="",style="dashed", color="magenta", weight=3]; 34 -> 203[label="",style="dashed", color="magenta", weight=3]; 34 -> 204[label="",style="dashed", color="magenta", weight=3]; 34 -> 205[label="",style="dashed", color="magenta", weight=3]; 34 -> 206[label="",style="dashed", color="magenta", weight=3]; 35 -> 114[label="",style="dashed", color="red", weight=0]; 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Right xuu300) False == LT)",fontsize=16,color="magenta"];35 -> 115[label="",style="dashed", color="magenta", weight=3]; 36 -> 122[label="",style="dashed", color="red", weight=0]; 36[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Left xuu300) False == LT)",fontsize=16,color="magenta"];36 -> 123[label="",style="dashed", color="magenta", weight=3]; 37 -> 252[label="",style="dashed", color="red", weight=0]; 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];37 -> 253[label="",style="dashed", color="magenta", weight=3]; 37 -> 254[label="",style="dashed", color="magenta", weight=3]; 37 -> 255[label="",style="dashed", color="magenta", weight=3]; 37 -> 256[label="",style="dashed", color="magenta", weight=3]; 37 -> 257[label="",style="dashed", color="magenta", weight=3]; 37 -> 258[label="",style="dashed", color="magenta", weight=3]; 37 -> 259[label="",style="dashed", color="magenta", weight=3]; 37 -> 260[label="",style="dashed", color="magenta", weight=3]; 199 -> 63[label="",style="dashed", color="red", weight=0]; 199[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];199 -> 210[label="",style="dashed", color="magenta", weight=3]; 199 -> 211[label="",style="dashed", color="magenta", weight=3]; 200[label="xuu300",fontsize=16,color="green",shape="box"];201[label="xuu4000",fontsize=16,color="green",shape="box"];202[label="xuu33",fontsize=16,color="green",shape="box"];203[label="xuu32",fontsize=16,color="green",shape="box"];204[label="xuu34",fontsize=16,color="green",shape="box"];205[label="xuu31",fontsize=16,color="green",shape="box"];206[label="xuu401",fontsize=16,color="green",shape="box"];198[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 xuu41",fontsize=16,color="burlywood",shape="triangle"];4391[label="xuu41/False",fontsize=10,color="white",style="solid",shape="box"];198 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 212[label="",style="solid", color="burlywood", weight=3]; 4392[label="xuu41/True",fontsize=10,color="white",style="solid",shape="box"];198 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 213[label="",style="solid", color="burlywood", weight=3]; 115 -> 63[label="",style="dashed", color="red", weight=0]; 115[label="compare2 (Left xuu4000) (Right xuu300) False == LT",fontsize=16,color="magenta"];115 -> 118[label="",style="dashed", color="magenta", weight=3]; 115 -> 119[label="",style="dashed", color="magenta", weight=3]; 114[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 xuu39",fontsize=16,color="burlywood",shape="triangle"];4393[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];114 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 120[label="",style="solid", color="burlywood", weight=3]; 4394[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];114 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 121[label="",style="solid", color="burlywood", weight=3]; 123 -> 63[label="",style="dashed", color="red", weight=0]; 123[label="compare2 (Right xuu4000) (Left xuu300) False == LT",fontsize=16,color="magenta"];123 -> 126[label="",style="dashed", color="magenta", weight=3]; 123 -> 127[label="",style="dashed", color="magenta", weight=3]; 122[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 xuu40",fontsize=16,color="burlywood",shape="triangle"];4395[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];122 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 128[label="",style="solid", color="burlywood", weight=3]; 4396[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];122 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 129[label="",style="solid", color="burlywood", weight=3]; 253[label="xuu4000",fontsize=16,color="green",shape="box"];254 -> 63[label="",style="dashed", color="red", weight=0]; 254[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];254 -> 264[label="",style="dashed", color="magenta", weight=3]; 254 -> 265[label="",style="dashed", color="magenta", weight=3]; 255[label="xuu300",fontsize=16,color="green",shape="box"];256[label="xuu33",fontsize=16,color="green",shape="box"];257[label="xuu32",fontsize=16,color="green",shape="box"];258[label="xuu31",fontsize=16,color="green",shape="box"];259[label="xuu34",fontsize=16,color="green",shape="box"];260[label="xuu401",fontsize=16,color="green",shape="box"];252[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 xuu51",fontsize=16,color="burlywood",shape="triangle"];4397[label="xuu51/False",fontsize=10,color="white",style="solid",shape="box"];252 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 266[label="",style="solid", color="burlywood", weight=3]; 4398[label="xuu51/True",fontsize=10,color="white",style="solid",shape="box"];252 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 267[label="",style="solid", color="burlywood", weight=3]; 210[label="LT",fontsize=16,color="green",shape="box"];211 -> 2160[label="",style="dashed", color="red", weight=0]; 211[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];211 -> 2161[label="",style="dashed", color="magenta", weight=3]; 211 -> 2162[label="",style="dashed", color="magenta", weight=3]; 211 -> 2163[label="",style="dashed", color="magenta", weight=3]; 63[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4399[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];63 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 98[label="",style="solid", color="burlywood", weight=3]; 4400[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];63 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 99[label="",style="solid", color="burlywood", weight=3]; 4401[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];63 -> 4401[label="",style="solid", color="burlywood", weight=9]; 4401 -> 100[label="",style="solid", color="burlywood", weight=3]; 212[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 False",fontsize=16,color="black",shape="box"];212 -> 225[label="",style="solid", color="black", weight=3]; 213[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];213 -> 226[label="",style="solid", color="black", weight=3]; 118[label="LT",fontsize=16,color="green",shape="box"];119 -> 2160[label="",style="dashed", color="red", weight=0]; 119[label="compare2 (Left xuu4000) (Right xuu300) False",fontsize=16,color="magenta"];119 -> 2164[label="",style="dashed", color="magenta", weight=3]; 119 -> 2165[label="",style="dashed", color="magenta", weight=3]; 119 -> 2166[label="",style="dashed", color="magenta", weight=3]; 120[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];120 -> 131[label="",style="solid", color="black", weight=3]; 121[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];121 -> 132[label="",style="solid", color="black", weight=3]; 126[label="LT",fontsize=16,color="green",shape="box"];127 -> 2160[label="",style="dashed", color="red", weight=0]; 127[label="compare2 (Right xuu4000) (Left xuu300) False",fontsize=16,color="magenta"];127 -> 2167[label="",style="dashed", color="magenta", weight=3]; 127 -> 2168[label="",style="dashed", color="magenta", weight=3]; 127 -> 2169[label="",style="dashed", color="magenta", weight=3]; 128[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];128 -> 215[label="",style="solid", color="black", weight=3]; 129[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];129 -> 216[label="",style="solid", color="black", weight=3]; 264[label="LT",fontsize=16,color="green",shape="box"];265 -> 2160[label="",style="dashed", color="red", weight=0]; 265[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];265 -> 2170[label="",style="dashed", color="magenta", weight=3]; 265 -> 2171[label="",style="dashed", color="magenta", weight=3]; 265 -> 2172[label="",style="dashed", color="magenta", weight=3]; 266[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 False",fontsize=16,color="black",shape="box"];266 -> 303[label="",style="solid", color="black", weight=3]; 267[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];267 -> 304[label="",style="solid", color="black", weight=3]; 2161[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4402[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2198[label="",style="solid", color="blue", weight=3]; 4403[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2199[label="",style="solid", color="blue", weight=3]; 4404[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2200[label="",style="solid", color="blue", weight=3]; 4405[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2201[label="",style="solid", color="blue", weight=3]; 4406[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2202[label="",style="solid", color="blue", weight=3]; 4407[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2203[label="",style="solid", color="blue", weight=3]; 4408[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2204[label="",style="solid", color="blue", weight=3]; 4409[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2205[label="",style="solid", color="blue", weight=3]; 4410[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2206[label="",style="solid", color="blue", weight=3]; 4411[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2207[label="",style="solid", color="blue", weight=3]; 4412[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2208[label="",style="solid", color="blue", weight=3]; 4413[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2209[label="",style="solid", color="blue", weight=3]; 4414[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2210[label="",style="solid", color="blue", weight=3]; 4415[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2211[label="",style="solid", color="blue", weight=3]; 2162[label="Left xuu4000",fontsize=16,color="green",shape="box"];2163[label="Left xuu300",fontsize=16,color="green",shape="box"];2160[label="compare2 xuu470 xuu480 xuu148",fontsize=16,color="burlywood",shape="triangle"];4416[label="xuu148/False",fontsize=10,color="white",style="solid",shape="box"];2160 -> 4416[label="",style="solid", color="burlywood", weight=9]; 4416 -> 2212[label="",style="solid", color="burlywood", weight=3]; 4417[label="xuu148/True",fontsize=10,color="white",style="solid",shape="box"];2160 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 2213[label="",style="solid", color="burlywood", weight=3]; 98[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];4418[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];98 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 172[label="",style="solid", color="burlywood", weight=3]; 4419[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];98 -> 4419[label="",style="solid", color="burlywood", weight=9]; 4419 -> 173[label="",style="solid", color="burlywood", weight=3]; 4420[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];98 -> 4420[label="",style="solid", color="burlywood", weight=9]; 4420 -> 174[label="",style="solid", color="burlywood", weight=3]; 99[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];4421[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];99 -> 4421[label="",style="solid", color="burlywood", weight=9]; 4421 -> 175[label="",style="solid", color="burlywood", weight=3]; 4422[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];99 -> 4422[label="",style="solid", color="burlywood", weight=9]; 4422 -> 176[label="",style="solid", color="burlywood", weight=3]; 4423[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];99 -> 4423[label="",style="solid", color="burlywood", weight=9]; 4423 -> 177[label="",style="solid", color="burlywood", weight=3]; 100[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];4424[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];100 -> 4424[label="",style="solid", color="burlywood", weight=9]; 4424 -> 178[label="",style="solid", color="burlywood", weight=3]; 4425[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];100 -> 4425[label="",style="solid", color="burlywood", weight=9]; 4425 -> 179[label="",style="solid", color="burlywood", weight=3]; 4426[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];100 -> 4426[label="",style="solid", color="burlywood", weight=9]; 4426 -> 180[label="",style="solid", color="burlywood", weight=3]; 225 -> 296[label="",style="dashed", color="red", weight=0]; 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 (Left xuu19 > Left xuu14)",fontsize=16,color="magenta"];225 -> 297[label="",style="dashed", color="magenta", weight=3]; 226 -> 245[label="",style="dashed", color="red", weight=0]; 226[label="FiniteMap.mkBalBranch (Left xuu14) xuu15 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Left xuu19) xuu20) xuu18",fontsize=16,color="magenta"];226 -> 246[label="",style="dashed", color="magenta", weight=3]; 226 -> 247[label="",style="dashed", color="magenta", weight=3]; 226 -> 248[label="",style="dashed", color="magenta", weight=3]; 226 -> 249[label="",style="dashed", color="magenta", weight=3]; 2164[label="False",fontsize=16,color="green",shape="box"];2165[label="Left xuu4000",fontsize=16,color="green",shape="box"];2166[label="Right xuu300",fontsize=16,color="green",shape="box"];131 -> 329[label="",style="dashed", color="red", weight=0]; 131[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (Left xuu4000 > Right xuu300)",fontsize=16,color="magenta"];131 -> 330[label="",style="dashed", color="magenta", weight=3]; 132 -> 219[label="",style="dashed", color="red", weight=0]; 132[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Left xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];132 -> 220[label="",style="dashed", color="magenta", weight=3]; 2167[label="False",fontsize=16,color="green",shape="box"];2168[label="Right xuu4000",fontsize=16,color="green",shape="box"];2169[label="Left xuu300",fontsize=16,color="green",shape="box"];215 -> 344[label="",style="dashed", color="red", weight=0]; 215[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (Right xuu4000 > Left xuu300)",fontsize=16,color="magenta"];215 -> 345[label="",style="dashed", color="magenta", weight=3]; 216 -> 245[label="",style="dashed", color="red", weight=0]; 216[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Right xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];216 -> 250[label="",style="dashed", color="magenta", weight=3]; 2170[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4427[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2214[label="",style="solid", color="blue", weight=3]; 4428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2215[label="",style="solid", color="blue", weight=3]; 4429[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2216[label="",style="solid", color="blue", weight=3]; 4430[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2217[label="",style="solid", color="blue", weight=3]; 4431[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2218[label="",style="solid", color="blue", weight=3]; 4432[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2219[label="",style="solid", color="blue", weight=3]; 4433[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2220[label="",style="solid", color="blue", weight=3]; 4434[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2221[label="",style="solid", color="blue", weight=3]; 4435[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2222[label="",style="solid", color="blue", weight=3]; 4436[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2223[label="",style="solid", color="blue", weight=3]; 4437[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2224[label="",style="solid", color="blue", weight=3]; 4438[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2225[label="",style="solid", color="blue", weight=3]; 4439[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2226[label="",style="solid", color="blue", weight=3]; 4440[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2227[label="",style="solid", color="blue", weight=3]; 2171[label="Right xuu4000",fontsize=16,color="green",shape="box"];2172[label="Right xuu300",fontsize=16,color="green",shape="box"];303 -> 382[label="",style="dashed", color="red", weight=0]; 303[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 (Right xuu36 > Right xuu31)",fontsize=16,color="magenta"];303 -> 383[label="",style="dashed", color="magenta", weight=3]; 304 -> 219[label="",style="dashed", color="red", weight=0]; 304[label="FiniteMap.mkBalBranch (Right xuu31) xuu32 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu36) xuu37) xuu35",fontsize=16,color="magenta"];304 -> 333[label="",style="dashed", color="magenta", weight=3]; 304 -> 334[label="",style="dashed", color="magenta", weight=3]; 304 -> 335[label="",style="dashed", color="magenta", weight=3]; 304 -> 336[label="",style="dashed", color="magenta", weight=3]; 2198[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2198 -> 2268[label="",style="solid", color="black", weight=3]; 2199[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4441[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];2199 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 2269[label="",style="solid", color="burlywood", weight=3]; 2200[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2200 -> 2270[label="",style="solid", color="black", weight=3]; 2201[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4442[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 2271[label="",style="solid", color="burlywood", weight=3]; 4443[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 2272[label="",style="solid", color="burlywood", weight=3]; 2202[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4444[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 2273[label="",style="solid", color="burlywood", weight=3]; 2203 -> 63[label="",style="dashed", color="red", weight=0]; 2203[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2204[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4445[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4445[label="",style="solid", color="burlywood", weight=9]; 4445 -> 2274[label="",style="solid", color="burlywood", weight=3]; 2205[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4446[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4446[label="",style="solid", color="burlywood", weight=9]; 4446 -> 2275[label="",style="solid", color="burlywood", weight=3]; 4447[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4447[label="",style="solid", color="burlywood", weight=9]; 4447 -> 2276[label="",style="solid", color="burlywood", weight=3]; 2206[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4448[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];2206 -> 4448[label="",style="solid", color="burlywood", weight=9]; 4448 -> 2277[label="",style="solid", color="burlywood", weight=3]; 2207[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4449[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4449[label="",style="solid", color="burlywood", weight=9]; 4449 -> 2278[label="",style="solid", color="burlywood", weight=3]; 4450[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4450[label="",style="solid", color="burlywood", weight=9]; 4450 -> 2279[label="",style="solid", color="burlywood", weight=3]; 2208[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2208 -> 2280[label="",style="solid", color="black", weight=3]; 2209[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2209 -> 2281[label="",style="solid", color="black", weight=3]; 2210[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4451[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2210 -> 4451[label="",style="solid", color="burlywood", weight=9]; 4451 -> 2282[label="",style="solid", color="burlywood", weight=3]; 4452[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];2210 -> 4452[label="",style="solid", color="burlywood", weight=9]; 4452 -> 2283[label="",style="solid", color="burlywood", weight=3]; 2211[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4453[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];2211 -> 4453[label="",style="solid", color="burlywood", weight=9]; 4453 -> 2284[label="",style="solid", color="burlywood", weight=3]; 2212[label="compare2 xuu470 xuu480 False",fontsize=16,color="black",shape="box"];2212 -> 2285[label="",style="solid", color="black", weight=3]; 2213[label="compare2 xuu470 xuu480 True",fontsize=16,color="black",shape="box"];2213 -> 2286[label="",style="solid", color="black", weight=3]; 172[label="LT == LT",fontsize=16,color="black",shape="box"];172 -> 287[label="",style="solid", color="black", weight=3]; 173[label="LT == EQ",fontsize=16,color="black",shape="box"];173 -> 288[label="",style="solid", color="black", weight=3]; 174[label="LT == GT",fontsize=16,color="black",shape="box"];174 -> 289[label="",style="solid", color="black", weight=3]; 175[label="EQ == LT",fontsize=16,color="black",shape="box"];175 -> 290[label="",style="solid", color="black", weight=3]; 176[label="EQ == EQ",fontsize=16,color="black",shape="box"];176 -> 291[label="",style="solid", color="black", weight=3]; 177[label="EQ == GT",fontsize=16,color="black",shape="box"];177 -> 292[label="",style="solid", color="black", weight=3]; 178[label="GT == LT",fontsize=16,color="black",shape="box"];178 -> 293[label="",style="solid", color="black", weight=3]; 179[label="GT == EQ",fontsize=16,color="black",shape="box"];179 -> 294[label="",style="solid", color="black", weight=3]; 180[label="GT == GT",fontsize=16,color="black",shape="box"];180 -> 295[label="",style="solid", color="black", weight=3]; 297[label="Left xuu19 > Left xuu14",fontsize=16,color="black",shape="box"];297 -> 321[label="",style="solid", color="black", weight=3]; 296[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 xuu52",fontsize=16,color="burlywood",shape="triangle"];4454[label="xuu52/False",fontsize=10,color="white",style="solid",shape="box"];296 -> 4454[label="",style="solid", color="burlywood", weight=9]; 4454 -> 322[label="",style="solid", color="burlywood", weight=3]; 4455[label="xuu52/True",fontsize=10,color="white",style="solid",shape="box"];296 -> 4455[label="",style="solid", color="burlywood", weight=9]; 4455 -> 323[label="",style="solid", color="burlywood", weight=3]; 246[label="xuu14",fontsize=16,color="green",shape="box"];247[label="xuu15",fontsize=16,color="green",shape="box"];248[label="xuu18",fontsize=16,color="green",shape="box"];249 -> 14[label="",style="dashed", color="red", weight=0]; 249[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Left xuu19) xuu20",fontsize=16,color="magenta"];249 -> 324[label="",style="dashed", color="magenta", weight=3]; 249 -> 325[label="",style="dashed", color="magenta", weight=3]; 249 -> 326[label="",style="dashed", color="magenta", weight=3]; 245[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];245 -> 327[label="",style="solid", color="black", weight=3]; 330[label="Left xuu4000 > Right xuu300",fontsize=16,color="black",shape="box"];330 -> 337[label="",style="solid", color="black", weight=3]; 329[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 xuu60",fontsize=16,color="burlywood",shape="triangle"];4456[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];329 -> 4456[label="",style="solid", color="burlywood", weight=9]; 4456 -> 338[label="",style="solid", color="burlywood", weight=3]; 4457[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];329 -> 4457[label="",style="solid", color="burlywood", weight=9]; 4457 -> 339[label="",style="solid", color="burlywood", weight=3]; 220 -> 14[label="",style="dashed", color="red", weight=0]; 220[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Left xuu4000) xuu401",fontsize=16,color="magenta"];220 -> 340[label="",style="dashed", color="magenta", weight=3]; 220 -> 341[label="",style="dashed", color="magenta", weight=3]; 219[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];219 -> 342[label="",style="solid", color="black", weight=3]; 345[label="Right xuu4000 > Left xuu300",fontsize=16,color="black",shape="box"];345 -> 347[label="",style="solid", color="black", weight=3]; 344[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 xuu61",fontsize=16,color="burlywood",shape="triangle"];4458[label="xuu61/False",fontsize=10,color="white",style="solid",shape="box"];344 -> 4458[label="",style="solid", color="burlywood", weight=9]; 4458 -> 348[label="",style="solid", color="burlywood", weight=3]; 4459[label="xuu61/True",fontsize=10,color="white",style="solid",shape="box"];344 -> 4459[label="",style="solid", color="burlywood", weight=9]; 4459 -> 349[label="",style="solid", color="burlywood", weight=3]; 250 -> 14[label="",style="dashed", color="red", weight=0]; 250[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Right xuu4000) xuu401",fontsize=16,color="magenta"];250 -> 350[label="",style="dashed", color="magenta", weight=3]; 250 -> 351[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2198[label="",style="dashed", color="red", weight=0]; 2214[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2214 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2199[label="",style="dashed", color="red", weight=0]; 2215[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2215 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2200[label="",style="dashed", color="red", weight=0]; 2216[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2216 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2201[label="",style="dashed", color="red", weight=0]; 2217[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2217 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2202[label="",style="dashed", color="red", weight=0]; 2218[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2218 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2219 -> 63[label="",style="dashed", color="red", weight=0]; 2219[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2219 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2204[label="",style="dashed", color="red", weight=0]; 2220[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2220 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2205[label="",style="dashed", color="red", weight=0]; 2221[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2221 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2206[label="",style="dashed", color="red", weight=0]; 2222[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2222 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2207[label="",style="dashed", color="red", weight=0]; 2223[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2223 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2208[label="",style="dashed", color="red", weight=0]; 2224[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2224 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2209[label="",style="dashed", color="red", weight=0]; 2225[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2225 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2210[label="",style="dashed", color="red", weight=0]; 2226[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2226 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2211[label="",style="dashed", color="red", weight=0]; 2227[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2227 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2314[label="",style="dashed", color="magenta", weight=3]; 383[label="Right xuu36 > Right xuu31",fontsize=16,color="black",shape="box"];383 -> 385[label="",style="solid", color="black", weight=3]; 382[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 xuu62",fontsize=16,color="burlywood",shape="triangle"];4460[label="xuu62/False",fontsize=10,color="white",style="solid",shape="box"];382 -> 4460[label="",style="solid", color="burlywood", weight=9]; 4460 -> 386[label="",style="solid", color="burlywood", weight=3]; 4461[label="xuu62/True",fontsize=10,color="white",style="solid",shape="box"];382 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 387[label="",style="solid", color="burlywood", weight=3]; 333[label="xuu31",fontsize=16,color="green",shape="box"];334[label="xuu32",fontsize=16,color="green",shape="box"];335 -> 14[label="",style="dashed", color="red", weight=0]; 335[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu36) xuu37",fontsize=16,color="magenta"];335 -> 388[label="",style="dashed", color="magenta", weight=3]; 335 -> 389[label="",style="dashed", color="magenta", weight=3]; 335 -> 390[label="",style="dashed", color="magenta", weight=3]; 336[label="xuu35",fontsize=16,color="green",shape="box"];2268[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4462[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2268 -> 4462[label="",style="solid", color="burlywood", weight=9]; 4462 -> 2345[label="",style="solid", color="burlywood", weight=3]; 2269[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];4463[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];2269 -> 4463[label="",style="solid", color="burlywood", weight=9]; 4463 -> 2346[label="",style="solid", color="burlywood", weight=3]; 2270[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];4464[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];2270 -> 4464[label="",style="solid", color="burlywood", weight=9]; 4464 -> 2347[label="",style="solid", color="burlywood", weight=3]; 4465[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];2270 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 2348[label="",style="solid", color="burlywood", weight=3]; 2271[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4466[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2271 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 2349[label="",style="solid", color="burlywood", weight=3]; 4467[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2271 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 2350[label="",style="solid", color="burlywood", weight=3]; 2272[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4468[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 2351[label="",style="solid", color="burlywood", weight=3]; 4469[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 2352[label="",style="solid", color="burlywood", weight=3]; 2273[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];4470[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];2273 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 2353[label="",style="solid", color="burlywood", weight=3]; 2274[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];4471[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];2274 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 2354[label="",style="solid", color="burlywood", weight=3]; 2275[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4472[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2355[label="",style="solid", color="burlywood", weight=3]; 4473[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2356[label="",style="solid", color="burlywood", weight=3]; 2276[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];4474[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2276 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2357[label="",style="solid", color="burlywood", weight=3]; 4475[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2276 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2358[label="",style="solid", color="burlywood", weight=3]; 2277[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4476[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];2277 -> 4476[label="",style="solid", color="burlywood", weight=9]; 4476 -> 2359[label="",style="solid", color="burlywood", weight=3]; 2278[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];4477[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4477[label="",style="solid", color="burlywood", weight=9]; 4477 -> 2360[label="",style="solid", color="burlywood", weight=3]; 4478[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4478[label="",style="solid", color="burlywood", weight=9]; 4478 -> 2361[label="",style="solid", color="burlywood", weight=3]; 2279[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];4479[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4479[label="",style="solid", color="burlywood", weight=9]; 4479 -> 2362[label="",style="solid", color="burlywood", weight=3]; 4480[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4480[label="",style="solid", color="burlywood", weight=9]; 4480 -> 2363[label="",style="solid", color="burlywood", weight=3]; 2280[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4481[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4481[label="",style="solid", color="burlywood", weight=9]; 4481 -> 2364[label="",style="solid", color="burlywood", weight=3]; 2281[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4482[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4482[label="",style="solid", color="burlywood", weight=9]; 4482 -> 2365[label="",style="solid", color="burlywood", weight=3]; 2282[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];4483[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4483[label="",style="solid", color="burlywood", weight=9]; 4483 -> 2366[label="",style="solid", color="burlywood", weight=3]; 4484[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4484[label="",style="solid", color="burlywood", weight=9]; 4484 -> 2367[label="",style="solid", color="burlywood", weight=3]; 2283[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4485[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4485[label="",style="solid", color="burlywood", weight=9]; 4485 -> 2368[label="",style="solid", color="burlywood", weight=3]; 4486[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4486[label="",style="solid", color="burlywood", weight=9]; 4486 -> 2369[label="",style="solid", color="burlywood", weight=3]; 2284[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4487[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4487[label="",style="solid", color="burlywood", weight=9]; 4487 -> 2370[label="",style="solid", color="burlywood", weight=3]; 2285[label="compare1 xuu470 xuu480 (xuu470 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4488[label="xuu470/Left xuu4700",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4488[label="",style="solid", color="burlywood", weight=9]; 4488 -> 2371[label="",style="solid", color="burlywood", weight=3]; 4489[label="xuu470/Right xuu4700",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4489[label="",style="solid", color="burlywood", weight=9]; 4489 -> 2372[label="",style="solid", color="burlywood", weight=3]; 2286[label="EQ",fontsize=16,color="green",shape="box"];287[label="True",fontsize=16,color="green",shape="box"];288[label="False",fontsize=16,color="green",shape="box"];289[label="False",fontsize=16,color="green",shape="box"];290[label="False",fontsize=16,color="green",shape="box"];291[label="True",fontsize=16,color="green",shape="box"];292[label="False",fontsize=16,color="green",shape="box"];293[label="False",fontsize=16,color="green",shape="box"];294[label="False",fontsize=16,color="green",shape="box"];295[label="True",fontsize=16,color="green",shape="box"];321 -> 63[label="",style="dashed", color="red", weight=0]; 321[label="compare (Left xuu19) (Left xuu14) == GT",fontsize=16,color="magenta"];321 -> 418[label="",style="dashed", color="magenta", weight=3]; 321 -> 419[label="",style="dashed", color="magenta", weight=3]; 322[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 False",fontsize=16,color="black",shape="box"];322 -> 420[label="",style="solid", color="black", weight=3]; 323[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];323 -> 421[label="",style="solid", color="black", weight=3]; 324[label="xuu17",fontsize=16,color="green",shape="box"];325[label="xuu20",fontsize=16,color="green",shape="box"];326[label="Left xuu19",fontsize=16,color="green",shape="box"];327[label="FiniteMap.mkBalBranch6 (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="box"];327 -> 422[label="",style="solid", color="black", weight=3]; 337 -> 63[label="",style="dashed", color="red", weight=0]; 337[label="compare (Left xuu4000) (Right xuu300) == GT",fontsize=16,color="magenta"];337 -> 423[label="",style="dashed", color="magenta", weight=3]; 337 -> 424[label="",style="dashed", color="magenta", weight=3]; 338[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];338 -> 425[label="",style="solid", color="black", weight=3]; 339[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];339 -> 426[label="",style="solid", color="black", weight=3]; 340[label="xuu33",fontsize=16,color="green",shape="box"];341[label="Left xuu4000",fontsize=16,color="green",shape="box"];342[label="FiniteMap.mkBalBranch6 (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="box"];342 -> 427[label="",style="solid", color="black", weight=3]; 347 -> 63[label="",style="dashed", color="red", weight=0]; 347[label="compare (Right xuu4000) (Left xuu300) == GT",fontsize=16,color="magenta"];347 -> 429[label="",style="dashed", color="magenta", weight=3]; 347 -> 430[label="",style="dashed", color="magenta", weight=3]; 348[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];348 -> 431[label="",style="solid", color="black", weight=3]; 349[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];349 -> 432[label="",style="solid", color="black", weight=3]; 350[label="xuu33",fontsize=16,color="green",shape="box"];351[label="Right xuu4000",fontsize=16,color="green",shape="box"];2287[label="xuu300",fontsize=16,color="green",shape="box"];2288[label="xuu4000",fontsize=16,color="green",shape="box"];2289[label="xuu300",fontsize=16,color="green",shape="box"];2290[label="xuu4000",fontsize=16,color="green",shape="box"];2291[label="xuu300",fontsize=16,color="green",shape="box"];2292[label="xuu4000",fontsize=16,color="green",shape="box"];2293[label="xuu300",fontsize=16,color="green",shape="box"];2294[label="xuu4000",fontsize=16,color="green",shape="box"];2295[label="xuu300",fontsize=16,color="green",shape="box"];2296[label="xuu4000",fontsize=16,color="green",shape="box"];2297[label="xuu300",fontsize=16,color="green",shape="box"];2298[label="xuu4000",fontsize=16,color="green",shape="box"];2299[label="xuu300",fontsize=16,color="green",shape="box"];2300[label="xuu4000",fontsize=16,color="green",shape="box"];2301[label="xuu300",fontsize=16,color="green",shape="box"];2302[label="xuu4000",fontsize=16,color="green",shape="box"];2303[label="xuu300",fontsize=16,color="green",shape="box"];2304[label="xuu4000",fontsize=16,color="green",shape="box"];2305[label="xuu300",fontsize=16,color="green",shape="box"];2306[label="xuu4000",fontsize=16,color="green",shape="box"];2307[label="xuu300",fontsize=16,color="green",shape="box"];2308[label="xuu4000",fontsize=16,color="green",shape="box"];2309[label="xuu300",fontsize=16,color="green",shape="box"];2310[label="xuu4000",fontsize=16,color="green",shape="box"];2311[label="xuu300",fontsize=16,color="green",shape="box"];2312[label="xuu4000",fontsize=16,color="green",shape="box"];2313[label="xuu300",fontsize=16,color="green",shape="box"];2314[label="xuu4000",fontsize=16,color="green",shape="box"];385 -> 63[label="",style="dashed", color="red", weight=0]; 385[label="compare (Right xuu36) (Right xuu31) == GT",fontsize=16,color="magenta"];385 -> 434[label="",style="dashed", color="magenta", weight=3]; 385 -> 435[label="",style="dashed", color="magenta", weight=3]; 386[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 False",fontsize=16,color="black",shape="box"];386 -> 436[label="",style="solid", color="black", weight=3]; 387[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];387 -> 437[label="",style="solid", color="black", weight=3]; 388[label="xuu34",fontsize=16,color="green",shape="box"];389[label="xuu37",fontsize=16,color="green",shape="box"];390[label="Right xuu36",fontsize=16,color="green",shape="box"];2345[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4490[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2345 -> 4490[label="",style="solid", color="burlywood", weight=9]; 4490 -> 2441[label="",style="solid", color="burlywood", weight=3]; 2346[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];2346 -> 2442[label="",style="solid", color="black", weight=3]; 2347[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4491[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4491[label="",style="solid", color="burlywood", weight=9]; 4491 -> 2443[label="",style="solid", color="burlywood", weight=3]; 4492[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2348[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4493[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 2445[label="",style="solid", color="burlywood", weight=3]; 4494[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4494[label="",style="solid", color="burlywood", weight=9]; 4494 -> 2446[label="",style="solid", color="burlywood", weight=3]; 2349[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2349 -> 2447[label="",style="solid", color="black", weight=3]; 2350[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2350 -> 2448[label="",style="solid", color="black", weight=3]; 2351[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2351 -> 2449[label="",style="solid", color="black", weight=3]; 2352[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2352 -> 2450[label="",style="solid", color="black", weight=3]; 2353[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];2353 -> 2451[label="",style="solid", color="black", weight=3]; 2354[label="() == ()",fontsize=16,color="black",shape="box"];2354 -> 2452[label="",style="solid", color="black", weight=3]; 2355[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2355 -> 2453[label="",style="solid", color="black", weight=3]; 2356[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];2356 -> 2454[label="",style="solid", color="black", weight=3]; 2357[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2357 -> 2455[label="",style="solid", color="black", weight=3]; 2358[label="[] == []",fontsize=16,color="black",shape="box"];2358 -> 2456[label="",style="solid", color="black", weight=3]; 2359[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];2359 -> 2457[label="",style="solid", color="black", weight=3]; 2360[label="False == False",fontsize=16,color="black",shape="box"];2360 -> 2458[label="",style="solid", color="black", weight=3]; 2361[label="False == True",fontsize=16,color="black",shape="box"];2361 -> 2459[label="",style="solid", color="black", weight=3]; 2362[label="True == False",fontsize=16,color="black",shape="box"];2362 -> 2460[label="",style="solid", color="black", weight=3]; 2363[label="True == True",fontsize=16,color="black",shape="box"];2363 -> 2461[label="",style="solid", color="black", weight=3]; 2364[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4495[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];2364 -> 4495[label="",style="solid", color="burlywood", weight=9]; 4495 -> 2462[label="",style="solid", color="burlywood", weight=3]; 2365[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4496[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2365 -> 4496[label="",style="solid", color="burlywood", weight=9]; 4496 -> 2463[label="",style="solid", color="burlywood", weight=3]; 2366[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2366 -> 2464[label="",style="solid", color="black", weight=3]; 2367[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];2367 -> 2465[label="",style="solid", color="black", weight=3]; 2368[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];2368 -> 2466[label="",style="solid", color="black", weight=3]; 2369[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];2369 -> 2467[label="",style="solid", color="black", weight=3]; 2370[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];2370 -> 2468[label="",style="solid", color="black", weight=3]; 2371[label="compare1 (Left xuu4700) xuu480 (Left xuu4700 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4497[label="xuu480/Left xuu4800",fontsize=10,color="white",style="solid",shape="box"];2371 -> 4497[label="",style="solid", color="burlywood", weight=9]; 4497 -> 2469[label="",style="solid", color="burlywood", weight=3]; 4498[label="xuu480/Right xuu4800",fontsize=10,color="white",style="solid",shape="box"];2371 -> 4498[label="",style="solid", color="burlywood", weight=9]; 4498 -> 2470[label="",style="solid", color="burlywood", weight=3]; 2372[label="compare1 (Right xuu4700) xuu480 (Right xuu4700 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4499[label="xuu480/Left xuu4800",fontsize=10,color="white",style="solid",shape="box"];2372 -> 4499[label="",style="solid", color="burlywood", weight=9]; 4499 -> 2471[label="",style="solid", color="burlywood", weight=3]; 4500[label="xuu480/Right xuu4800",fontsize=10,color="white",style="solid",shape="box"];2372 -> 4500[label="",style="solid", color="burlywood", weight=9]; 4500 -> 2472[label="",style="solid", color="burlywood", weight=3]; 418[label="GT",fontsize=16,color="green",shape="box"];419[label="compare (Left xuu19) (Left xuu14)",fontsize=16,color="black",shape="box"];419 -> 476[label="",style="solid", color="black", weight=3]; 420[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 otherwise",fontsize=16,color="black",shape="box"];420 -> 477[label="",style="solid", color="black", weight=3]; 421 -> 245[label="",style="dashed", color="red", weight=0]; 421[label="FiniteMap.mkBalBranch (Left xuu14) xuu15 xuu17 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Left xuu19) xuu20)",fontsize=16,color="magenta"];421 -> 478[label="",style="dashed", color="magenta", weight=3]; 421 -> 479[label="",style="dashed", color="magenta", weight=3]; 421 -> 480[label="",style="dashed", color="magenta", weight=3]; 421 -> 481[label="",style="dashed", color="magenta", weight=3]; 422 -> 601[label="",style="dashed", color="red", weight=0]; 422[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];422 -> 602[label="",style="dashed", color="magenta", weight=3]; 423[label="GT",fontsize=16,color="green",shape="box"];424[label="compare (Left xuu4000) (Right xuu300)",fontsize=16,color="black",shape="box"];424 -> 483[label="",style="solid", color="black", weight=3]; 425[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];425 -> 484[label="",style="solid", color="black", weight=3]; 426 -> 219[label="",style="dashed", color="red", weight=0]; 426[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Left xuu4000) xuu401)",fontsize=16,color="magenta"];426 -> 485[label="",style="dashed", color="magenta", weight=3]; 426 -> 486[label="",style="dashed", color="magenta", weight=3]; 427 -> 611[label="",style="dashed", color="red", weight=0]; 427[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];427 -> 612[label="",style="dashed", color="magenta", weight=3]; 429[label="GT",fontsize=16,color="green",shape="box"];430[label="compare (Right xuu4000) (Left xuu300)",fontsize=16,color="black",shape="box"];430 -> 489[label="",style="solid", color="black", weight=3]; 431[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];431 -> 490[label="",style="solid", color="black", weight=3]; 432 -> 245[label="",style="dashed", color="red", weight=0]; 432[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu4000) xuu401)",fontsize=16,color="magenta"];432 -> 491[label="",style="dashed", color="magenta", weight=3]; 432 -> 492[label="",style="dashed", color="magenta", weight=3]; 434[label="GT",fontsize=16,color="green",shape="box"];435[label="compare (Right xuu36) (Right xuu31)",fontsize=16,color="black",shape="box"];435 -> 503[label="",style="solid", color="black", weight=3]; 436[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 otherwise",fontsize=16,color="black",shape="box"];436 -> 504[label="",style="solid", color="black", weight=3]; 437 -> 219[label="",style="dashed", color="red", weight=0]; 437[label="FiniteMap.mkBalBranch (Right xuu31) xuu32 xuu34 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 (Right xuu36) xuu37)",fontsize=16,color="magenta"];437 -> 505[label="",style="dashed", color="magenta", weight=3]; 437 -> 506[label="",style="dashed", color="magenta", weight=3]; 437 -> 507[label="",style="dashed", color="magenta", weight=3]; 437 -> 508[label="",style="dashed", color="magenta", weight=3]; 2441[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2441 -> 2505[label="",style="solid", color="black", weight=3]; 2442 -> 2596[label="",style="dashed", color="red", weight=0]; 2442[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2442 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2443[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4501[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4501[label="",style="solid", color="burlywood", weight=9]; 4501 -> 2512[label="",style="solid", color="burlywood", weight=3]; 4502[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4502[label="",style="solid", color="burlywood", weight=9]; 4502 -> 2513[label="",style="solid", color="burlywood", weight=3]; 2444[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4503[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2444 -> 4503[label="",style="solid", color="burlywood", weight=9]; 4503 -> 2514[label="",style="solid", color="burlywood", weight=3]; 4504[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2444 -> 4504[label="",style="solid", color="burlywood", weight=9]; 4504 -> 2515[label="",style="solid", color="burlywood", weight=3]; 2445[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4505[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2445 -> 4505[label="",style="solid", color="burlywood", weight=9]; 4505 -> 2516[label="",style="solid", color="burlywood", weight=3]; 4506[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2445 -> 4506[label="",style="solid", color="burlywood", weight=9]; 4506 -> 2517[label="",style="solid", color="burlywood", weight=3]; 2446[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4507[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2446 -> 4507[label="",style="solid", color="burlywood", weight=9]; 4507 -> 2518[label="",style="solid", color="burlywood", weight=3]; 4508[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2446 -> 4508[label="",style="solid", color="burlywood", weight=9]; 4508 -> 2519[label="",style="solid", color="burlywood", weight=3]; 2447[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4509[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 2520[label="",style="solid", color="blue", weight=3]; 4510[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 2521[label="",style="solid", color="blue", weight=3]; 4511[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 2522[label="",style="solid", color="blue", weight=3]; 4512[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 2523[label="",style="solid", color="blue", weight=3]; 4513[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 2524[label="",style="solid", color="blue", weight=3]; 4514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 2525[label="",style="solid", color="blue", weight=3]; 4515[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 2526[label="",style="solid", color="blue", weight=3]; 4516[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2527[label="",style="solid", color="blue", weight=3]; 4517[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2528[label="",style="solid", color="blue", weight=3]; 4518[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2529[label="",style="solid", color="blue", weight=3]; 4519[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2530[label="",style="solid", color="blue", weight=3]; 4520[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2531[label="",style="solid", color="blue", weight=3]; 4521[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2532[label="",style="solid", color="blue", weight=3]; 4522[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2447 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2533[label="",style="solid", color="blue", weight=3]; 2448[label="False",fontsize=16,color="green",shape="box"];2449[label="False",fontsize=16,color="green",shape="box"];2450[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4523[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2534[label="",style="solid", color="blue", weight=3]; 4524[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2535[label="",style="solid", color="blue", weight=3]; 4525[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2536[label="",style="solid", color="blue", weight=3]; 4526[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2537[label="",style="solid", color="blue", weight=3]; 4527[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2538[label="",style="solid", color="blue", weight=3]; 4528[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2539[label="",style="solid", color="blue", weight=3]; 4529[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2540[label="",style="solid", color="blue", weight=3]; 4530[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2541[label="",style="solid", color="blue", weight=3]; 4531[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2542[label="",style="solid", color="blue", weight=3]; 4532[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 2543[label="",style="solid", color="blue", weight=3]; 4533[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2544[label="",style="solid", color="blue", weight=3]; 4534[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2545[label="",style="solid", color="blue", weight=3]; 4535[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2546[label="",style="solid", color="blue", weight=3]; 4536[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2450 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2547[label="",style="solid", color="blue", weight=3]; 2451 -> 2596[label="",style="dashed", color="red", weight=0]; 2451[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2451 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2452[label="True",fontsize=16,color="green",shape="box"];2453 -> 2596[label="",style="dashed", color="red", weight=0]; 2453[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2453 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2454[label="False",fontsize=16,color="green",shape="box"];2455[label="False",fontsize=16,color="green",shape="box"];2456[label="True",fontsize=16,color="green",shape="box"];2457 -> 2596[label="",style="dashed", color="red", weight=0]; 2457[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2457 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2458[label="True",fontsize=16,color="green",shape="box"];2459[label="False",fontsize=16,color="green",shape="box"];2460[label="False",fontsize=16,color="green",shape="box"];2461[label="True",fontsize=16,color="green",shape="box"];2462[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];2462 -> 2558[label="",style="solid", color="black", weight=3]; 2463[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2463 -> 2559[label="",style="solid", color="black", weight=3]; 2464[label="True",fontsize=16,color="green",shape="box"];2465[label="False",fontsize=16,color="green",shape="box"];2466[label="False",fontsize=16,color="green",shape="box"];2467[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4537[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2560[label="",style="solid", color="blue", weight=3]; 4538[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2561[label="",style="solid", color="blue", weight=3]; 4539[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2562[label="",style="solid", color="blue", weight=3]; 4540[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2563[label="",style="solid", color="blue", weight=3]; 4541[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2564[label="",style="solid", color="blue", weight=3]; 4542[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2565[label="",style="solid", color="blue", weight=3]; 4543[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2566[label="",style="solid", color="blue", weight=3]; 4544[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 2567[label="",style="solid", color="blue", weight=3]; 4545[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 2568[label="",style="solid", color="blue", weight=3]; 4546[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2569[label="",style="solid", color="blue", weight=3]; 4547[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 2570[label="",style="solid", color="blue", weight=3]; 4548[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2571[label="",style="solid", color="blue", weight=3]; 4549[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2572[label="",style="solid", color="blue", weight=3]; 4550[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2573[label="",style="solid", color="blue", weight=3]; 2468 -> 2270[label="",style="dashed", color="red", weight=0]; 2468[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];2468 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2469[label="compare1 (Left xuu4700) (Left xuu4800) (Left xuu4700 <= Left xuu4800)",fontsize=16,color="black",shape="box"];2469 -> 2576[label="",style="solid", color="black", weight=3]; 2470[label="compare1 (Left xuu4700) (Right xuu4800) (Left xuu4700 <= Right xuu4800)",fontsize=16,color="black",shape="box"];2470 -> 2577[label="",style="solid", color="black", weight=3]; 2471[label="compare1 (Right xuu4700) (Left xuu4800) (Right xuu4700 <= Left xuu4800)",fontsize=16,color="black",shape="box"];2471 -> 2578[label="",style="solid", color="black", weight=3]; 2472[label="compare1 (Right xuu4700) (Right xuu4800) (Right xuu4700 <= Right xuu4800)",fontsize=16,color="black",shape="box"];2472 -> 2579[label="",style="solid", color="black", weight=3]; 476[label="compare3 (Left xuu19) (Left xuu14)",fontsize=16,color="black",shape="box"];476 -> 596[label="",style="solid", color="black", weight=3]; 477[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];477 -> 597[label="",style="solid", color="black", weight=3]; 478[label="xuu14",fontsize=16,color="green",shape="box"];479[label="xuu15",fontsize=16,color="green",shape="box"];480 -> 14[label="",style="dashed", color="red", weight=0]; 480[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Left xuu19) xuu20",fontsize=16,color="magenta"];480 -> 598[label="",style="dashed", color="magenta", weight=3]; 480 -> 599[label="",style="dashed", color="magenta", weight=3]; 480 -> 600[label="",style="dashed", color="magenta", weight=3]; 481[label="xuu17",fontsize=16,color="green",shape="box"];602[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];602 -> 604[label="",style="solid", color="black", weight=3]; 601[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu95",fontsize=16,color="burlywood",shape="triangle"];4551[label="xuu95/False",fontsize=10,color="white",style="solid",shape="box"];601 -> 4551[label="",style="solid", color="burlywood", weight=9]; 4551 -> 605[label="",style="solid", color="burlywood", weight=3]; 4552[label="xuu95/True",fontsize=10,color="white",style="solid",shape="box"];601 -> 4552[label="",style="solid", color="burlywood", weight=9]; 4552 -> 606[label="",style="solid", color="burlywood", weight=3]; 483[label="compare3 (Left xuu4000) (Right xuu300)",fontsize=16,color="black",shape="box"];483 -> 607[label="",style="solid", color="black", weight=3]; 484[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];484 -> 608[label="",style="solid", color="black", weight=3]; 485[label="xuu33",fontsize=16,color="green",shape="box"];486 -> 14[label="",style="dashed", color="red", weight=0]; 486[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Left xuu4000) xuu401",fontsize=16,color="magenta"];486 -> 609[label="",style="dashed", color="magenta", weight=3]; 486 -> 610[label="",style="dashed", color="magenta", weight=3]; 612[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];612 -> 614[label="",style="solid", color="black", weight=3]; 611[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu96",fontsize=16,color="burlywood",shape="triangle"];4553[label="xuu96/False",fontsize=10,color="white",style="solid",shape="box"];611 -> 4553[label="",style="solid", color="burlywood", weight=9]; 4553 -> 615[label="",style="solid", color="burlywood", weight=3]; 4554[label="xuu96/True",fontsize=10,color="white",style="solid",shape="box"];611 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 616[label="",style="solid", color="burlywood", weight=3]; 489[label="compare3 (Right xuu4000) (Left xuu300)",fontsize=16,color="black",shape="box"];489 -> 617[label="",style="solid", color="black", weight=3]; 490[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];490 -> 618[label="",style="solid", color="black", weight=3]; 491 -> 14[label="",style="dashed", color="red", weight=0]; 491[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu4000) xuu401",fontsize=16,color="magenta"];491 -> 619[label="",style="dashed", color="magenta", weight=3]; 491 -> 620[label="",style="dashed", color="magenta", weight=3]; 492[label="xuu33",fontsize=16,color="green",shape="box"];503[label="compare3 (Right xuu36) (Right xuu31)",fontsize=16,color="black",shape="box"];503 -> 637[label="",style="solid", color="black", weight=3]; 504[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];504 -> 638[label="",style="solid", color="black", weight=3]; 505[label="xuu31",fontsize=16,color="green",shape="box"];506[label="xuu32",fontsize=16,color="green",shape="box"];507[label="xuu34",fontsize=16,color="green",shape="box"];508 -> 14[label="",style="dashed", color="red", weight=0]; 508[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 (Right xuu36) xuu37",fontsize=16,color="magenta"];508 -> 639[label="",style="dashed", color="magenta", weight=3]; 508 -> 640[label="",style="dashed", color="magenta", weight=3]; 508 -> 641[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2200[label="",style="dashed", color="red", weight=0]; 2505[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2505 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2597[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 2608[label="",style="solid", color="blue", weight=3]; 4556[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 2609[label="",style="solid", color="blue", weight=3]; 4557[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 2610[label="",style="solid", color="blue", weight=3]; 4558[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2611[label="",style="solid", color="blue", weight=3]; 4559[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2612[label="",style="solid", color="blue", weight=3]; 4560[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 2613[label="",style="solid", color="blue", weight=3]; 4561[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 2614[label="",style="solid", color="blue", weight=3]; 4562[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 2615[label="",style="solid", color="blue", weight=3]; 4563[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 2616[label="",style="solid", color="blue", weight=3]; 4564[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 2617[label="",style="solid", color="blue", weight=3]; 4565[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 2618[label="",style="solid", color="blue", weight=3]; 4566[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 2619[label="",style="solid", color="blue", weight=3]; 4567[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 2620[label="",style="solid", color="blue", weight=3]; 4568[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 2621[label="",style="solid", color="blue", weight=3]; 2598 -> 2596[label="",style="dashed", color="red", weight=0]; 2598[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2598 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2596[label="xuu163 && xuu175",fontsize=16,color="burlywood",shape="triangle"];4569[label="xuu163/False",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 2624[label="",style="solid", color="burlywood", weight=3]; 4570[label="xuu163/True",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 2625[label="",style="solid", color="burlywood", weight=3]; 2512[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4571[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4571[label="",style="solid", color="burlywood", weight=9]; 4571 -> 2626[label="",style="solid", color="burlywood", weight=3]; 4572[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4572[label="",style="solid", color="burlywood", weight=9]; 4572 -> 2627[label="",style="solid", color="burlywood", weight=3]; 2513[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];2513 -> 2628[label="",style="solid", color="black", weight=3]; 2514[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4573[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4573[label="",style="solid", color="burlywood", weight=9]; 4573 -> 2629[label="",style="solid", color="burlywood", weight=3]; 4574[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4574[label="",style="solid", color="burlywood", weight=9]; 4574 -> 2630[label="",style="solid", color="burlywood", weight=3]; 2515[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4575[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4575[label="",style="solid", color="burlywood", weight=9]; 4575 -> 2631[label="",style="solid", color="burlywood", weight=3]; 4576[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4576[label="",style="solid", color="burlywood", weight=9]; 4576 -> 2632[label="",style="solid", color="burlywood", weight=3]; 2516[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];2516 -> 2633[label="",style="solid", color="black", weight=3]; 2517[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4577[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2517 -> 4577[label="",style="solid", color="burlywood", weight=9]; 4577 -> 2634[label="",style="solid", color="burlywood", weight=3]; 4578[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2517 -> 4578[label="",style="solid", color="burlywood", weight=9]; 4578 -> 2635[label="",style="solid", color="burlywood", weight=3]; 2518[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4579[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2518 -> 4579[label="",style="solid", color="burlywood", weight=9]; 4579 -> 2636[label="",style="solid", color="burlywood", weight=3]; 4580[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2518 -> 4580[label="",style="solid", color="burlywood", weight=9]; 4580 -> 2637[label="",style="solid", color="burlywood", weight=3]; 2519[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4581[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4581[label="",style="solid", color="burlywood", weight=9]; 4581 -> 2638[label="",style="solid", color="burlywood", weight=3]; 4582[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4582[label="",style="solid", color="burlywood", weight=9]; 4582 -> 2639[label="",style="solid", color="burlywood", weight=3]; 2520 -> 2198[label="",style="dashed", color="red", weight=0]; 2520[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2520 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2199[label="",style="dashed", color="red", weight=0]; 2521[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2521 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2200[label="",style="dashed", color="red", weight=0]; 2522[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2522 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2201[label="",style="dashed", color="red", weight=0]; 2523[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2523 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2202[label="",style="dashed", color="red", weight=0]; 2524[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2524 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2525 -> 63[label="",style="dashed", color="red", weight=0]; 2525[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2525 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2204[label="",style="dashed", color="red", weight=0]; 2526[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2526 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2205[label="",style="dashed", color="red", weight=0]; 2527[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2527 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2206[label="",style="dashed", color="red", weight=0]; 2528[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2528 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2207[label="",style="dashed", color="red", weight=0]; 2529[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2529 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2208[label="",style="dashed", color="red", weight=0]; 2530[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2530 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2209[label="",style="dashed", color="red", weight=0]; 2531[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2531 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2210[label="",style="dashed", color="red", weight=0]; 2532[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2532 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2211[label="",style="dashed", color="red", weight=0]; 2533[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2533 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2198[label="",style="dashed", color="red", weight=0]; 2534[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2534 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2199[label="",style="dashed", color="red", weight=0]; 2535[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2535 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2200[label="",style="dashed", color="red", weight=0]; 2536[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2536 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2201[label="",style="dashed", color="red", weight=0]; 2537[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2537 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2202[label="",style="dashed", color="red", weight=0]; 2538[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2538 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2539 -> 63[label="",style="dashed", color="red", weight=0]; 2539[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2539 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2204[label="",style="dashed", color="red", weight=0]; 2540[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2540 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2205[label="",style="dashed", color="red", weight=0]; 2541[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2541 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2206[label="",style="dashed", color="red", weight=0]; 2542[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2542 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2207[label="",style="dashed", color="red", weight=0]; 2543[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2543 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2208[label="",style="dashed", color="red", weight=0]; 2544[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2544 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2209[label="",style="dashed", color="red", weight=0]; 2545[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2545 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2210[label="",style="dashed", color="red", weight=0]; 2546[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2546 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2211[label="",style="dashed", color="red", weight=0]; 2547[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2547 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2599[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4583[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2696[label="",style="solid", color="blue", weight=3]; 4584[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2697[label="",style="solid", color="blue", weight=3]; 4585[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2698[label="",style="solid", color="blue", weight=3]; 4586[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 2699[label="",style="solid", color="blue", weight=3]; 4587[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 2700[label="",style="solid", color="blue", weight=3]; 4588[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 2701[label="",style="solid", color="blue", weight=3]; 4589[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 2702[label="",style="solid", color="blue", weight=3]; 4590[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2703[label="",style="solid", color="blue", weight=3]; 4591[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2704[label="",style="solid", color="blue", weight=3]; 4592[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2705[label="",style="solid", color="blue", weight=3]; 4593[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2706[label="",style="solid", color="blue", weight=3]; 4594[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2707[label="",style="solid", color="blue", weight=3]; 4595[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2708[label="",style="solid", color="blue", weight=3]; 4596[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2709[label="",style="solid", color="blue", weight=3]; 2600[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4597[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2710[label="",style="solid", color="blue", weight=3]; 4598[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2711[label="",style="solid", color="blue", weight=3]; 4599[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2712[label="",style="solid", color="blue", weight=3]; 4600[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2713[label="",style="solid", color="blue", weight=3]; 4601[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2714[label="",style="solid", color="blue", weight=3]; 4602[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2715[label="",style="solid", color="blue", weight=3]; 4603[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2716[label="",style="solid", color="blue", weight=3]; 4604[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2717[label="",style="solid", color="blue", weight=3]; 4605[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 2718[label="",style="solid", color="blue", weight=3]; 4606[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 2719[label="",style="solid", color="blue", weight=3]; 4607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 2720[label="",style="solid", color="blue", weight=3]; 4608[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 2721[label="",style="solid", color="blue", weight=3]; 4609[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2722[label="",style="solid", color="blue", weight=3]; 4610[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 2723[label="",style="solid", color="blue", weight=3]; 2601[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4611[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 2724[label="",style="solid", color="blue", weight=3]; 4612[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 2725[label="",style="solid", color="blue", weight=3]; 4613[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 2726[label="",style="solid", color="blue", weight=3]; 4614[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 2727[label="",style="solid", color="blue", weight=3]; 4615[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 2728[label="",style="solid", color="blue", weight=3]; 4616[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 2729[label="",style="solid", color="blue", weight=3]; 4617[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 2730[label="",style="solid", color="blue", weight=3]; 4618[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 2731[label="",style="solid", color="blue", weight=3]; 4619[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 2732[label="",style="solid", color="blue", weight=3]; 4620[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 2733[label="",style="solid", color="blue", weight=3]; 4621[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 2734[label="",style="solid", color="blue", weight=3]; 4622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 2735[label="",style="solid", color="blue", weight=3]; 4623[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 2736[label="",style="solid", color="blue", weight=3]; 4624[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 2737[label="",style="solid", color="blue", weight=3]; 2602 -> 2205[label="",style="dashed", color="red", weight=0]; 2602[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2602 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2603[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4625[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 2740[label="",style="solid", color="blue", weight=3]; 4626[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 2741[label="",style="solid", color="blue", weight=3]; 2604[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4627[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 2742[label="",style="solid", color="blue", weight=3]; 4628[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 2743[label="",style="solid", color="blue", weight=3]; 2558[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4629[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4629[label="",style="solid", color="burlywood", weight=9]; 4629 -> 2744[label="",style="solid", color="burlywood", weight=3]; 4630[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 2745[label="",style="solid", color="burlywood", weight=3]; 2559 -> 2200[label="",style="dashed", color="red", weight=0]; 2559[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2559 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2198[label="",style="dashed", color="red", weight=0]; 2560[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2560 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2199[label="",style="dashed", color="red", weight=0]; 2561[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2561 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2200[label="",style="dashed", color="red", weight=0]; 2562[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2562 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2201[label="",style="dashed", color="red", weight=0]; 2563[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2563 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2202[label="",style="dashed", color="red", weight=0]; 2564[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2564 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2565 -> 63[label="",style="dashed", color="red", weight=0]; 2565[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2565 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2204[label="",style="dashed", color="red", weight=0]; 2566[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2566 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2205[label="",style="dashed", color="red", weight=0]; 2567[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2567 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2206[label="",style="dashed", color="red", weight=0]; 2568[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2568 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2207[label="",style="dashed", color="red", weight=0]; 2569[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2569 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2208[label="",style="dashed", color="red", weight=0]; 2570[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2570 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2209[label="",style="dashed", color="red", weight=0]; 2571[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2571 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2210[label="",style="dashed", color="red", weight=0]; 2572[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2572 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2211[label="",style="dashed", color="red", weight=0]; 2573[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2573 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2574[label="xuu3000",fontsize=16,color="green",shape="box"];2575[label="xuu40000",fontsize=16,color="green",shape="box"];2576 -> 2776[label="",style="dashed", color="red", weight=0]; 2576[label="compare1 (Left xuu4700) (Left xuu4800) (xuu4700 <= xuu4800)",fontsize=16,color="magenta"];2576 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2577[label="compare1 (Left xuu4700) (Right xuu4800) True",fontsize=16,color="black",shape="box"];2577 -> 2780[label="",style="solid", color="black", weight=3]; 2578[label="compare1 (Right xuu4700) (Left xuu4800) False",fontsize=16,color="black",shape="box"];2578 -> 2781[label="",style="solid", color="black", weight=3]; 2579 -> 2782[label="",style="dashed", color="red", weight=0]; 2579[label="compare1 (Right xuu4700) (Right xuu4800) (xuu4700 <= xuu4800)",fontsize=16,color="magenta"];2579 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2785[label="",style="dashed", color="magenta", weight=3]; 596 -> 2160[label="",style="dashed", color="red", weight=0]; 596[label="compare2 (Left xuu19) (Left xuu14) (Left xuu19 == Left xuu14)",fontsize=16,color="magenta"];596 -> 2185[label="",style="dashed", color="magenta", weight=3]; 596 -> 2186[label="",style="dashed", color="magenta", weight=3]; 596 -> 2187[label="",style="dashed", color="magenta", weight=3]; 597[label="FiniteMap.Branch (Left xuu19) (FiniteMap.addListToFM0 xuu15 xuu20) xuu16 xuu17 xuu18",fontsize=16,color="green",shape="box"];597 -> 861[label="",style="dashed", color="green", weight=3]; 598[label="xuu18",fontsize=16,color="green",shape="box"];599[label="xuu20",fontsize=16,color="green",shape="box"];600[label="Left xuu19",fontsize=16,color="green",shape="box"];604 -> 63[label="",style="dashed", color="red", weight=0]; 604[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];604 -> 862[label="",style="dashed", color="magenta", weight=3]; 604 -> 863[label="",style="dashed", color="magenta", weight=3]; 605[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];605 -> 864[label="",style="solid", color="black", weight=3]; 606[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];606 -> 865[label="",style="solid", color="black", weight=3]; 607 -> 2160[label="",style="dashed", color="red", weight=0]; 607[label="compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300)",fontsize=16,color="magenta"];607 -> 2188[label="",style="dashed", color="magenta", weight=3]; 607 -> 2189[label="",style="dashed", color="magenta", weight=3]; 607 -> 2190[label="",style="dashed", color="magenta", weight=3]; 608[label="FiniteMap.Branch (Left xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];608 -> 871[label="",style="dashed", color="green", weight=3]; 609[label="xuu34",fontsize=16,color="green",shape="box"];610[label="Left xuu4000",fontsize=16,color="green",shape="box"];614 -> 63[label="",style="dashed", color="red", weight=0]; 614[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];614 -> 872[label="",style="dashed", color="magenta", weight=3]; 614 -> 873[label="",style="dashed", color="magenta", weight=3]; 615[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];615 -> 874[label="",style="solid", color="black", weight=3]; 616[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];616 -> 875[label="",style="solid", color="black", weight=3]; 617 -> 2160[label="",style="dashed", color="red", weight=0]; 617[label="compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300)",fontsize=16,color="magenta"];617 -> 2191[label="",style="dashed", color="magenta", weight=3]; 617 -> 2192[label="",style="dashed", color="magenta", weight=3]; 617 -> 2193[label="",style="dashed", color="magenta", weight=3]; 618[label="FiniteMap.Branch (Right xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];618 -> 883[label="",style="dashed", color="green", weight=3]; 619[label="xuu34",fontsize=16,color="green",shape="box"];620[label="Right xuu4000",fontsize=16,color="green",shape="box"];637 -> 2160[label="",style="dashed", color="red", weight=0]; 637[label="compare2 (Right xuu36) (Right xuu31) (Right xuu36 == Right xuu31)",fontsize=16,color="magenta"];637 -> 2194[label="",style="dashed", color="magenta", weight=3]; 637 -> 2195[label="",style="dashed", color="magenta", weight=3]; 637 -> 2196[label="",style="dashed", color="magenta", weight=3]; 638[label="FiniteMap.Branch (Right xuu36) (FiniteMap.addListToFM0 xuu32 xuu37) xuu33 xuu34 xuu35",fontsize=16,color="green",shape="box"];638 -> 916[label="",style="dashed", color="green", weight=3]; 639[label="xuu35",fontsize=16,color="green",shape="box"];640[label="xuu37",fontsize=16,color="green",shape="box"];641[label="Right xuu36",fontsize=16,color="green",shape="box"];2580 -> 642[label="",style="dashed", color="red", weight=0]; 2580[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2581 -> 642[label="",style="dashed", color="red", weight=0]; 2581[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2581 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2198[label="",style="dashed", color="red", weight=0]; 2608[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2608 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2199[label="",style="dashed", color="red", weight=0]; 2609[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2609 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2200[label="",style="dashed", color="red", weight=0]; 2610[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2610 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2201[label="",style="dashed", color="red", weight=0]; 2611[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2611 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2202[label="",style="dashed", color="red", weight=0]; 2612[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2612 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2613 -> 63[label="",style="dashed", color="red", weight=0]; 2613[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2613 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2204[label="",style="dashed", color="red", weight=0]; 2614[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2614 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2205[label="",style="dashed", color="red", weight=0]; 2615[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2615 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2206[label="",style="dashed", color="red", weight=0]; 2616[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2616 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2207[label="",style="dashed", color="red", weight=0]; 2617[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2617 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2208[label="",style="dashed", color="red", weight=0]; 2618[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2618 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2209[label="",style="dashed", color="red", weight=0]; 2619[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2619 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2210[label="",style="dashed", color="red", weight=0]; 2620[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2620 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2211[label="",style="dashed", color="red", weight=0]; 2621[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2621 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2622[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4631[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 2816[label="",style="solid", color="blue", weight=3]; 4632[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 2817[label="",style="solid", color="blue", weight=3]; 4633[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 2818[label="",style="solid", color="blue", weight=3]; 4634[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 2819[label="",style="solid", color="blue", weight=3]; 4635[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 2820[label="",style="solid", color="blue", weight=3]; 4636[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 2821[label="",style="solid", color="blue", weight=3]; 4637[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 2822[label="",style="solid", color="blue", weight=3]; 4638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 2823[label="",style="solid", color="blue", weight=3]; 4639[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 2824[label="",style="solid", color="blue", weight=3]; 4640[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 2825[label="",style="solid", color="blue", weight=3]; 4641[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 2826[label="",style="solid", color="blue", weight=3]; 4642[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 2827[label="",style="solid", color="blue", weight=3]; 4643[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 2828[label="",style="solid", color="blue", weight=3]; 4644[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 2829[label="",style="solid", color="blue", weight=3]; 2623[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];4645[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 2830[label="",style="solid", color="blue", weight=3]; 4646[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 2831[label="",style="solid", color="blue", weight=3]; 4647[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 2832[label="",style="solid", color="blue", weight=3]; 4648[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 2833[label="",style="solid", color="blue", weight=3]; 4649[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 2834[label="",style="solid", color="blue", weight=3]; 4650[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 2835[label="",style="solid", color="blue", weight=3]; 4651[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4651[label="",style="solid", color="blue", weight=9]; 4651 -> 2836[label="",style="solid", color="blue", weight=3]; 4652[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4652[label="",style="solid", color="blue", weight=9]; 4652 -> 2837[label="",style="solid", color="blue", weight=3]; 4653[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4653[label="",style="solid", color="blue", weight=9]; 4653 -> 2838[label="",style="solid", color="blue", weight=3]; 4654[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 2839[label="",style="solid", color="blue", weight=3]; 4655[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 2840[label="",style="solid", color="blue", weight=3]; 4656[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 2841[label="",style="solid", color="blue", weight=3]; 4657[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 2842[label="",style="solid", color="blue", weight=3]; 4658[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 2843[label="",style="solid", color="blue", weight=3]; 2624[label="False && xuu175",fontsize=16,color="black",shape="box"];2624 -> 2844[label="",style="solid", color="black", weight=3]; 2625[label="True && xuu175",fontsize=16,color="black",shape="box"];2625 -> 2845[label="",style="solid", color="black", weight=3]; 2626[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2626 -> 2846[label="",style="solid", color="black", weight=3]; 2627[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2627 -> 2847[label="",style="solid", color="black", weight=3]; 2628[label="False",fontsize=16,color="green",shape="box"];2629[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2629 -> 2848[label="",style="solid", color="black", weight=3]; 2630[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2630 -> 2849[label="",style="solid", color="black", weight=3]; 2631[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2631 -> 2850[label="",style="solid", color="black", weight=3]; 2632[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2632 -> 2851[label="",style="solid", color="black", weight=3]; 2633[label="False",fontsize=16,color="green",shape="box"];2634[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2634 -> 2852[label="",style="solid", color="black", weight=3]; 2635[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2635 -> 2853[label="",style="solid", color="black", weight=3]; 2636[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2636 -> 2854[label="",style="solid", color="black", weight=3]; 2637[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2637 -> 2855[label="",style="solid", color="black", weight=3]; 2638[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2638 -> 2856[label="",style="solid", color="black", weight=3]; 2639[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2639 -> 2857[label="",style="solid", color="black", weight=3]; 2640[label="xuu3000",fontsize=16,color="green",shape="box"];2641[label="xuu40000",fontsize=16,color="green",shape="box"];2642[label="xuu3000",fontsize=16,color="green",shape="box"];2643[label="xuu40000",fontsize=16,color="green",shape="box"];2644[label="xuu3000",fontsize=16,color="green",shape="box"];2645[label="xuu40000",fontsize=16,color="green",shape="box"];2646[label="xuu3000",fontsize=16,color="green",shape="box"];2647[label="xuu40000",fontsize=16,color="green",shape="box"];2648[label="xuu3000",fontsize=16,color="green",shape="box"];2649[label="xuu40000",fontsize=16,color="green",shape="box"];2650[label="xuu3000",fontsize=16,color="green",shape="box"];2651[label="xuu40000",fontsize=16,color="green",shape="box"];2652[label="xuu3000",fontsize=16,color="green",shape="box"];2653[label="xuu40000",fontsize=16,color="green",shape="box"];2654[label="xuu3000",fontsize=16,color="green",shape="box"];2655[label="xuu40000",fontsize=16,color="green",shape="box"];2656[label="xuu3000",fontsize=16,color="green",shape="box"];2657[label="xuu40000",fontsize=16,color="green",shape="box"];2658[label="xuu3000",fontsize=16,color="green",shape="box"];2659[label="xuu40000",fontsize=16,color="green",shape="box"];2660[label="xuu3000",fontsize=16,color="green",shape="box"];2661[label="xuu40000",fontsize=16,color="green",shape="box"];2662[label="xuu3000",fontsize=16,color="green",shape="box"];2663[label="xuu40000",fontsize=16,color="green",shape="box"];2664[label="xuu3000",fontsize=16,color="green",shape="box"];2665[label="xuu40000",fontsize=16,color="green",shape="box"];2666[label="xuu3000",fontsize=16,color="green",shape="box"];2667[label="xuu40000",fontsize=16,color="green",shape="box"];2668[label="xuu3000",fontsize=16,color="green",shape="box"];2669[label="xuu40000",fontsize=16,color="green",shape="box"];2670[label="xuu3000",fontsize=16,color="green",shape="box"];2671[label="xuu40000",fontsize=16,color="green",shape="box"];2672[label="xuu3000",fontsize=16,color="green",shape="box"];2673[label="xuu40000",fontsize=16,color="green",shape="box"];2674[label="xuu3000",fontsize=16,color="green",shape="box"];2675[label="xuu40000",fontsize=16,color="green",shape="box"];2676[label="xuu3000",fontsize=16,color="green",shape="box"];2677[label="xuu40000",fontsize=16,color="green",shape="box"];2678[label="xuu3000",fontsize=16,color="green",shape="box"];2679[label="xuu40000",fontsize=16,color="green",shape="box"];2680[label="xuu3000",fontsize=16,color="green",shape="box"];2681[label="xuu40000",fontsize=16,color="green",shape="box"];2682[label="xuu3000",fontsize=16,color="green",shape="box"];2683[label="xuu40000",fontsize=16,color="green",shape="box"];2684[label="xuu3000",fontsize=16,color="green",shape="box"];2685[label="xuu40000",fontsize=16,color="green",shape="box"];2686[label="xuu3000",fontsize=16,color="green",shape="box"];2687[label="xuu40000",fontsize=16,color="green",shape="box"];2688[label="xuu3000",fontsize=16,color="green",shape="box"];2689[label="xuu40000",fontsize=16,color="green",shape="box"];2690[label="xuu3000",fontsize=16,color="green",shape="box"];2691[label="xuu40000",fontsize=16,color="green",shape="box"];2692[label="xuu3000",fontsize=16,color="green",shape="box"];2693[label="xuu40000",fontsize=16,color="green",shape="box"];2694[label="xuu3000",fontsize=16,color="green",shape="box"];2695[label="xuu40000",fontsize=16,color="green",shape="box"];2696 -> 2198[label="",style="dashed", color="red", weight=0]; 2696[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2696 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2199[label="",style="dashed", color="red", weight=0]; 2697[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2697 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2200[label="",style="dashed", color="red", weight=0]; 2698[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2698 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2201[label="",style="dashed", color="red", weight=0]; 2699[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2699 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2202[label="",style="dashed", color="red", weight=0]; 2700[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2700 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2701 -> 63[label="",style="dashed", color="red", weight=0]; 2701[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2701 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2204[label="",style="dashed", color="red", weight=0]; 2702[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2702 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2205[label="",style="dashed", color="red", weight=0]; 2703[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2703 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2206[label="",style="dashed", color="red", weight=0]; 2704[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2704 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2207[label="",style="dashed", color="red", weight=0]; 2705[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2705 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2208[label="",style="dashed", color="red", weight=0]; 2706[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2706 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2209[label="",style="dashed", color="red", weight=0]; 2707[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2707 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2210[label="",style="dashed", color="red", weight=0]; 2708[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2708 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2211[label="",style="dashed", color="red", weight=0]; 2709[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2709 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2198[label="",style="dashed", color="red", weight=0]; 2710[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2710 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2199[label="",style="dashed", color="red", weight=0]; 2711[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2711 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2200[label="",style="dashed", color="red", weight=0]; 2712[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2712 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2201[label="",style="dashed", color="red", weight=0]; 2713[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2713 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2202[label="",style="dashed", color="red", weight=0]; 2714[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2714 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2715 -> 63[label="",style="dashed", color="red", weight=0]; 2715[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2715 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2204[label="",style="dashed", color="red", weight=0]; 2716[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2716 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2205[label="",style="dashed", color="red", weight=0]; 2717[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2717 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2206[label="",style="dashed", color="red", weight=0]; 2718[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2718 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2207[label="",style="dashed", color="red", weight=0]; 2719[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2719 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2208[label="",style="dashed", color="red", weight=0]; 2720[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2720 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2209[label="",style="dashed", color="red", weight=0]; 2721[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2721 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2210[label="",style="dashed", color="red", weight=0]; 2722[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2722 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2211[label="",style="dashed", color="red", weight=0]; 2723[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2723 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2198[label="",style="dashed", color="red", weight=0]; 2724[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2724 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2199[label="",style="dashed", color="red", weight=0]; 2725[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2725 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2200[label="",style="dashed", color="red", weight=0]; 2726[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2726 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2201[label="",style="dashed", color="red", weight=0]; 2727[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2727 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2202[label="",style="dashed", color="red", weight=0]; 2728[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2728 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2729 -> 63[label="",style="dashed", color="red", weight=0]; 2729[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2729 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2204[label="",style="dashed", color="red", weight=0]; 2730[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2730 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2205[label="",style="dashed", color="red", weight=0]; 2731[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2731 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2206[label="",style="dashed", color="red", weight=0]; 2732[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2732 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2207[label="",style="dashed", color="red", weight=0]; 2733[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2733 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2208[label="",style="dashed", color="red", weight=0]; 2734[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2734 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2209[label="",style="dashed", color="red", weight=0]; 2735[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2735 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2210[label="",style="dashed", color="red", weight=0]; 2736[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2736 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2211[label="",style="dashed", color="red", weight=0]; 2737[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2737 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2738[label="xuu3001",fontsize=16,color="green",shape="box"];2739[label="xuu40001",fontsize=16,color="green",shape="box"];2740 -> 2200[label="",style="dashed", color="red", weight=0]; 2740[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2740 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2211[label="",style="dashed", color="red", weight=0]; 2741[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2741 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2200[label="",style="dashed", color="red", weight=0]; 2742[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2742 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2211[label="",style="dashed", color="red", weight=0]; 2743[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2743 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2744[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4659[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2744 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 2950[label="",style="solid", color="burlywood", weight=3]; 4660[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2744 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 2951[label="",style="solid", color="burlywood", weight=3]; 2745[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];4661[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2745 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 2952[label="",style="solid", color="burlywood", weight=3]; 4662[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2745 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 2953[label="",style="solid", color="burlywood", weight=3]; 2746 -> 642[label="",style="dashed", color="red", weight=0]; 2746[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2746 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2747 -> 642[label="",style="dashed", color="red", weight=0]; 2747[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2747 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2748[label="xuu3000",fontsize=16,color="green",shape="box"];2749[label="xuu40000",fontsize=16,color="green",shape="box"];2750[label="xuu3000",fontsize=16,color="green",shape="box"];2751[label="xuu40000",fontsize=16,color="green",shape="box"];2752[label="xuu3000",fontsize=16,color="green",shape="box"];2753[label="xuu40000",fontsize=16,color="green",shape="box"];2754[label="xuu3000",fontsize=16,color="green",shape="box"];2755[label="xuu40000",fontsize=16,color="green",shape="box"];2756[label="xuu3000",fontsize=16,color="green",shape="box"];2757[label="xuu40000",fontsize=16,color="green",shape="box"];2758[label="xuu3000",fontsize=16,color="green",shape="box"];2759[label="xuu40000",fontsize=16,color="green",shape="box"];2760[label="xuu3000",fontsize=16,color="green",shape="box"];2761[label="xuu40000",fontsize=16,color="green",shape="box"];2762[label="xuu3000",fontsize=16,color="green",shape="box"];2763[label="xuu40000",fontsize=16,color="green",shape="box"];2764[label="xuu3000",fontsize=16,color="green",shape="box"];2765[label="xuu40000",fontsize=16,color="green",shape="box"];2766[label="xuu3000",fontsize=16,color="green",shape="box"];2767[label="xuu40000",fontsize=16,color="green",shape="box"];2768[label="xuu3000",fontsize=16,color="green",shape="box"];2769[label="xuu40000",fontsize=16,color="green",shape="box"];2770[label="xuu3000",fontsize=16,color="green",shape="box"];2771[label="xuu40000",fontsize=16,color="green",shape="box"];2772[label="xuu3000",fontsize=16,color="green",shape="box"];2773[label="xuu40000",fontsize=16,color="green",shape="box"];2774[label="xuu3000",fontsize=16,color="green",shape="box"];2775[label="xuu40000",fontsize=16,color="green",shape="box"];2777[label="xuu4700",fontsize=16,color="green",shape="box"];2778[label="xuu4800",fontsize=16,color="green",shape="box"];2779[label="xuu4700 <= xuu4800",fontsize=16,color="blue",shape="box"];4663[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 2958[label="",style="solid", color="blue", weight=3]; 4664[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 2959[label="",style="solid", color="blue", weight=3]; 4665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 2960[label="",style="solid", color="blue", weight=3]; 4666[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 2961[label="",style="solid", color="blue", weight=3]; 4667[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 2962[label="",style="solid", color="blue", weight=3]; 4668[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 2963[label="",style="solid", color="blue", weight=3]; 4669[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4669[label="",style="solid", color="blue", weight=9]; 4669 -> 2964[label="",style="solid", color="blue", weight=3]; 4670[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4670[label="",style="solid", color="blue", weight=9]; 4670 -> 2965[label="",style="solid", color="blue", weight=3]; 4671[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4671[label="",style="solid", color="blue", weight=9]; 4671 -> 2966[label="",style="solid", color="blue", weight=3]; 4672[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 2967[label="",style="solid", color="blue", weight=3]; 4673[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 2968[label="",style="solid", color="blue", weight=3]; 4674[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 2969[label="",style="solid", color="blue", weight=3]; 4675[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 2970[label="",style="solid", color="blue", weight=3]; 4676[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 2971[label="",style="solid", color="blue", weight=3]; 2776[label="compare1 (Left xuu180) (Left xuu181) xuu182",fontsize=16,color="burlywood",shape="triangle"];4677[label="xuu182/False",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2972[label="",style="solid", color="burlywood", weight=3]; 4678[label="xuu182/True",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2973[label="",style="solid", color="burlywood", weight=3]; 2780[label="LT",fontsize=16,color="green",shape="box"];2781[label="compare0 (Right xuu4700) (Left xuu4800) otherwise",fontsize=16,color="black",shape="box"];2781 -> 2974[label="",style="solid", color="black", weight=3]; 2783[label="xuu4700",fontsize=16,color="green",shape="box"];2784[label="xuu4800",fontsize=16,color="green",shape="box"];2785[label="xuu4700 <= xuu4800",fontsize=16,color="blue",shape="box"];4679[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4679[label="",style="solid", color="blue", weight=9]; 4679 -> 2975[label="",style="solid", color="blue", weight=3]; 4680[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4680[label="",style="solid", color="blue", weight=9]; 4680 -> 2976[label="",style="solid", color="blue", weight=3]; 4681[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4681[label="",style="solid", color="blue", weight=9]; 4681 -> 2977[label="",style="solid", color="blue", weight=3]; 4682[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4682[label="",style="solid", color="blue", weight=9]; 4682 -> 2978[label="",style="solid", color="blue", weight=3]; 4683[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4683[label="",style="solid", color="blue", weight=9]; 4683 -> 2979[label="",style="solid", color="blue", weight=3]; 4684[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4684[label="",style="solid", color="blue", weight=9]; 4684 -> 2980[label="",style="solid", color="blue", weight=3]; 4685[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4685[label="",style="solid", color="blue", weight=9]; 4685 -> 2981[label="",style="solid", color="blue", weight=3]; 4686[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4686[label="",style="solid", color="blue", weight=9]; 4686 -> 2982[label="",style="solid", color="blue", weight=3]; 4687[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4687[label="",style="solid", color="blue", weight=9]; 4687 -> 2983[label="",style="solid", color="blue", weight=3]; 4688[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4688[label="",style="solid", color="blue", weight=9]; 4688 -> 2984[label="",style="solid", color="blue", weight=3]; 4689[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4689[label="",style="solid", color="blue", weight=9]; 4689 -> 2985[label="",style="solid", color="blue", weight=3]; 4690[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 2986[label="",style="solid", color="blue", weight=3]; 4691[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 2987[label="",style="solid", color="blue", weight=3]; 4692[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 2988[label="",style="solid", color="blue", weight=3]; 2782[label="compare1 (Right xuu187) (Right xuu188) xuu189",fontsize=16,color="burlywood",shape="triangle"];4693[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4693[label="",style="solid", color="burlywood", weight=9]; 4693 -> 2989[label="",style="solid", color="burlywood", weight=3]; 4694[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4694[label="",style="solid", color="burlywood", weight=9]; 4694 -> 2990[label="",style="solid", color="burlywood", weight=3]; 2185[label="Left xuu19 == Left xuu14",fontsize=16,color="black",shape="box"];2185 -> 2228[label="",style="solid", color="black", weight=3]; 2186[label="Left xuu19",fontsize=16,color="green",shape="box"];2187[label="Left xuu14",fontsize=16,color="green",shape="box"];861[label="FiniteMap.addListToFM0 xuu15 xuu20",fontsize=16,color="black",shape="triangle"];861 -> 1124[label="",style="solid", color="black", weight=3]; 862[label="LT",fontsize=16,color="green",shape="box"];863[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];863 -> 1125[label="",style="solid", color="black", weight=3]; 864 -> 1350[label="",style="dashed", color="red", weight=0]; 864[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34)",fontsize=16,color="magenta"];864 -> 1351[label="",style="dashed", color="magenta", weight=3]; 865 -> 4162[label="",style="dashed", color="red", weight=0]; 865[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];865 -> 4163[label="",style="dashed", color="magenta", weight=3]; 865 -> 4164[label="",style="dashed", color="magenta", weight=3]; 865 -> 4165[label="",style="dashed", color="magenta", weight=3]; 865 -> 4166[label="",style="dashed", color="magenta", weight=3]; 865 -> 4167[label="",style="dashed", color="magenta", weight=3]; 2188[label="Left xuu4000 == Right xuu300",fontsize=16,color="black",shape="box"];2188 -> 2229[label="",style="solid", color="black", weight=3]; 2189[label="Left xuu4000",fontsize=16,color="green",shape="box"];2190[label="Right xuu300",fontsize=16,color="green",shape="box"];871 -> 861[label="",style="dashed", color="red", weight=0]; 871[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];871 -> 1145[label="",style="dashed", color="magenta", weight=3]; 871 -> 1146[label="",style="dashed", color="magenta", weight=3]; 872[label="LT",fontsize=16,color="green",shape="box"];873[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];873 -> 1147[label="",style="solid", color="black", weight=3]; 874 -> 1421[label="",style="dashed", color="red", weight=0]; 874[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34)",fontsize=16,color="magenta"];874 -> 1422[label="",style="dashed", color="magenta", weight=3]; 875 -> 4162[label="",style="dashed", color="red", weight=0]; 875[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];875 -> 4168[label="",style="dashed", color="magenta", weight=3]; 875 -> 4169[label="",style="dashed", color="magenta", weight=3]; 875 -> 4170[label="",style="dashed", color="magenta", weight=3]; 875 -> 4171[label="",style="dashed", color="magenta", weight=3]; 875 -> 4172[label="",style="dashed", color="magenta", weight=3]; 2191[label="Right xuu4000 == Left xuu300",fontsize=16,color="black",shape="box"];2191 -> 2230[label="",style="solid", color="black", weight=3]; 2192[label="Right xuu4000",fontsize=16,color="green",shape="box"];2193[label="Left xuu300",fontsize=16,color="green",shape="box"];883 -> 861[label="",style="dashed", color="red", weight=0]; 883[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];883 -> 1161[label="",style="dashed", color="magenta", weight=3]; 883 -> 1162[label="",style="dashed", color="magenta", weight=3]; 2194[label="Right xuu36 == Right xuu31",fontsize=16,color="black",shape="box"];2194 -> 2231[label="",style="solid", color="black", weight=3]; 2195[label="Right xuu36",fontsize=16,color="green",shape="box"];2196[label="Right xuu31",fontsize=16,color="green",shape="box"];916 -> 861[label="",style="dashed", color="red", weight=0]; 916[label="FiniteMap.addListToFM0 xuu32 xuu37",fontsize=16,color="magenta"];916 -> 1166[label="",style="dashed", color="magenta", weight=3]; 916 -> 1167[label="",style="dashed", color="magenta", weight=3]; 642[label="xuu40001 * xuu3000",fontsize=16,color="black",shape="triangle"];642 -> 917[label="",style="solid", color="black", weight=3]; 2786[label="xuu40000",fontsize=16,color="green",shape="box"];2787[label="xuu3001",fontsize=16,color="green",shape="box"];2788[label="xuu3000",fontsize=16,color="green",shape="box"];2789[label="xuu40000",fontsize=16,color="green",shape="box"];2790[label="xuu3000",fontsize=16,color="green",shape="box"];2791[label="xuu40000",fontsize=16,color="green",shape="box"];2792[label="xuu3000",fontsize=16,color="green",shape="box"];2793[label="xuu40000",fontsize=16,color="green",shape="box"];2794[label="xuu3000",fontsize=16,color="green",shape="box"];2795[label="xuu40000",fontsize=16,color="green",shape="box"];2796[label="xuu3000",fontsize=16,color="green",shape="box"];2797[label="xuu40000",fontsize=16,color="green",shape="box"];2798[label="xuu3000",fontsize=16,color="green",shape="box"];2799[label="xuu40000",fontsize=16,color="green",shape="box"];2800[label="xuu3000",fontsize=16,color="green",shape="box"];2801[label="xuu40000",fontsize=16,color="green",shape="box"];2802[label="xuu3000",fontsize=16,color="green",shape="box"];2803[label="xuu40000",fontsize=16,color="green",shape="box"];2804[label="xuu3000",fontsize=16,color="green",shape="box"];2805[label="xuu40000",fontsize=16,color="green",shape="box"];2806[label="xuu3000",fontsize=16,color="green",shape="box"];2807[label="xuu40000",fontsize=16,color="green",shape="box"];2808[label="xuu3000",fontsize=16,color="green",shape="box"];2809[label="xuu40000",fontsize=16,color="green",shape="box"];2810[label="xuu3000",fontsize=16,color="green",shape="box"];2811[label="xuu40000",fontsize=16,color="green",shape="box"];2812[label="xuu3000",fontsize=16,color="green",shape="box"];2813[label="xuu40000",fontsize=16,color="green",shape="box"];2814[label="xuu3000",fontsize=16,color="green",shape="box"];2815[label="xuu40000",fontsize=16,color="green",shape="box"];2816 -> 2198[label="",style="dashed", color="red", weight=0]; 2816[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2816 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2816 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2199[label="",style="dashed", color="red", weight=0]; 2817[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2817 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2817 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2200[label="",style="dashed", color="red", weight=0]; 2818[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2818 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2818 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2201[label="",style="dashed", color="red", weight=0]; 2819[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2819 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2819 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2202[label="",style="dashed", color="red", weight=0]; 2820[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2820 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2820 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2821 -> 63[label="",style="dashed", color="red", weight=0]; 2821[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2821 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2821 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2204[label="",style="dashed", color="red", weight=0]; 2822[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2822 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2822 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2205[label="",style="dashed", color="red", weight=0]; 2823[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2823 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2823 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2206[label="",style="dashed", color="red", weight=0]; 2824[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2824 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2824 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2207[label="",style="dashed", color="red", weight=0]; 2825[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2825 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2825 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2208[label="",style="dashed", color="red", weight=0]; 2826[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2826 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2826 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2209[label="",style="dashed", color="red", weight=0]; 2827[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2827 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2827 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2210[label="",style="dashed", color="red", weight=0]; 2828[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2828 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2828 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2211[label="",style="dashed", color="red", weight=0]; 2829[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2829 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2829 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2198[label="",style="dashed", color="red", weight=0]; 2830[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2830 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2830 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2199[label="",style="dashed", color="red", weight=0]; 2831[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2831 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2831 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2200[label="",style="dashed", color="red", weight=0]; 2832[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2832 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2832 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2201[label="",style="dashed", color="red", weight=0]; 2833[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2833 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2833 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2202[label="",style="dashed", color="red", weight=0]; 2834[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2834 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2834 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2835 -> 63[label="",style="dashed", color="red", weight=0]; 2835[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2835 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2835 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2204[label="",style="dashed", color="red", weight=0]; 2836[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2836 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2836 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2205[label="",style="dashed", color="red", weight=0]; 2837[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2837 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2837 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2206[label="",style="dashed", color="red", weight=0]; 2838[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2838 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2838 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2207[label="",style="dashed", color="red", weight=0]; 2839[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2839 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2839 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2208[label="",style="dashed", color="red", weight=0]; 2840[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2840 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2840 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2209[label="",style="dashed", color="red", weight=0]; 2841[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2841 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2841 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2210[label="",style="dashed", color="red", weight=0]; 2842[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2842 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2842 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2211[label="",style="dashed", color="red", weight=0]; 2843[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2843 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2843 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2844[label="False",fontsize=16,color="green",shape="box"];2845[label="xuu175",fontsize=16,color="green",shape="box"];2846 -> 2558[label="",style="dashed", color="red", weight=0]; 2846[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2846 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2846 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2847[label="False",fontsize=16,color="green",shape="box"];2848[label="False",fontsize=16,color="green",shape="box"];2849[label="True",fontsize=16,color="green",shape="box"];2850[label="False",fontsize=16,color="green",shape="box"];2851[label="True",fontsize=16,color="green",shape="box"];2852 -> 2558[label="",style="dashed", color="red", weight=0]; 2852[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2852 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2852 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2853[label="False",fontsize=16,color="green",shape="box"];2854[label="False",fontsize=16,color="green",shape="box"];2855[label="True",fontsize=16,color="green",shape="box"];2856[label="False",fontsize=16,color="green",shape="box"];2857[label="True",fontsize=16,color="green",shape="box"];2858[label="xuu3000",fontsize=16,color="green",shape="box"];2859[label="xuu40000",fontsize=16,color="green",shape="box"];2860[label="xuu3000",fontsize=16,color="green",shape="box"];2861[label="xuu40000",fontsize=16,color="green",shape="box"];2862[label="xuu3000",fontsize=16,color="green",shape="box"];2863[label="xuu40000",fontsize=16,color="green",shape="box"];2864[label="xuu3000",fontsize=16,color="green",shape="box"];2865[label="xuu40000",fontsize=16,color="green",shape="box"];2866[label="xuu3000",fontsize=16,color="green",shape="box"];2867[label="xuu40000",fontsize=16,color="green",shape="box"];2868[label="xuu3000",fontsize=16,color="green",shape="box"];2869[label="xuu40000",fontsize=16,color="green",shape="box"];2870[label="xuu3000",fontsize=16,color="green",shape="box"];2871[label="xuu40000",fontsize=16,color="green",shape="box"];2872[label="xuu3000",fontsize=16,color="green",shape="box"];2873[label="xuu40000",fontsize=16,color="green",shape="box"];2874[label="xuu3000",fontsize=16,color="green",shape="box"];2875[label="xuu40000",fontsize=16,color="green",shape="box"];2876[label="xuu3000",fontsize=16,color="green",shape="box"];2877[label="xuu40000",fontsize=16,color="green",shape="box"];2878[label="xuu3000",fontsize=16,color="green",shape="box"];2879[label="xuu40000",fontsize=16,color="green",shape="box"];2880[label="xuu3000",fontsize=16,color="green",shape="box"];2881[label="xuu40000",fontsize=16,color="green",shape="box"];2882[label="xuu3000",fontsize=16,color="green",shape="box"];2883[label="xuu40000",fontsize=16,color="green",shape="box"];2884[label="xuu3000",fontsize=16,color="green",shape="box"];2885[label="xuu40000",fontsize=16,color="green",shape="box"];2886[label="xuu3001",fontsize=16,color="green",shape="box"];2887[label="xuu40001",fontsize=16,color="green",shape="box"];2888[label="xuu3001",fontsize=16,color="green",shape="box"];2889[label="xuu40001",fontsize=16,color="green",shape="box"];2890[label="xuu3001",fontsize=16,color="green",shape="box"];2891[label="xuu40001",fontsize=16,color="green",shape="box"];2892[label="xuu3001",fontsize=16,color="green",shape="box"];2893[label="xuu40001",fontsize=16,color="green",shape="box"];2894[label="xuu3001",fontsize=16,color="green",shape="box"];2895[label="xuu40001",fontsize=16,color="green",shape="box"];2896[label="xuu3001",fontsize=16,color="green",shape="box"];2897[label="xuu40001",fontsize=16,color="green",shape="box"];2898[label="xuu3001",fontsize=16,color="green",shape="box"];2899[label="xuu40001",fontsize=16,color="green",shape="box"];2900[label="xuu3001",fontsize=16,color="green",shape="box"];2901[label="xuu40001",fontsize=16,color="green",shape="box"];2902[label="xuu3001",fontsize=16,color="green",shape="box"];2903[label="xuu40001",fontsize=16,color="green",shape="box"];2904[label="xuu3001",fontsize=16,color="green",shape="box"];2905[label="xuu40001",fontsize=16,color="green",shape="box"];2906[label="xuu3001",fontsize=16,color="green",shape="box"];2907[label="xuu40001",fontsize=16,color="green",shape="box"];2908[label="xuu3001",fontsize=16,color="green",shape="box"];2909[label="xuu40001",fontsize=16,color="green",shape="box"];2910[label="xuu3001",fontsize=16,color="green",shape="box"];2911[label="xuu40001",fontsize=16,color="green",shape="box"];2912[label="xuu3001",fontsize=16,color="green",shape="box"];2913[label="xuu40001",fontsize=16,color="green",shape="box"];2914[label="xuu3000",fontsize=16,color="green",shape="box"];2915[label="xuu40000",fontsize=16,color="green",shape="box"];2916[label="xuu3000",fontsize=16,color="green",shape="box"];2917[label="xuu40000",fontsize=16,color="green",shape="box"];2918[label="xuu3000",fontsize=16,color="green",shape="box"];2919[label="xuu40000",fontsize=16,color="green",shape="box"];2920[label="xuu3000",fontsize=16,color="green",shape="box"];2921[label="xuu40000",fontsize=16,color="green",shape="box"];2922[label="xuu3000",fontsize=16,color="green",shape="box"];2923[label="xuu40000",fontsize=16,color="green",shape="box"];2924[label="xuu3000",fontsize=16,color="green",shape="box"];2925[label="xuu40000",fontsize=16,color="green",shape="box"];2926[label="xuu3000",fontsize=16,color="green",shape="box"];2927[label="xuu40000",fontsize=16,color="green",shape="box"];2928[label="xuu3000",fontsize=16,color="green",shape="box"];2929[label="xuu40000",fontsize=16,color="green",shape="box"];2930[label="xuu3000",fontsize=16,color="green",shape="box"];2931[label="xuu40000",fontsize=16,color="green",shape="box"];2932[label="xuu3000",fontsize=16,color="green",shape="box"];2933[label="xuu40000",fontsize=16,color="green",shape="box"];2934[label="xuu3000",fontsize=16,color="green",shape="box"];2935[label="xuu40000",fontsize=16,color="green",shape="box"];2936[label="xuu3000",fontsize=16,color="green",shape="box"];2937[label="xuu40000",fontsize=16,color="green",shape="box"];2938[label="xuu3000",fontsize=16,color="green",shape="box"];2939[label="xuu40000",fontsize=16,color="green",shape="box"];2940[label="xuu3000",fontsize=16,color="green",shape="box"];2941[label="xuu40000",fontsize=16,color="green",shape="box"];2942[label="xuu3000",fontsize=16,color="green",shape="box"];2943[label="xuu40000",fontsize=16,color="green",shape="box"];2944[label="xuu3000",fontsize=16,color="green",shape="box"];2945[label="xuu40000",fontsize=16,color="green",shape="box"];2946[label="xuu3001",fontsize=16,color="green",shape="box"];2947[label="xuu40001",fontsize=16,color="green",shape="box"];2948[label="xuu3001",fontsize=16,color="green",shape="box"];2949[label="xuu40001",fontsize=16,color="green",shape="box"];2950[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2950 -> 3079[label="",style="solid", color="black", weight=3]; 2951[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2951 -> 3080[label="",style="solid", color="black", weight=3]; 2952[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2952 -> 3081[label="",style="solid", color="black", weight=3]; 2953[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2953 -> 3082[label="",style="solid", color="black", weight=3]; 2954[label="xuu40001",fontsize=16,color="green",shape="box"];2955[label="xuu3000",fontsize=16,color="green",shape="box"];2956[label="xuu40000",fontsize=16,color="green",shape="box"];2957[label="xuu3001",fontsize=16,color="green",shape="box"];2958[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2958 -> 3083[label="",style="solid", color="black", weight=3]; 2959[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4695[label="xuu4700/LT",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4695[label="",style="solid", color="burlywood", weight=9]; 4695 -> 3084[label="",style="solid", color="burlywood", weight=3]; 4696[label="xuu4700/EQ",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4696[label="",style="solid", color="burlywood", weight=9]; 4696 -> 3085[label="",style="solid", color="burlywood", weight=3]; 4697[label="xuu4700/GT",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4697[label="",style="solid", color="burlywood", weight=9]; 4697 -> 3086[label="",style="solid", color="burlywood", weight=3]; 2960[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4698[label="xuu4700/(xuu47000,xuu47001)",fontsize=10,color="white",style="solid",shape="box"];2960 -> 4698[label="",style="solid", color="burlywood", weight=9]; 4698 -> 3087[label="",style="solid", color="burlywood", weight=3]; 2961[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2961 -> 3088[label="",style="solid", color="black", weight=3]; 2962[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2962 -> 3089[label="",style="solid", color="black", weight=3]; 2963[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2963 -> 3090[label="",style="solid", color="black", weight=3]; 2964[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4699[label="xuu4700/Left xuu47000",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4699[label="",style="solid", color="burlywood", weight=9]; 4699 -> 3091[label="",style="solid", color="burlywood", weight=3]; 4700[label="xuu4700/Right xuu47000",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4700[label="",style="solid", color="burlywood", weight=9]; 4700 -> 3092[label="",style="solid", color="burlywood", weight=3]; 2965[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4701[label="xuu4700/(xuu47000,xuu47001,xuu47002)",fontsize=10,color="white",style="solid",shape="box"];2965 -> 4701[label="",style="solid", color="burlywood", weight=9]; 4701 -> 3093[label="",style="solid", color="burlywood", weight=3]; 2966[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2966 -> 3094[label="",style="solid", color="black", weight=3]; 2967[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4702[label="xuu4700/False",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 3095[label="",style="solid", color="burlywood", weight=3]; 4703[label="xuu4700/True",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 3096[label="",style="solid", color="burlywood", weight=3]; 2968[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2968 -> 3097[label="",style="solid", color="black", weight=3]; 2969[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4704[label="xuu4700/Nothing",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 3098[label="",style="solid", color="burlywood", weight=3]; 4705[label="xuu4700/Just xuu47000",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 3099[label="",style="solid", color="burlywood", weight=3]; 2970[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2970 -> 3100[label="",style="solid", color="black", weight=3]; 2971[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2971 -> 3101[label="",style="solid", color="black", weight=3]; 2972[label="compare1 (Left xuu180) (Left xuu181) False",fontsize=16,color="black",shape="box"];2972 -> 3102[label="",style="solid", color="black", weight=3]; 2973[label="compare1 (Left xuu180) (Left xuu181) True",fontsize=16,color="black",shape="box"];2973 -> 3103[label="",style="solid", color="black", weight=3]; 2974[label="compare0 (Right xuu4700) (Left xuu4800) True",fontsize=16,color="black",shape="box"];2974 -> 3104[label="",style="solid", color="black", weight=3]; 2975 -> 2958[label="",style="dashed", color="red", weight=0]; 2975[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2975 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2976 -> 2959[label="",style="dashed", color="red", weight=0]; 2976[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2976 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2977 -> 2960[label="",style="dashed", color="red", weight=0]; 2977[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2977 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2978 -> 2961[label="",style="dashed", color="red", weight=0]; 2978[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2978 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2979 -> 2962[label="",style="dashed", color="red", weight=0]; 2979[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2979 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2980 -> 2963[label="",style="dashed", color="red", weight=0]; 2980[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2980 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2980 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2981 -> 2964[label="",style="dashed", color="red", weight=0]; 2981[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2981 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2981 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2982 -> 2965[label="",style="dashed", color="red", weight=0]; 2982[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2982 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2982 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2983 -> 2966[label="",style="dashed", color="red", weight=0]; 2983[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2983 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2984 -> 2967[label="",style="dashed", color="red", weight=0]; 2984[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2984 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2984 -> 3124[label="",style="dashed", color="magenta", weight=3]; 2985 -> 2968[label="",style="dashed", color="red", weight=0]; 2985[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2985 -> 3125[label="",style="dashed", color="magenta", weight=3]; 2985 -> 3126[label="",style="dashed", color="magenta", weight=3]; 2986 -> 2969[label="",style="dashed", color="red", weight=0]; 2986[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2986 -> 3127[label="",style="dashed", color="magenta", weight=3]; 2986 -> 3128[label="",style="dashed", color="magenta", weight=3]; 2987 -> 2970[label="",style="dashed", color="red", weight=0]; 2987[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2987 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2987 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2988 -> 2971[label="",style="dashed", color="red", weight=0]; 2988[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2988 -> 3131[label="",style="dashed", color="magenta", weight=3]; 2988 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2989[label="compare1 (Right xuu187) (Right xuu188) False",fontsize=16,color="black",shape="box"];2989 -> 3133[label="",style="solid", color="black", weight=3]; 2990[label="compare1 (Right xuu187) (Right xuu188) True",fontsize=16,color="black",shape="box"];2990 -> 3134[label="",style="solid", color="black", weight=3]; 2228[label="xuu19 == xuu14",fontsize=16,color="blue",shape="box"];4706[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4706[label="",style="solid", color="blue", weight=9]; 4706 -> 2315[label="",style="solid", color="blue", weight=3]; 4707[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4707[label="",style="solid", color="blue", weight=9]; 4707 -> 2316[label="",style="solid", color="blue", weight=3]; 4708[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 2317[label="",style="solid", color="blue", weight=3]; 4709[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 2318[label="",style="solid", color="blue", weight=3]; 4710[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4710[label="",style="solid", color="blue", weight=9]; 4710 -> 2319[label="",style="solid", color="blue", weight=3]; 4711[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4711[label="",style="solid", color="blue", weight=9]; 4711 -> 2320[label="",style="solid", color="blue", weight=3]; 4712[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4712[label="",style="solid", color="blue", weight=9]; 4712 -> 2321[label="",style="solid", color="blue", weight=3]; 4713[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4713[label="",style="solid", color="blue", weight=9]; 4713 -> 2322[label="",style="solid", color="blue", weight=3]; 4714[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4714[label="",style="solid", color="blue", weight=9]; 4714 -> 2323[label="",style="solid", color="blue", weight=3]; 4715[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4715[label="",style="solid", color="blue", weight=9]; 4715 -> 2324[label="",style="solid", color="blue", weight=3]; 4716[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4716[label="",style="solid", color="blue", weight=9]; 4716 -> 2325[label="",style="solid", color="blue", weight=3]; 4717[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4717[label="",style="solid", color="blue", weight=9]; 4717 -> 2326[label="",style="solid", color="blue", weight=3]; 4718[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4718[label="",style="solid", color="blue", weight=9]; 4718 -> 2327[label="",style="solid", color="blue", weight=3]; 4719[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4719[label="",style="solid", color="blue", weight=9]; 4719 -> 2328[label="",style="solid", color="blue", weight=3]; 1124[label="xuu20",fontsize=16,color="green",shape="box"];1125[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1125 -> 1264[label="",style="solid", color="black", weight=3]; 1351 -> 1834[label="",style="dashed", color="red", weight=0]; 1351[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1351 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1350[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu106",fontsize=16,color="burlywood",shape="triangle"];4720[label="xuu106/False",fontsize=10,color="white",style="solid",shape="box"];1350 -> 4720[label="",style="solid", color="burlywood", weight=9]; 4720 -> 1356[label="",style="solid", color="burlywood", weight=3]; 4721[label="xuu106/True",fontsize=10,color="white",style="solid",shape="box"];1350 -> 4721[label="",style="solid", color="burlywood", weight=9]; 4721 -> 1357[label="",style="solid", color="burlywood", weight=3]; 4163[label="Left xuu300",fontsize=16,color="green",shape="box"];4164[label="xuu31",fontsize=16,color="green",shape="box"];4165[label="Zero",fontsize=16,color="green",shape="box"];4166[label="xuu50",fontsize=16,color="green",shape="box"];4167[label="xuu34",fontsize=16,color="green",shape="box"];4162[label="FiniteMap.mkBranch (Pos (Succ xuu259)) xuu260 xuu261 xuu262 xuu263",fontsize=16,color="black",shape="triangle"];4162 -> 4293[label="",style="solid", color="black", weight=3]; 2229[label="False",fontsize=16,color="green",shape="box"];1145[label="xuu31",fontsize=16,color="green",shape="box"];1146[label="xuu401",fontsize=16,color="green",shape="box"];1147[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1147 -> 1297[label="",style="solid", color="black", weight=3]; 1422 -> 1834[label="",style="dashed", color="red", weight=0]; 1422[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1422 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1421[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu108",fontsize=16,color="burlywood",shape="triangle"];4722[label="xuu108/False",fontsize=10,color="white",style="solid",shape="box"];1421 -> 4722[label="",style="solid", color="burlywood", weight=9]; 4722 -> 1427[label="",style="solid", color="burlywood", weight=3]; 4723[label="xuu108/True",fontsize=10,color="white",style="solid",shape="box"];1421 -> 4723[label="",style="solid", color="burlywood", weight=9]; 4723 -> 1428[label="",style="solid", color="burlywood", weight=3]; 4168[label="Right xuu300",fontsize=16,color="green",shape="box"];4169[label="xuu31",fontsize=16,color="green",shape="box"];4170[label="Zero",fontsize=16,color="green",shape="box"];4171[label="xuu42",fontsize=16,color="green",shape="box"];4172[label="xuu34",fontsize=16,color="green",shape="box"];2230[label="False",fontsize=16,color="green",shape="box"];1161[label="xuu31",fontsize=16,color="green",shape="box"];1162[label="xuu401",fontsize=16,color="green",shape="box"];2231[label="xuu36 == xuu31",fontsize=16,color="blue",shape="box"];4724[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4724[label="",style="solid", color="blue", weight=9]; 4724 -> 2329[label="",style="solid", color="blue", weight=3]; 4725[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4725[label="",style="solid", color="blue", weight=9]; 4725 -> 2330[label="",style="solid", color="blue", weight=3]; 4726[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4726[label="",style="solid", color="blue", weight=9]; 4726 -> 2331[label="",style="solid", color="blue", weight=3]; 4727[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4727[label="",style="solid", color="blue", weight=9]; 4727 -> 2332[label="",style="solid", color="blue", weight=3]; 4728[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4728[label="",style="solid", color="blue", weight=9]; 4728 -> 2333[label="",style="solid", color="blue", weight=3]; 4729[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4729[label="",style="solid", color="blue", weight=9]; 4729 -> 2334[label="",style="solid", color="blue", weight=3]; 4730[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2335[label="",style="solid", color="blue", weight=3]; 4731[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2336[label="",style="solid", color="blue", weight=3]; 4732[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2337[label="",style="solid", color="blue", weight=3]; 4733[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2338[label="",style="solid", color="blue", weight=3]; 4734[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2339[label="",style="solid", color="blue", weight=3]; 4735[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2340[label="",style="solid", color="blue", weight=3]; 4736[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2341[label="",style="solid", color="blue", weight=3]; 4737[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2342[label="",style="solid", color="blue", weight=3]; 1166[label="xuu32",fontsize=16,color="green",shape="box"];1167[label="xuu37",fontsize=16,color="green",shape="box"];917[label="primMulInt xuu40001 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4738[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];917 -> 4738[label="",style="solid", color="burlywood", weight=9]; 4738 -> 1168[label="",style="solid", color="burlywood", weight=3]; 4739[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];917 -> 4739[label="",style="solid", color="burlywood", weight=9]; 4739 -> 1169[label="",style="solid", color="burlywood", weight=3]; 3019[label="xuu3001",fontsize=16,color="green",shape="box"];3020[label="xuu40001",fontsize=16,color="green",shape="box"];3021[label="xuu3001",fontsize=16,color="green",shape="box"];3022[label="xuu40001",fontsize=16,color="green",shape="box"];3023[label="xuu3001",fontsize=16,color="green",shape="box"];3024[label="xuu40001",fontsize=16,color="green",shape="box"];3025[label="xuu3001",fontsize=16,color="green",shape="box"];3026[label="xuu40001",fontsize=16,color="green",shape="box"];3027[label="xuu3001",fontsize=16,color="green",shape="box"];3028[label="xuu40001",fontsize=16,color="green",shape="box"];3029[label="xuu3001",fontsize=16,color="green",shape="box"];3030[label="xuu40001",fontsize=16,color="green",shape="box"];3031[label="xuu3001",fontsize=16,color="green",shape="box"];3032[label="xuu40001",fontsize=16,color="green",shape="box"];3033[label="xuu3001",fontsize=16,color="green",shape="box"];3034[label="xuu40001",fontsize=16,color="green",shape="box"];3035[label="xuu3001",fontsize=16,color="green",shape="box"];3036[label="xuu40001",fontsize=16,color="green",shape="box"];3037[label="xuu3001",fontsize=16,color="green",shape="box"];3038[label="xuu40001",fontsize=16,color="green",shape="box"];3039[label="xuu3001",fontsize=16,color="green",shape="box"];3040[label="xuu40001",fontsize=16,color="green",shape="box"];3041[label="xuu3001",fontsize=16,color="green",shape="box"];3042[label="xuu40001",fontsize=16,color="green",shape="box"];3043[label="xuu3001",fontsize=16,color="green",shape="box"];3044[label="xuu40001",fontsize=16,color="green",shape="box"];3045[label="xuu3001",fontsize=16,color="green",shape="box"];3046[label="xuu40001",fontsize=16,color="green",shape="box"];3047[label="xuu3002",fontsize=16,color="green",shape="box"];3048[label="xuu40002",fontsize=16,color="green",shape="box"];3049[label="xuu3002",fontsize=16,color="green",shape="box"];3050[label="xuu40002",fontsize=16,color="green",shape="box"];3051[label="xuu3002",fontsize=16,color="green",shape="box"];3052[label="xuu40002",fontsize=16,color="green",shape="box"];3053[label="xuu3002",fontsize=16,color="green",shape="box"];3054[label="xuu40002",fontsize=16,color="green",shape="box"];3055[label="xuu3002",fontsize=16,color="green",shape="box"];3056[label="xuu40002",fontsize=16,color="green",shape="box"];3057[label="xuu3002",fontsize=16,color="green",shape="box"];3058[label="xuu40002",fontsize=16,color="green",shape="box"];3059[label="xuu3002",fontsize=16,color="green",shape="box"];3060[label="xuu40002",fontsize=16,color="green",shape="box"];3061[label="xuu3002",fontsize=16,color="green",shape="box"];3062[label="xuu40002",fontsize=16,color="green",shape="box"];3063[label="xuu3002",fontsize=16,color="green",shape="box"];3064[label="xuu40002",fontsize=16,color="green",shape="box"];3065[label="xuu3002",fontsize=16,color="green",shape="box"];3066[label="xuu40002",fontsize=16,color="green",shape="box"];3067[label="xuu3002",fontsize=16,color="green",shape="box"];3068[label="xuu40002",fontsize=16,color="green",shape="box"];3069[label="xuu3002",fontsize=16,color="green",shape="box"];3070[label="xuu40002",fontsize=16,color="green",shape="box"];3071[label="xuu3002",fontsize=16,color="green",shape="box"];3072[label="xuu40002",fontsize=16,color="green",shape="box"];3073[label="xuu3002",fontsize=16,color="green",shape="box"];3074[label="xuu40002",fontsize=16,color="green",shape="box"];3075[label="xuu30000",fontsize=16,color="green",shape="box"];3076[label="xuu400000",fontsize=16,color="green",shape="box"];3077[label="xuu30000",fontsize=16,color="green",shape="box"];3078[label="xuu400000",fontsize=16,color="green",shape="box"];3079 -> 2558[label="",style="dashed", color="red", weight=0]; 3079[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];3079 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3080[label="False",fontsize=16,color="green",shape="box"];3081[label="False",fontsize=16,color="green",shape="box"];3082[label="True",fontsize=16,color="green",shape="box"];3083 -> 3186[label="",style="dashed", color="red", weight=0]; 3083[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3083 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3084[label="LT <= xuu4800",fontsize=16,color="burlywood",shape="box"];4740[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3084 -> 4740[label="",style="solid", color="burlywood", weight=9]; 4740 -> 3163[label="",style="solid", color="burlywood", weight=3]; 4741[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3084 -> 4741[label="",style="solid", color="burlywood", weight=9]; 4741 -> 3164[label="",style="solid", color="burlywood", weight=3]; 4742[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3084 -> 4742[label="",style="solid", color="burlywood", weight=9]; 4742 -> 3165[label="",style="solid", color="burlywood", weight=3]; 3085[label="EQ <= xuu4800",fontsize=16,color="burlywood",shape="box"];4743[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4743[label="",style="solid", color="burlywood", weight=9]; 4743 -> 3166[label="",style="solid", color="burlywood", weight=3]; 4744[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4744[label="",style="solid", color="burlywood", weight=9]; 4744 -> 3167[label="",style="solid", color="burlywood", weight=3]; 4745[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4745[label="",style="solid", color="burlywood", weight=9]; 4745 -> 3168[label="",style="solid", color="burlywood", weight=3]; 3086[label="GT <= xuu4800",fontsize=16,color="burlywood",shape="box"];4746[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4746[label="",style="solid", color="burlywood", weight=9]; 4746 -> 3169[label="",style="solid", color="burlywood", weight=3]; 4747[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4747[label="",style="solid", color="burlywood", weight=9]; 4747 -> 3170[label="",style="solid", color="burlywood", weight=3]; 4748[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4748[label="",style="solid", color="burlywood", weight=9]; 4748 -> 3171[label="",style="solid", color="burlywood", weight=3]; 3087[label="(xuu47000,xuu47001) <= xuu4800",fontsize=16,color="burlywood",shape="box"];4749[label="xuu4800/(xuu48000,xuu48001)",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4749[label="",style="solid", color="burlywood", weight=9]; 4749 -> 3172[label="",style="solid", color="burlywood", weight=3]; 3088 -> 3186[label="",style="dashed", color="red", weight=0]; 3088[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3088 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3186[label="",style="dashed", color="red", weight=0]; 3089[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3089 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3186[label="",style="dashed", color="red", weight=0]; 3090[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3090 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3091[label="Left xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4750[label="xuu4800/Left xuu48000",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4750[label="",style="solid", color="burlywood", weight=9]; 4750 -> 3176[label="",style="solid", color="burlywood", weight=3]; 4751[label="xuu4800/Right xuu48000",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4751[label="",style="solid", color="burlywood", weight=9]; 4751 -> 3177[label="",style="solid", color="burlywood", weight=3]; 3092[label="Right xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4752[label="xuu4800/Left xuu48000",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4752[label="",style="solid", color="burlywood", weight=9]; 4752 -> 3178[label="",style="solid", color="burlywood", weight=3]; 4753[label="xuu4800/Right xuu48000",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4753[label="",style="solid", color="burlywood", weight=9]; 4753 -> 3179[label="",style="solid", color="burlywood", weight=3]; 3093[label="(xuu47000,xuu47001,xuu47002) <= xuu4800",fontsize=16,color="burlywood",shape="box"];4754[label="xuu4800/(xuu48000,xuu48001,xuu48002)",fontsize=10,color="white",style="solid",shape="box"];3093 -> 4754[label="",style="solid", color="burlywood", weight=9]; 4754 -> 3180[label="",style="solid", color="burlywood", weight=3]; 3094 -> 3186[label="",style="dashed", color="red", weight=0]; 3094[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3094 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3095[label="False <= xuu4800",fontsize=16,color="burlywood",shape="box"];4755[label="xuu4800/False",fontsize=10,color="white",style="solid",shape="box"];3095 -> 4755[label="",style="solid", color="burlywood", weight=9]; 4755 -> 3182[label="",style="solid", color="burlywood", weight=3]; 4756[label="xuu4800/True",fontsize=10,color="white",style="solid",shape="box"];3095 -> 4756[label="",style="solid", color="burlywood", weight=9]; 4756 -> 3183[label="",style="solid", color="burlywood", weight=3]; 3096[label="True <= xuu4800",fontsize=16,color="burlywood",shape="box"];4757[label="xuu4800/False",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 3184[label="",style="solid", color="burlywood", weight=3]; 4758[label="xuu4800/True",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 3185[label="",style="solid", color="burlywood", weight=3]; 3097 -> 3186[label="",style="dashed", color="red", weight=0]; 3097[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3097 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3098[label="Nothing <= xuu4800",fontsize=16,color="burlywood",shape="box"];4759[label="xuu4800/Nothing",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 3195[label="",style="solid", color="burlywood", weight=3]; 4760[label="xuu4800/Just xuu48000",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 3196[label="",style="solid", color="burlywood", weight=3]; 3099[label="Just xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4761[label="xuu4800/Nothing",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 3197[label="",style="solid", color="burlywood", weight=3]; 4762[label="xuu4800/Just xuu48000",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 3198[label="",style="solid", color="burlywood", weight=3]; 3100 -> 3186[label="",style="dashed", color="red", weight=0]; 3100[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3100 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3186[label="",style="dashed", color="red", weight=0]; 3101[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3101 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3102[label="compare0 (Left xuu180) (Left xuu181) otherwise",fontsize=16,color="black",shape="box"];3102 -> 3199[label="",style="solid", color="black", weight=3]; 3103[label="LT",fontsize=16,color="green",shape="box"];3104[label="GT",fontsize=16,color="green",shape="box"];3105[label="xuu4700",fontsize=16,color="green",shape="box"];3106[label="xuu4800",fontsize=16,color="green",shape="box"];3107[label="xuu4700",fontsize=16,color="green",shape="box"];3108[label="xuu4800",fontsize=16,color="green",shape="box"];3109[label="xuu4700",fontsize=16,color="green",shape="box"];3110[label="xuu4800",fontsize=16,color="green",shape="box"];3111[label="xuu4700",fontsize=16,color="green",shape="box"];3112[label="xuu4800",fontsize=16,color="green",shape="box"];3113[label="xuu4700",fontsize=16,color="green",shape="box"];3114[label="xuu4800",fontsize=16,color="green",shape="box"];3115[label="xuu4700",fontsize=16,color="green",shape="box"];3116[label="xuu4800",fontsize=16,color="green",shape="box"];3117[label="xuu4700",fontsize=16,color="green",shape="box"];3118[label="xuu4800",fontsize=16,color="green",shape="box"];3119[label="xuu4700",fontsize=16,color="green",shape="box"];3120[label="xuu4800",fontsize=16,color="green",shape="box"];3121[label="xuu4700",fontsize=16,color="green",shape="box"];3122[label="xuu4800",fontsize=16,color="green",shape="box"];3123[label="xuu4700",fontsize=16,color="green",shape="box"];3124[label="xuu4800",fontsize=16,color="green",shape="box"];3125[label="xuu4700",fontsize=16,color="green",shape="box"];3126[label="xuu4800",fontsize=16,color="green",shape="box"];3127[label="xuu4700",fontsize=16,color="green",shape="box"];3128[label="xuu4800",fontsize=16,color="green",shape="box"];3129[label="xuu4700",fontsize=16,color="green",shape="box"];3130[label="xuu4800",fontsize=16,color="green",shape="box"];3131[label="xuu4700",fontsize=16,color="green",shape="box"];3132[label="xuu4800",fontsize=16,color="green",shape="box"];3133[label="compare0 (Right xuu187) (Right xuu188) otherwise",fontsize=16,color="black",shape="box"];3133 -> 3200[label="",style="solid", color="black", weight=3]; 3134[label="LT",fontsize=16,color="green",shape="box"];2315 -> 2198[label="",style="dashed", color="red", weight=0]; 2315[label="xuu19 == xuu14",fontsize=16,color="magenta"];2315 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2199[label="",style="dashed", color="red", weight=0]; 2316[label="xuu19 == xuu14",fontsize=16,color="magenta"];2316 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2200[label="",style="dashed", color="red", weight=0]; 2317[label="xuu19 == xuu14",fontsize=16,color="magenta"];2317 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2201[label="",style="dashed", color="red", weight=0]; 2318[label="xuu19 == xuu14",fontsize=16,color="magenta"];2318 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2202[label="",style="dashed", color="red", weight=0]; 2319[label="xuu19 == xuu14",fontsize=16,color="magenta"];2319 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2320 -> 63[label="",style="dashed", color="red", weight=0]; 2320[label="xuu19 == xuu14",fontsize=16,color="magenta"];2320 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2204[label="",style="dashed", color="red", weight=0]; 2321[label="xuu19 == xuu14",fontsize=16,color="magenta"];2321 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2205[label="",style="dashed", color="red", weight=0]; 2322[label="xuu19 == xuu14",fontsize=16,color="magenta"];2322 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2206[label="",style="dashed", color="red", weight=0]; 2323[label="xuu19 == xuu14",fontsize=16,color="magenta"];2323 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2207[label="",style="dashed", color="red", weight=0]; 2324[label="xuu19 == xuu14",fontsize=16,color="magenta"];2324 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2208[label="",style="dashed", color="red", weight=0]; 2325[label="xuu19 == xuu14",fontsize=16,color="magenta"];2325 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2209[label="",style="dashed", color="red", weight=0]; 2326[label="xuu19 == xuu14",fontsize=16,color="magenta"];2326 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2210[label="",style="dashed", color="red", weight=0]; 2327[label="xuu19 == xuu14",fontsize=16,color="magenta"];2327 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2211[label="",style="dashed", color="red", weight=0]; 2328[label="xuu19 == xuu14",fontsize=16,color="magenta"];2328 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2400[label="",style="dashed", color="magenta", weight=3]; 1264[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1264 -> 1347[label="",style="solid", color="black", weight=3]; 1835[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];1835 -> 1845[label="",style="solid", color="black", weight=3]; 1836 -> 642[label="",style="dashed", color="red", weight=0]; 1836[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1836 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1834[label="xuu124 > xuu123",fontsize=16,color="black",shape="triangle"];1834 -> 1848[label="",style="solid", color="black", weight=3]; 1356[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];1356 -> 1429[label="",style="solid", color="black", weight=3]; 1357[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];1357 -> 1430[label="",style="solid", color="black", weight=3]; 4293[label="FiniteMap.mkBranchResult xuu260 xuu261 xuu262 xuu263",fontsize=16,color="black",shape="box"];4293 -> 4359[label="",style="solid", color="black", weight=3]; 1297[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1297 -> 1418[label="",style="solid", color="black", weight=3]; 1837[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];1837 -> 1849[label="",style="solid", color="black", weight=3]; 1838 -> 642[label="",style="dashed", color="red", weight=0]; 1838[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1838 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1838 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1427[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];1427 -> 1452[label="",style="solid", color="black", weight=3]; 1428[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];1428 -> 1453[label="",style="solid", color="black", weight=3]; 2329 -> 2198[label="",style="dashed", color="red", weight=0]; 2329[label="xuu36 == xuu31",fontsize=16,color="magenta"];2329 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2199[label="",style="dashed", color="red", weight=0]; 2330[label="xuu36 == xuu31",fontsize=16,color="magenta"];2330 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2200[label="",style="dashed", color="red", weight=0]; 2331[label="xuu36 == xuu31",fontsize=16,color="magenta"];2331 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2201[label="",style="dashed", color="red", weight=0]; 2332[label="xuu36 == xuu31",fontsize=16,color="magenta"];2332 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2202[label="",style="dashed", color="red", weight=0]; 2333[label="xuu36 == xuu31",fontsize=16,color="magenta"];2333 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2334 -> 63[label="",style="dashed", color="red", weight=0]; 2334[label="xuu36 == xuu31",fontsize=16,color="magenta"];2334 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2204[label="",style="dashed", color="red", weight=0]; 2335[label="xuu36 == xuu31",fontsize=16,color="magenta"];2335 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2205[label="",style="dashed", color="red", weight=0]; 2336[label="xuu36 == xuu31",fontsize=16,color="magenta"];2336 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2206[label="",style="dashed", color="red", weight=0]; 2337[label="xuu36 == xuu31",fontsize=16,color="magenta"];2337 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2207[label="",style="dashed", color="red", weight=0]; 2338[label="xuu36 == xuu31",fontsize=16,color="magenta"];2338 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2208[label="",style="dashed", color="red", weight=0]; 2339[label="xuu36 == xuu31",fontsize=16,color="magenta"];2339 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2209[label="",style="dashed", color="red", weight=0]; 2340[label="xuu36 == xuu31",fontsize=16,color="magenta"];2340 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2210[label="",style="dashed", color="red", weight=0]; 2341[label="xuu36 == xuu31",fontsize=16,color="magenta"];2341 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2211[label="",style="dashed", color="red", weight=0]; 2342[label="xuu36 == xuu31",fontsize=16,color="magenta"];2342 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2428[label="",style="dashed", color="magenta", weight=3]; 1168[label="primMulInt (Pos xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];4763[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1168 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 1302[label="",style="solid", color="burlywood", weight=3]; 4764[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1168 -> 4764[label="",style="solid", color="burlywood", weight=9]; 4764 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1169[label="primMulInt (Neg xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];4765[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4765[label="",style="solid", color="burlywood", weight=9]; 4765 -> 1304[label="",style="solid", color="burlywood", weight=3]; 4766[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4766[label="",style="solid", color="burlywood", weight=9]; 4766 -> 1305[label="",style="solid", color="burlywood", weight=3]; 3160[label="xuu30000",fontsize=16,color="green",shape="box"];3161[label="xuu400000",fontsize=16,color="green",shape="box"];3187[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4767[label="xuu4700/xuu47000 : xuu47001",fontsize=10,color="white",style="solid",shape="box"];3187 -> 4767[label="",style="solid", color="burlywood", weight=9]; 4767 -> 3201[label="",style="solid", color="burlywood", weight=3]; 4768[label="xuu4700/[]",fontsize=10,color="white",style="solid",shape="box"];3187 -> 4768[label="",style="solid", color="burlywood", weight=9]; 4768 -> 3202[label="",style="solid", color="burlywood", weight=3]; 3186[label="xuu190 /= GT",fontsize=16,color="black",shape="triangle"];3186 -> 3203[label="",style="solid", color="black", weight=3]; 3163[label="LT <= LT",fontsize=16,color="black",shape="box"];3163 -> 3204[label="",style="solid", color="black", weight=3]; 3164[label="LT <= EQ",fontsize=16,color="black",shape="box"];3164 -> 3205[label="",style="solid", color="black", weight=3]; 3165[label="LT <= GT",fontsize=16,color="black",shape="box"];3165 -> 3206[label="",style="solid", color="black", weight=3]; 3166[label="EQ <= LT",fontsize=16,color="black",shape="box"];3166 -> 3207[label="",style="solid", color="black", weight=3]; 3167[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3167 -> 3208[label="",style="solid", color="black", weight=3]; 3168[label="EQ <= GT",fontsize=16,color="black",shape="box"];3168 -> 3209[label="",style="solid", color="black", weight=3]; 3169[label="GT <= LT",fontsize=16,color="black",shape="box"];3169 -> 3210[label="",style="solid", color="black", weight=3]; 3170[label="GT <= EQ",fontsize=16,color="black",shape="box"];3170 -> 3211[label="",style="solid", color="black", weight=3]; 3171[label="GT <= GT",fontsize=16,color="black",shape="box"];3171 -> 3212[label="",style="solid", color="black", weight=3]; 3172[label="(xuu47000,xuu47001) <= (xuu48000,xuu48001)",fontsize=16,color="black",shape="box"];3172 -> 3213[label="",style="solid", color="black", weight=3]; 3188[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4769[label="xuu4700/xuu47000 :% xuu47001",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4769[label="",style="solid", color="burlywood", weight=9]; 4769 -> 3214[label="",style="solid", color="burlywood", weight=3]; 3189[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3189 -> 3215[label="",style="solid", color="black", weight=3]; 3190[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3190 -> 3216[label="",style="solid", color="black", weight=3]; 3176[label="Left xuu47000 <= Left xuu48000",fontsize=16,color="black",shape="box"];3176 -> 3217[label="",style="solid", color="black", weight=3]; 3177[label="Left xuu47000 <= Right xuu48000",fontsize=16,color="black",shape="box"];3177 -> 3218[label="",style="solid", color="black", weight=3]; 3178[label="Right xuu47000 <= Left xuu48000",fontsize=16,color="black",shape="box"];3178 -> 3219[label="",style="solid", color="black", weight=3]; 3179[label="Right xuu47000 <= Right xuu48000",fontsize=16,color="black",shape="box"];3179 -> 3220[label="",style="solid", color="black", weight=3]; 3180[label="(xuu47000,xuu47001,xuu47002) <= (xuu48000,xuu48001,xuu48002)",fontsize=16,color="black",shape="box"];3180 -> 3221[label="",style="solid", color="black", weight=3]; 3191[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4770[label="xuu4700/Integer xuu47000",fontsize=10,color="white",style="solid",shape="box"];3191 -> 4770[label="",style="solid", color="burlywood", weight=9]; 4770 -> 3222[label="",style="solid", color="burlywood", weight=3]; 3182[label="False <= False",fontsize=16,color="black",shape="box"];3182 -> 3223[label="",style="solid", color="black", weight=3]; 3183[label="False <= True",fontsize=16,color="black",shape="box"];3183 -> 3224[label="",style="solid", color="black", weight=3]; 3184[label="True <= False",fontsize=16,color="black",shape="box"];3184 -> 3225[label="",style="solid", color="black", weight=3]; 3185[label="True <= True",fontsize=16,color="black",shape="box"];3185 -> 3226[label="",style="solid", color="black", weight=3]; 3192 -> 1321[label="",style="dashed", color="red", weight=0]; 3192[label="compare xuu4700 xuu4800",fontsize=16,color="magenta"];3192 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3195[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3195 -> 3245[label="",style="solid", color="black", weight=3]; 3196[label="Nothing <= Just xuu48000",fontsize=16,color="black",shape="box"];3196 -> 3246[label="",style="solid", color="black", weight=3]; 3197[label="Just xuu47000 <= Nothing",fontsize=16,color="black",shape="box"];3197 -> 3247[label="",style="solid", color="black", weight=3]; 3198[label="Just xuu47000 <= Just xuu48000",fontsize=16,color="black",shape="box"];3198 -> 3248[label="",style="solid", color="black", weight=3]; 3193[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4771[label="xuu4700/()",fontsize=10,color="white",style="solid",shape="box"];3193 -> 4771[label="",style="solid", color="burlywood", weight=9]; 4771 -> 3229[label="",style="solid", color="burlywood", weight=3]; 3194[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3194 -> 3230[label="",style="solid", color="black", weight=3]; 3199[label="compare0 (Left xuu180) (Left xuu181) True",fontsize=16,color="black",shape="box"];3199 -> 3249[label="",style="solid", color="black", weight=3]; 3200[label="compare0 (Right xuu187) (Right xuu188) True",fontsize=16,color="black",shape="box"];3200 -> 3250[label="",style="solid", color="black", weight=3]; 2373[label="xuu14",fontsize=16,color="green",shape="box"];2374[label="xuu19",fontsize=16,color="green",shape="box"];2375[label="xuu14",fontsize=16,color="green",shape="box"];2376[label="xuu19",fontsize=16,color="green",shape="box"];2377[label="xuu14",fontsize=16,color="green",shape="box"];2378[label="xuu19",fontsize=16,color="green",shape="box"];2379[label="xuu14",fontsize=16,color="green",shape="box"];2380[label="xuu19",fontsize=16,color="green",shape="box"];2381[label="xuu14",fontsize=16,color="green",shape="box"];2382[label="xuu19",fontsize=16,color="green",shape="box"];2383[label="xuu14",fontsize=16,color="green",shape="box"];2384[label="xuu19",fontsize=16,color="green",shape="box"];2385[label="xuu14",fontsize=16,color="green",shape="box"];2386[label="xuu19",fontsize=16,color="green",shape="box"];2387[label="xuu14",fontsize=16,color="green",shape="box"];2388[label="xuu19",fontsize=16,color="green",shape="box"];2389[label="xuu14",fontsize=16,color="green",shape="box"];2390[label="xuu19",fontsize=16,color="green",shape="box"];2391[label="xuu14",fontsize=16,color="green",shape="box"];2392[label="xuu19",fontsize=16,color="green",shape="box"];2393[label="xuu14",fontsize=16,color="green",shape="box"];2394[label="xuu19",fontsize=16,color="green",shape="box"];2395[label="xuu14",fontsize=16,color="green",shape="box"];2396[label="xuu19",fontsize=16,color="green",shape="box"];2397[label="xuu14",fontsize=16,color="green",shape="box"];2398[label="xuu19",fontsize=16,color="green",shape="box"];2399[label="xuu14",fontsize=16,color="green",shape="box"];2400[label="xuu19",fontsize=16,color="green",shape="box"];1347[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu50) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4772[label="xuu50/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1347 -> 4772[label="",style="solid", color="burlywood", weight=9]; 4772 -> 1523[label="",style="solid", color="burlywood", weight=3]; 4773[label="xuu50/FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=10,color="white",style="solid",shape="box"];1347 -> 4773[label="",style="solid", color="burlywood", weight=9]; 4773 -> 1524[label="",style="solid", color="burlywood", weight=3]; 1845[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];4774[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1845 -> 4774[label="",style="solid", color="burlywood", weight=9]; 4774 -> 1868[label="",style="solid", color="burlywood", weight=3]; 4775[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1845 -> 4775[label="",style="solid", color="burlywood", weight=9]; 4775 -> 1869[label="",style="solid", color="burlywood", weight=3]; 1846[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1846 -> 1870[label="",style="solid", color="black", weight=3]; 1847 -> 1843[label="",style="dashed", color="red", weight=0]; 1847[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1848 -> 63[label="",style="dashed", color="red", weight=0]; 1848[label="compare xuu124 xuu123 == GT",fontsize=16,color="magenta"];1848 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1830[label="",style="dashed", color="red", weight=0]; 1429[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)",fontsize=16,color="magenta"];1429 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1430[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 xuu34 xuu50 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4776[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4776[label="",style="solid", color="burlywood", weight=9]; 4776 -> 1532[label="",style="solid", color="burlywood", weight=3]; 4777[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4777[label="",style="solid", color="burlywood", weight=9]; 4777 -> 1533[label="",style="solid", color="burlywood", weight=3]; 4359[label="FiniteMap.Branch xuu260 xuu261 (FiniteMap.mkBranchUnbox xuu262 xuu260 xuu263 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263 + FiniteMap.mkBranchRight_size xuu262 xuu260 xuu263)) xuu262 xuu263",fontsize=16,color="green",shape="box"];4359 -> 4365[label="",style="dashed", color="green", weight=3]; 1418[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu42) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4778[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1418 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 1535[label="",style="solid", color="burlywood", weight=3]; 4779[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1418 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 1536[label="",style="solid", color="burlywood", weight=3]; 1849 -> 1845[label="",style="dashed", color="red", weight=0]; 1849[label="FiniteMap.sizeFM xuu34",fontsize=16,color="magenta"];1850 -> 1846[label="",style="dashed", color="red", weight=0]; 1850[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1851[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];1851 -> 1873[label="",style="solid", color="black", weight=3]; 1452 -> 1864[label="",style="dashed", color="red", weight=0]; 1452[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)",fontsize=16,color="magenta"];1452 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1453[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 xuu34 xuu42 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4780[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4780[label="",style="solid", color="burlywood", weight=9]; 4780 -> 1543[label="",style="solid", color="burlywood", weight=3]; 4781[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4781[label="",style="solid", color="burlywood", weight=9]; 4781 -> 1544[label="",style="solid", color="burlywood", weight=3]; 2401[label="xuu31",fontsize=16,color="green",shape="box"];2402[label="xuu36",fontsize=16,color="green",shape="box"];2403[label="xuu31",fontsize=16,color="green",shape="box"];2404[label="xuu36",fontsize=16,color="green",shape="box"];2405[label="xuu31",fontsize=16,color="green",shape="box"];2406[label="xuu36",fontsize=16,color="green",shape="box"];2407[label="xuu31",fontsize=16,color="green",shape="box"];2408[label="xuu36",fontsize=16,color="green",shape="box"];2409[label="xuu31",fontsize=16,color="green",shape="box"];2410[label="xuu36",fontsize=16,color="green",shape="box"];2411[label="xuu31",fontsize=16,color="green",shape="box"];2412[label="xuu36",fontsize=16,color="green",shape="box"];2413[label="xuu31",fontsize=16,color="green",shape="box"];2414[label="xuu36",fontsize=16,color="green",shape="box"];2415[label="xuu31",fontsize=16,color="green",shape="box"];2416[label="xuu36",fontsize=16,color="green",shape="box"];2417[label="xuu31",fontsize=16,color="green",shape="box"];2418[label="xuu36",fontsize=16,color="green",shape="box"];2419[label="xuu31",fontsize=16,color="green",shape="box"];2420[label="xuu36",fontsize=16,color="green",shape="box"];2421[label="xuu31",fontsize=16,color="green",shape="box"];2422[label="xuu36",fontsize=16,color="green",shape="box"];2423[label="xuu31",fontsize=16,color="green",shape="box"];2424[label="xuu36",fontsize=16,color="green",shape="box"];2425[label="xuu31",fontsize=16,color="green",shape="box"];2426[label="xuu36",fontsize=16,color="green",shape="box"];2427[label="xuu31",fontsize=16,color="green",shape="box"];2428[label="xuu36",fontsize=16,color="green",shape="box"];1302[label="primMulInt (Pos xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1302 -> 1435[label="",style="solid", color="black", weight=3]; 1303[label="primMulInt (Pos xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1303 -> 1436[label="",style="solid", color="black", weight=3]; 1304[label="primMulInt (Neg xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1304 -> 1437[label="",style="solid", color="black", weight=3]; 1305[label="primMulInt (Neg xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1305 -> 1438[label="",style="solid", color="black", weight=3]; 3201[label="compare (xuu47000 : xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4782[label="xuu4800/xuu48000 : xuu48001",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4782[label="",style="solid", color="burlywood", weight=9]; 4782 -> 3251[label="",style="solid", color="burlywood", weight=3]; 4783[label="xuu4800/[]",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4783[label="",style="solid", color="burlywood", weight=9]; 4783 -> 3252[label="",style="solid", color="burlywood", weight=3]; 3202[label="compare [] xuu4800",fontsize=16,color="burlywood",shape="box"];4784[label="xuu4800/xuu48000 : xuu48001",fontsize=10,color="white",style="solid",shape="box"];3202 -> 4784[label="",style="solid", color="burlywood", weight=9]; 4784 -> 3253[label="",style="solid", color="burlywood", weight=3]; 4785[label="xuu4800/[]",fontsize=10,color="white",style="solid",shape="box"];3202 -> 4785[label="",style="solid", color="burlywood", weight=9]; 4785 -> 3254[label="",style="solid", color="burlywood", weight=3]; 3203 -> 3255[label="",style="dashed", color="red", weight=0]; 3203[label="not (xuu190 == GT)",fontsize=16,color="magenta"];3203 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3204[label="True",fontsize=16,color="green",shape="box"];3205[label="True",fontsize=16,color="green",shape="box"];3206[label="True",fontsize=16,color="green",shape="box"];3207[label="False",fontsize=16,color="green",shape="box"];3208[label="True",fontsize=16,color="green",shape="box"];3209[label="True",fontsize=16,color="green",shape="box"];3210[label="False",fontsize=16,color="green",shape="box"];3211[label="False",fontsize=16,color="green",shape="box"];3212[label="True",fontsize=16,color="green",shape="box"];3213 -> 3320[label="",style="dashed", color="red", weight=0]; 3213[label="xuu47000 < xuu48000 || xuu47000 == xuu48000 && xuu47001 <= xuu48001",fontsize=16,color="magenta"];3213 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3214[label="compare (xuu47000 :% xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4786[label="xuu4800/xuu48000 :% xuu48001",fontsize=10,color="white",style="solid",shape="box"];3214 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 3262[label="",style="solid", color="burlywood", weight=3]; 3215[label="primCmpDouble xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4787[label="xuu4700/Double xuu47000 xuu47001",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 3263[label="",style="solid", color="burlywood", weight=3]; 3216[label="primCmpChar xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4788[label="xuu4700/Char xuu47000",fontsize=10,color="white",style="solid",shape="box"];3216 -> 4788[label="",style="solid", color="burlywood", weight=9]; 4788 -> 3264[label="",style="solid", color="burlywood", weight=3]; 3217[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4789[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4789[label="",style="solid", color="blue", weight=9]; 4789 -> 3265[label="",style="solid", color="blue", weight=3]; 4790[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4790[label="",style="solid", color="blue", weight=9]; 4790 -> 3266[label="",style="solid", color="blue", weight=3]; 4791[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4791[label="",style="solid", color="blue", weight=9]; 4791 -> 3267[label="",style="solid", color="blue", weight=3]; 4792[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4792[label="",style="solid", color="blue", weight=9]; 4792 -> 3268[label="",style="solid", color="blue", weight=3]; 4793[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4793[label="",style="solid", color="blue", weight=9]; 4793 -> 3269[label="",style="solid", color="blue", weight=3]; 4794[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4794[label="",style="solid", color="blue", weight=9]; 4794 -> 3270[label="",style="solid", color="blue", weight=3]; 4795[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4795[label="",style="solid", color="blue", weight=9]; 4795 -> 3271[label="",style="solid", color="blue", weight=3]; 4796[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4796[label="",style="solid", color="blue", weight=9]; 4796 -> 3272[label="",style="solid", color="blue", weight=3]; 4797[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4797[label="",style="solid", color="blue", weight=9]; 4797 -> 3273[label="",style="solid", color="blue", weight=3]; 4798[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4798[label="",style="solid", color="blue", weight=9]; 4798 -> 3274[label="",style="solid", color="blue", weight=3]; 4799[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4799[label="",style="solid", color="blue", weight=9]; 4799 -> 3275[label="",style="solid", color="blue", weight=3]; 4800[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4800[label="",style="solid", color="blue", weight=9]; 4800 -> 3276[label="",style="solid", color="blue", weight=3]; 4801[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4801[label="",style="solid", color="blue", weight=9]; 4801 -> 3277[label="",style="solid", color="blue", weight=3]; 4802[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4802[label="",style="solid", color="blue", weight=9]; 4802 -> 3278[label="",style="solid", color="blue", weight=3]; 3218[label="True",fontsize=16,color="green",shape="box"];3219[label="False",fontsize=16,color="green",shape="box"];3220[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4803[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4803[label="",style="solid", color="blue", weight=9]; 4803 -> 3279[label="",style="solid", color="blue", weight=3]; 4804[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 3280[label="",style="solid", color="blue", weight=3]; 4805[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 3281[label="",style="solid", color="blue", weight=3]; 4806[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 3282[label="",style="solid", color="blue", weight=3]; 4807[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 3283[label="",style="solid", color="blue", weight=3]; 4808[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 3284[label="",style="solid", color="blue", weight=3]; 4809[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 3285[label="",style="solid", color="blue", weight=3]; 4810[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 3286[label="",style="solid", color="blue", weight=3]; 4811[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 3287[label="",style="solid", color="blue", weight=3]; 4812[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 3288[label="",style="solid", color="blue", weight=3]; 4813[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 3289[label="",style="solid", color="blue", weight=3]; 4814[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 3290[label="",style="solid", color="blue", weight=3]; 4815[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 3291[label="",style="solid", color="blue", weight=3]; 4816[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 3292[label="",style="solid", color="blue", weight=3]; 3221 -> 3320[label="",style="dashed", color="red", weight=0]; 3221[label="xuu47000 < xuu48000 || xuu47000 == xuu48000 && (xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002)",fontsize=16,color="magenta"];3221 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3222[label="compare (Integer xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];4817[label="xuu4800/Integer xuu48000",fontsize=10,color="white",style="solid",shape="box"];3222 -> 4817[label="",style="solid", color="burlywood", weight=9]; 4817 -> 3293[label="",style="solid", color="burlywood", weight=3]; 3223[label="True",fontsize=16,color="green",shape="box"];3224[label="True",fontsize=16,color="green",shape="box"];3225[label="False",fontsize=16,color="green",shape="box"];3226[label="True",fontsize=16,color="green",shape="box"];3227[label="xuu4700",fontsize=16,color="green",shape="box"];3228[label="xuu4800",fontsize=16,color="green",shape="box"];1321[label="compare xuu47 xuu48",fontsize=16,color="black",shape="triangle"];1321 -> 1492[label="",style="solid", color="black", weight=3]; 3245[label="True",fontsize=16,color="green",shape="box"];3246[label="True",fontsize=16,color="green",shape="box"];3247[label="False",fontsize=16,color="green",shape="box"];3248[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4818[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 3294[label="",style="solid", color="blue", weight=3]; 4819[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 3295[label="",style="solid", color="blue", weight=3]; 4820[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 3296[label="",style="solid", color="blue", weight=3]; 4821[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 3297[label="",style="solid", color="blue", weight=3]; 4822[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 3298[label="",style="solid", color="blue", weight=3]; 4823[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 3299[label="",style="solid", color="blue", weight=3]; 4824[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 3300[label="",style="solid", color="blue", weight=3]; 4825[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 3301[label="",style="solid", color="blue", weight=3]; 4826[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 3302[label="",style="solid", color="blue", weight=3]; 4827[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 3303[label="",style="solid", color="blue", weight=3]; 4828[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 3304[label="",style="solid", color="blue", weight=3]; 4829[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 3305[label="",style="solid", color="blue", weight=3]; 4830[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 3306[label="",style="solid", color="blue", weight=3]; 4831[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3248 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 3307[label="",style="solid", color="blue", weight=3]; 3229[label="compare () xuu4800",fontsize=16,color="burlywood",shape="box"];4832[label="xuu4800/()",fontsize=10,color="white",style="solid",shape="box"];3229 -> 4832[label="",style="solid", color="burlywood", weight=9]; 4832 -> 3308[label="",style="solid", color="burlywood", weight=3]; 3230[label="primCmpFloat xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4833[label="xuu4700/Float xuu47000 xuu47001",fontsize=10,color="white",style="solid",shape="box"];3230 -> 4833[label="",style="solid", color="burlywood", weight=9]; 4833 -> 3309[label="",style="solid", color="burlywood", weight=3]; 3249[label="GT",fontsize=16,color="green",shape="box"];3250[label="GT",fontsize=16,color="green",shape="box"];1523[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1523 -> 1650[label="",style="solid", color="black", weight=3]; 1524[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1524 -> 1651[label="",style="solid", color="black", weight=3]; 1868[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1868 -> 1888[label="",style="solid", color="black", weight=3]; 1869[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1869 -> 1889[label="",style="solid", color="black", weight=3]; 1870[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1843[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];1843 -> 1854[label="",style="solid", color="black", weight=3]; 1871[label="GT",fontsize=16,color="green",shape="box"];1872 -> 1321[label="",style="dashed", color="red", weight=0]; 1872[label="compare xuu124 xuu123",fontsize=16,color="magenta"];1872 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1834[label="",style="dashed", color="red", weight=0]; 1831[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1831 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1830[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu121",fontsize=16,color="burlywood",shape="triangle"];4834[label="xuu121/False",fontsize=10,color="white",style="solid",shape="box"];1830 -> 4834[label="",style="solid", color="burlywood", weight=9]; 4834 -> 1852[label="",style="solid", color="burlywood", weight=3]; 4835[label="xuu121/True",fontsize=10,color="white",style="solid",shape="box"];1830 -> 4835[label="",style="solid", color="burlywood", weight=9]; 4835 -> 1853[label="",style="solid", color="burlywood", weight=3]; 1532[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 FiniteMap.EmptyFM xuu50 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1532 -> 1659[label="",style="solid", color="black", weight=3]; 1533[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1533 -> 1660[label="",style="solid", color="black", weight=3]; 4365[label="FiniteMap.mkBranchUnbox xuu262 xuu260 xuu263 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263 + FiniteMap.mkBranchRight_size xuu262 xuu260 xuu263)",fontsize=16,color="black",shape="box"];4365 -> 4366[label="",style="solid", color="black", weight=3]; 1535[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1535 -> 1662[label="",style="solid", color="black", weight=3]; 1536[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1536 -> 1663[label="",style="solid", color="black", weight=3]; 1873 -> 1845[label="",style="dashed", color="red", weight=0]; 1873[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];1873 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1834[label="",style="dashed", color="red", weight=0]; 1865[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1865 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1864[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu127",fontsize=16,color="burlywood",shape="triangle"];4836[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1864 -> 4836[label="",style="solid", color="burlywood", weight=9]; 4836 -> 1876[label="",style="solid", color="burlywood", weight=3]; 4837[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1864 -> 4837[label="",style="solid", color="burlywood", weight=9]; 4837 -> 1877[label="",style="solid", color="burlywood", weight=3]; 1543[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 FiniteMap.EmptyFM xuu42 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1543 -> 1670[label="",style="solid", color="black", weight=3]; 1544[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1544 -> 1671[label="",style="solid", color="black", weight=3]; 1435[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1435 -> 1546[label="",style="dashed", color="green", weight=3]; 1436[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1436 -> 1547[label="",style="dashed", color="green", weight=3]; 1437[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1437 -> 1548[label="",style="dashed", color="green", weight=3]; 1438[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1438 -> 1549[label="",style="dashed", color="green", weight=3]; 3251[label="compare (xuu47000 : xuu47001) (xuu48000 : xuu48001)",fontsize=16,color="black",shape="box"];3251 -> 3310[label="",style="solid", color="black", weight=3]; 3252[label="compare (xuu47000 : xuu47001) []",fontsize=16,color="black",shape="box"];3252 -> 3311[label="",style="solid", color="black", weight=3]; 3253[label="compare [] (xuu48000 : xuu48001)",fontsize=16,color="black",shape="box"];3253 -> 3312[label="",style="solid", color="black", weight=3]; 3254[label="compare [] []",fontsize=16,color="black",shape="box"];3254 -> 3313[label="",style="solid", color="black", weight=3]; 3256 -> 63[label="",style="dashed", color="red", weight=0]; 3256[label="xuu190 == GT",fontsize=16,color="magenta"];3256 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3256 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3255[label="not xuu200",fontsize=16,color="burlywood",shape="triangle"];4838[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];3255 -> 4838[label="",style="solid", color="burlywood", weight=9]; 4838 -> 3316[label="",style="solid", color="burlywood", weight=3]; 4839[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];3255 -> 4839[label="",style="solid", color="burlywood", weight=9]; 4839 -> 3317[label="",style="solid", color="burlywood", weight=3]; 3321 -> 2596[label="",style="dashed", color="red", weight=0]; 3321[label="xuu47000 == xuu48000 && xuu47001 <= xuu48001",fontsize=16,color="magenta"];3321 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3322[label="xuu47000 < xuu48000",fontsize=16,color="blue",shape="box"];4840[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4840[label="",style="solid", color="blue", weight=9]; 4840 -> 3329[label="",style="solid", color="blue", weight=3]; 4841[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4841[label="",style="solid", color="blue", weight=9]; 4841 -> 3330[label="",style="solid", color="blue", weight=3]; 4842[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4842[label="",style="solid", color="blue", weight=9]; 4842 -> 3331[label="",style="solid", color="blue", weight=3]; 4843[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4843[label="",style="solid", color="blue", weight=9]; 4843 -> 3332[label="",style="solid", color="blue", weight=3]; 4844[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4844[label="",style="solid", color="blue", weight=9]; 4844 -> 3333[label="",style="solid", color="blue", weight=3]; 4845[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4845[label="",style="solid", color="blue", weight=9]; 4845 -> 3334[label="",style="solid", color="blue", weight=3]; 4846[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4846[label="",style="solid", color="blue", weight=9]; 4846 -> 3335[label="",style="solid", color="blue", weight=3]; 4847[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4847[label="",style="solid", color="blue", weight=9]; 4847 -> 3336[label="",style="solid", color="blue", weight=3]; 4848[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4848[label="",style="solid", color="blue", weight=9]; 4848 -> 3337[label="",style="solid", color="blue", weight=3]; 4849[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4849[label="",style="solid", color="blue", weight=9]; 4849 -> 3338[label="",style="solid", color="blue", weight=3]; 4850[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4850[label="",style="solid", color="blue", weight=9]; 4850 -> 3339[label="",style="solid", color="blue", weight=3]; 4851[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 3340[label="",style="solid", color="blue", weight=3]; 4852[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 3341[label="",style="solid", color="blue", weight=3]; 4853[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 3342[label="",style="solid", color="blue", weight=3]; 3320[label="xuu205 || xuu206",fontsize=16,color="burlywood",shape="triangle"];4854[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4854[label="",style="solid", color="burlywood", weight=9]; 4854 -> 3343[label="",style="solid", color="burlywood", weight=3]; 4855[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4855[label="",style="solid", color="burlywood", weight=9]; 4855 -> 3344[label="",style="solid", color="burlywood", weight=3]; 3262[label="compare (xuu47000 :% xuu47001) (xuu48000 :% xuu48001)",fontsize=16,color="black",shape="box"];3262 -> 3345[label="",style="solid", color="black", weight=3]; 3263[label="primCmpDouble (Double xuu47000 xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4856[label="xuu47001/Pos xuu470010",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4856[label="",style="solid", color="burlywood", weight=9]; 4856 -> 3346[label="",style="solid", color="burlywood", weight=3]; 4857[label="xuu47001/Neg xuu470010",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4857[label="",style="solid", color="burlywood", weight=9]; 4857 -> 3347[label="",style="solid", color="burlywood", weight=3]; 3264[label="primCmpChar (Char xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];4858[label="xuu4800/Char xuu48000",fontsize=10,color="white",style="solid",shape="box"];3264 -> 4858[label="",style="solid", color="burlywood", weight=9]; 4858 -> 3348[label="",style="solid", color="burlywood", weight=3]; 3265 -> 2958[label="",style="dashed", color="red", weight=0]; 3265[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3265 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3265 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3266 -> 2959[label="",style="dashed", color="red", weight=0]; 3266[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3266 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3266 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3267 -> 2960[label="",style="dashed", color="red", weight=0]; 3267[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3267 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3267 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3268 -> 2961[label="",style="dashed", color="red", weight=0]; 3268[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3268 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3268 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3269 -> 2962[label="",style="dashed", color="red", weight=0]; 3269[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3269 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3269 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3270 -> 2963[label="",style="dashed", color="red", weight=0]; 3270[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3270 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3270 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3271 -> 2964[label="",style="dashed", color="red", weight=0]; 3271[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3271 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3271 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3272 -> 2965[label="",style="dashed", color="red", weight=0]; 3272[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3272 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3272 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3273 -> 2966[label="",style="dashed", color="red", weight=0]; 3273[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3273 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3274 -> 2967[label="",style="dashed", color="red", weight=0]; 3274[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3274 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3275 -> 2968[label="",style="dashed", color="red", weight=0]; 3275[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3275 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3275 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3276 -> 2969[label="",style="dashed", color="red", weight=0]; 3276[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3276 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3276 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3277 -> 2970[label="",style="dashed", color="red", weight=0]; 3277[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3277 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3277 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3278 -> 2971[label="",style="dashed", color="red", weight=0]; 3278[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3278 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3279 -> 2958[label="",style="dashed", color="red", weight=0]; 3279[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3279 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3280 -> 2959[label="",style="dashed", color="red", weight=0]; 3280[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3280 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3281 -> 2960[label="",style="dashed", color="red", weight=0]; 3281[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3281 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3281 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3282 -> 2961[label="",style="dashed", color="red", weight=0]; 3282[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3282 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3283 -> 2962[label="",style="dashed", color="red", weight=0]; 3283[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3283 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3284 -> 2963[label="",style="dashed", color="red", weight=0]; 3284[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3284 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3285 -> 2964[label="",style="dashed", color="red", weight=0]; 3285[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3285 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3286 -> 2965[label="",style="dashed", color="red", weight=0]; 3286[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3286 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3287 -> 2966[label="",style="dashed", color="red", weight=0]; 3287[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3287 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3288 -> 2967[label="",style="dashed", color="red", weight=0]; 3288[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3288 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3289 -> 2968[label="",style="dashed", color="red", weight=0]; 3289[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3289 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3290 -> 2969[label="",style="dashed", color="red", weight=0]; 3290[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3290 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3291 -> 2970[label="",style="dashed", color="red", weight=0]; 3291[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3291 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3292 -> 2971[label="",style="dashed", color="red", weight=0]; 3292[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3292 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2596[label="",style="dashed", color="red", weight=0]; 3323[label="xuu47000 == xuu48000 && (xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002)",fontsize=16,color="magenta"];3323 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3324[label="xuu47000 < xuu48000",fontsize=16,color="blue",shape="box"];4859[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4859[label="",style="solid", color="blue", weight=9]; 4859 -> 3407[label="",style="solid", color="blue", weight=3]; 4860[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 3408[label="",style="solid", color="blue", weight=3]; 4861[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 3409[label="",style="solid", color="blue", weight=3]; 4862[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 3410[label="",style="solid", color="blue", weight=3]; 4863[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 3411[label="",style="solid", color="blue", weight=3]; 4864[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4864[label="",style="solid", color="blue", weight=9]; 4864 -> 3412[label="",style="solid", color="blue", weight=3]; 4865[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4865[label="",style="solid", color="blue", weight=9]; 4865 -> 3413[label="",style="solid", color="blue", weight=3]; 4866[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4866[label="",style="solid", color="blue", weight=9]; 4866 -> 3414[label="",style="solid", color="blue", weight=3]; 4867[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4867[label="",style="solid", color="blue", weight=9]; 4867 -> 3415[label="",style="solid", color="blue", weight=3]; 4868[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4868[label="",style="solid", color="blue", weight=9]; 4868 -> 3416[label="",style="solid", color="blue", weight=3]; 4869[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4869[label="",style="solid", color="blue", weight=9]; 4869 -> 3417[label="",style="solid", color="blue", weight=3]; 4870[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4870[label="",style="solid", color="blue", weight=9]; 4870 -> 3418[label="",style="solid", color="blue", weight=3]; 4871[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4871[label="",style="solid", color="blue", weight=9]; 4871 -> 3419[label="",style="solid", color="blue", weight=3]; 4872[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4872[label="",style="solid", color="blue", weight=9]; 4872 -> 3420[label="",style="solid", color="blue", weight=3]; 3293[label="compare (Integer xuu47000) (Integer xuu48000)",fontsize=16,color="black",shape="box"];3293 -> 3421[label="",style="solid", color="black", weight=3]; 1492[label="primCmpInt xuu47 xuu48",fontsize=16,color="burlywood",shape="triangle"];4873[label="xuu47/Pos xuu470",fontsize=10,color="white",style="solid",shape="box"];1492 -> 4873[label="",style="solid", color="burlywood", weight=9]; 4873 -> 1646[label="",style="solid", color="burlywood", weight=3]; 4874[label="xuu47/Neg xuu470",fontsize=10,color="white",style="solid",shape="box"];1492 -> 4874[label="",style="solid", color="burlywood", weight=9]; 4874 -> 1647[label="",style="solid", color="burlywood", weight=3]; 3294 -> 2958[label="",style="dashed", color="red", weight=0]; 3294[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3294 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3295 -> 2959[label="",style="dashed", color="red", weight=0]; 3295[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3295 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3296 -> 2960[label="",style="dashed", color="red", weight=0]; 3296[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3296 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3297 -> 2961[label="",style="dashed", color="red", weight=0]; 3297[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3297 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3298 -> 2962[label="",style="dashed", color="red", weight=0]; 3298[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3298 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3299 -> 2963[label="",style="dashed", color="red", weight=0]; 3299[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3299 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3299 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3300 -> 2964[label="",style="dashed", color="red", weight=0]; 3300[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3300 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3300 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3301 -> 2965[label="",style="dashed", color="red", weight=0]; 3301[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3301 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3301 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3302 -> 2966[label="",style="dashed", color="red", weight=0]; 3302[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3302 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3303 -> 2967[label="",style="dashed", color="red", weight=0]; 3303[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3303 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3303 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3304 -> 2968[label="",style="dashed", color="red", weight=0]; 3304[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3304 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3304 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3305 -> 2969[label="",style="dashed", color="red", weight=0]; 3305[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3305 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3305 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3306 -> 2970[label="",style="dashed", color="red", weight=0]; 3306[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3306 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3307 -> 2971[label="",style="dashed", color="red", weight=0]; 3307[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3307 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3308[label="compare () ()",fontsize=16,color="black",shape="box"];3308 -> 3450[label="",style="solid", color="black", weight=3]; 3309[label="primCmpFloat (Float xuu47000 xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4875[label="xuu47001/Pos xuu470010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4875[label="",style="solid", color="burlywood", weight=9]; 4875 -> 3451[label="",style="solid", color="burlywood", weight=3]; 4876[label="xuu47001/Neg xuu470010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4876[label="",style="solid", color="burlywood", weight=9]; 4876 -> 3452[label="",style="solid", color="burlywood", weight=3]; 1650 -> 1492[label="",style="dashed", color="red", weight=0]; 1650[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1650 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1492[label="",style="dashed", color="red", weight=0]; 1651[label="primCmpInt (primPlusInt xuu502 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1651 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1888[label="Pos Zero",fontsize=16,color="green",shape="box"];1889[label="xuu342",fontsize=16,color="green",shape="box"];1854 -> 1845[label="",style="dashed", color="red", weight=0]; 1854[label="FiniteMap.sizeFM xuu50",fontsize=16,color="magenta"];1854 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1890[label="xuu124",fontsize=16,color="green",shape="box"];1891[label="xuu123",fontsize=16,color="green",shape="box"];1844 -> 642[label="",style="dashed", color="red", weight=0]; 1844[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1844 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1852[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];1852 -> 1878[label="",style="solid", color="black", weight=3]; 1853[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];1853 -> 1879[label="",style="solid", color="black", weight=3]; 1659[label="error []",fontsize=16,color="red",shape="box"];1660[label="FiniteMap.mkBalBranch6MkBalBranch02 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1660 -> 1857[label="",style="solid", color="black", weight=3]; 4366[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263 + FiniteMap.mkBranchRight_size xuu262 xuu260 xuu263",fontsize=16,color="black",shape="box"];4366 -> 4367[label="",style="solid", color="black", weight=3]; 1662 -> 1492[label="",style="dashed", color="red", weight=0]; 1662[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1662 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1492[label="",style="dashed", color="red", weight=0]; 1663[label="primCmpInt (primPlusInt xuu422 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1663 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1892[label="xuu42",fontsize=16,color="green",shape="box"];1874 -> 1851[label="",style="dashed", color="red", weight=0]; 1874[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1875 -> 642[label="",style="dashed", color="red", weight=0]; 1875[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1875 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1876[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];1876 -> 1896[label="",style="solid", color="black", weight=3]; 1877[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];1877 -> 1897[label="",style="solid", color="black", weight=3]; 1670[label="error []",fontsize=16,color="red",shape="box"];1671[label="FiniteMap.mkBalBranch6MkBalBranch02 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1671 -> 1880[label="",style="solid", color="black", weight=3]; 1546[label="primMulNat xuu400010 xuu30000",fontsize=16,color="burlywood",shape="triangle"];4877[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4877[label="",style="solid", color="burlywood", weight=9]; 4877 -> 1673[label="",style="solid", color="burlywood", weight=3]; 4878[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4878[label="",style="solid", color="burlywood", weight=9]; 4878 -> 1674[label="",style="solid", color="burlywood", weight=3]; 1547 -> 1546[label="",style="dashed", color="red", weight=0]; 1547[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1547 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1546[label="",style="dashed", color="red", weight=0]; 1548[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1548 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1546[label="",style="dashed", color="red", weight=0]; 1549[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1549 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1678[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3453[label="",style="dashed", color="red", weight=0]; 3310[label="primCompAux xuu47000 xuu48000 (compare xuu47001 xuu48001)",fontsize=16,color="magenta"];3310 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3311[label="GT",fontsize=16,color="green",shape="box"];3312[label="LT",fontsize=16,color="green",shape="box"];3313[label="EQ",fontsize=16,color="green",shape="box"];3314[label="GT",fontsize=16,color="green",shape="box"];3315[label="xuu190",fontsize=16,color="green",shape="box"];3316[label="not False",fontsize=16,color="black",shape="box"];3316 -> 3455[label="",style="solid", color="black", weight=3]; 3317[label="not True",fontsize=16,color="black",shape="box"];3317 -> 3456[label="",style="solid", color="black", weight=3]; 3327[label="xuu47000 == xuu48000",fontsize=16,color="blue",shape="box"];4879[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4879[label="",style="solid", color="blue", weight=9]; 4879 -> 3457[label="",style="solid", color="blue", weight=3]; 4880[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 3458[label="",style="solid", color="blue", weight=3]; 4881[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 3459[label="",style="solid", color="blue", weight=3]; 4882[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 3460[label="",style="solid", color="blue", weight=3]; 4883[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 3461[label="",style="solid", color="blue", weight=3]; 4884[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 3462[label="",style="solid", color="blue", weight=3]; 4885[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 3463[label="",style="solid", color="blue", weight=3]; 4886[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 3464[label="",style="solid", color="blue", weight=3]; 4887[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 3465[label="",style="solid", color="blue", weight=3]; 4888[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 3466[label="",style="solid", color="blue", weight=3]; 4889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 3467[label="",style="solid", color="blue", weight=3]; 4890[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 3468[label="",style="solid", color="blue", weight=3]; 4891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 3469[label="",style="solid", color="blue", weight=3]; 4892[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3327 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 3470[label="",style="solid", color="blue", weight=3]; 3328[label="xuu47001 <= xuu48001",fontsize=16,color="blue",shape="box"];4893[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 3471[label="",style="solid", color="blue", weight=3]; 4894[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 3472[label="",style="solid", color="blue", weight=3]; 4895[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 3473[label="",style="solid", color="blue", weight=3]; 4896[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 3474[label="",style="solid", color="blue", weight=3]; 4897[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 3475[label="",style="solid", color="blue", weight=3]; 4898[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 3476[label="",style="solid", color="blue", weight=3]; 4899[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 3477[label="",style="solid", color="blue", weight=3]; 4900[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 3478[label="",style="solid", color="blue", weight=3]; 4901[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 3479[label="",style="solid", color="blue", weight=3]; 4902[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 3480[label="",style="solid", color="blue", weight=3]; 4903[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 3481[label="",style="solid", color="blue", weight=3]; 4904[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 3482[label="",style="solid", color="blue", weight=3]; 4905[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 3483[label="",style="solid", color="blue", weight=3]; 4906[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3328 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 3484[label="",style="solid", color="blue", weight=3]; 3329[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3329 -> 3485[label="",style="solid", color="black", weight=3]; 3330[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3330 -> 3486[label="",style="solid", color="black", weight=3]; 3331[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3331 -> 3487[label="",style="solid", color="black", weight=3]; 3332[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3332 -> 3488[label="",style="solid", color="black", weight=3]; 3333[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3333 -> 3489[label="",style="solid", color="black", weight=3]; 3334[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3334 -> 3490[label="",style="solid", color="black", weight=3]; 3335[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3335 -> 3491[label="",style="solid", color="black", weight=3]; 3336[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3336 -> 3492[label="",style="solid", color="black", weight=3]; 3337[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3337 -> 3493[label="",style="solid", color="black", weight=3]; 3338[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3338 -> 3494[label="",style="solid", color="black", weight=3]; 3339 -> 1464[label="",style="dashed", color="red", weight=0]; 3339[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3339 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3339 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3340[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3340 -> 3497[label="",style="solid", color="black", weight=3]; 3341[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3341 -> 3498[label="",style="solid", color="black", weight=3]; 3342[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3342 -> 3499[label="",style="solid", color="black", weight=3]; 3343[label="False || xuu206",fontsize=16,color="black",shape="box"];3343 -> 3500[label="",style="solid", color="black", weight=3]; 3344[label="True || xuu206",fontsize=16,color="black",shape="box"];3344 -> 3501[label="",style="solid", color="black", weight=3]; 3345[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="blue",shape="box"];4907[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3345 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 3502[label="",style="solid", color="blue", weight=3]; 4908[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3345 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 3503[label="",style="solid", color="blue", weight=3]; 3346[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4909[label="xuu4800/Double xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4909[label="",style="solid", color="burlywood", weight=9]; 4909 -> 3504[label="",style="solid", color="burlywood", weight=3]; 3347[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4910[label="xuu4800/Double xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3347 -> 4910[label="",style="solid", color="burlywood", weight=9]; 4910 -> 3505[label="",style="solid", color="burlywood", weight=3]; 3348[label="primCmpChar (Char xuu47000) (Char xuu48000)",fontsize=16,color="black",shape="box"];3348 -> 3506[label="",style="solid", color="black", weight=3]; 3349[label="xuu47000",fontsize=16,color="green",shape="box"];3350[label="xuu48000",fontsize=16,color="green",shape="box"];3351[label="xuu47000",fontsize=16,color="green",shape="box"];3352[label="xuu48000",fontsize=16,color="green",shape="box"];3353[label="xuu47000",fontsize=16,color="green",shape="box"];3354[label="xuu48000",fontsize=16,color="green",shape="box"];3355[label="xuu47000",fontsize=16,color="green",shape="box"];3356[label="xuu48000",fontsize=16,color="green",shape="box"];3357[label="xuu47000",fontsize=16,color="green",shape="box"];3358[label="xuu48000",fontsize=16,color="green",shape="box"];3359[label="xuu47000",fontsize=16,color="green",shape="box"];3360[label="xuu48000",fontsize=16,color="green",shape="box"];3361[label="xuu47000",fontsize=16,color="green",shape="box"];3362[label="xuu48000",fontsize=16,color="green",shape="box"];3363[label="xuu47000",fontsize=16,color="green",shape="box"];3364[label="xuu48000",fontsize=16,color="green",shape="box"];3365[label="xuu47000",fontsize=16,color="green",shape="box"];3366[label="xuu48000",fontsize=16,color="green",shape="box"];3367[label="xuu47000",fontsize=16,color="green",shape="box"];3368[label="xuu48000",fontsize=16,color="green",shape="box"];3369[label="xuu47000",fontsize=16,color="green",shape="box"];3370[label="xuu48000",fontsize=16,color="green",shape="box"];3371[label="xuu47000",fontsize=16,color="green",shape="box"];3372[label="xuu48000",fontsize=16,color="green",shape="box"];3373[label="xuu47000",fontsize=16,color="green",shape="box"];3374[label="xuu48000",fontsize=16,color="green",shape="box"];3375[label="xuu47000",fontsize=16,color="green",shape="box"];3376[label="xuu48000",fontsize=16,color="green",shape="box"];3377[label="xuu47000",fontsize=16,color="green",shape="box"];3378[label="xuu48000",fontsize=16,color="green",shape="box"];3379[label="xuu47000",fontsize=16,color="green",shape="box"];3380[label="xuu48000",fontsize=16,color="green",shape="box"];3381[label="xuu47000",fontsize=16,color="green",shape="box"];3382[label="xuu48000",fontsize=16,color="green",shape="box"];3383[label="xuu47000",fontsize=16,color="green",shape="box"];3384[label="xuu48000",fontsize=16,color="green",shape="box"];3385[label="xuu47000",fontsize=16,color="green",shape="box"];3386[label="xuu48000",fontsize=16,color="green",shape="box"];3387[label="xuu47000",fontsize=16,color="green",shape="box"];3388[label="xuu48000",fontsize=16,color="green",shape="box"];3389[label="xuu47000",fontsize=16,color="green",shape="box"];3390[label="xuu48000",fontsize=16,color="green",shape="box"];3391[label="xuu47000",fontsize=16,color="green",shape="box"];3392[label="xuu48000",fontsize=16,color="green",shape="box"];3393[label="xuu47000",fontsize=16,color="green",shape="box"];3394[label="xuu48000",fontsize=16,color="green",shape="box"];3395[label="xuu47000",fontsize=16,color="green",shape="box"];3396[label="xuu48000",fontsize=16,color="green",shape="box"];3397[label="xuu47000",fontsize=16,color="green",shape="box"];3398[label="xuu48000",fontsize=16,color="green",shape="box"];3399[label="xuu47000",fontsize=16,color="green",shape="box"];3400[label="xuu48000",fontsize=16,color="green",shape="box"];3401[label="xuu47000",fontsize=16,color="green",shape="box"];3402[label="xuu48000",fontsize=16,color="green",shape="box"];3403[label="xuu47000",fontsize=16,color="green",shape="box"];3404[label="xuu48000",fontsize=16,color="green",shape="box"];3405[label="xuu47000 == xuu48000",fontsize=16,color="blue",shape="box"];4911[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4911[label="",style="solid", color="blue", weight=9]; 4911 -> 3507[label="",style="solid", color="blue", weight=3]; 4912[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4912[label="",style="solid", color="blue", weight=9]; 4912 -> 3508[label="",style="solid", color="blue", weight=3]; 4913[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4913[label="",style="solid", color="blue", weight=9]; 4913 -> 3509[label="",style="solid", color="blue", weight=3]; 4914[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4914[label="",style="solid", color="blue", weight=9]; 4914 -> 3510[label="",style="solid", color="blue", weight=3]; 4915[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4915[label="",style="solid", color="blue", weight=9]; 4915 -> 3511[label="",style="solid", color="blue", weight=3]; 4916[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4916[label="",style="solid", color="blue", weight=9]; 4916 -> 3512[label="",style="solid", color="blue", weight=3]; 4917[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4917[label="",style="solid", color="blue", weight=9]; 4917 -> 3513[label="",style="solid", color="blue", weight=3]; 4918[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4918[label="",style="solid", color="blue", weight=9]; 4918 -> 3514[label="",style="solid", color="blue", weight=3]; 4919[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4919[label="",style="solid", color="blue", weight=9]; 4919 -> 3515[label="",style="solid", color="blue", weight=3]; 4920[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4920[label="",style="solid", color="blue", weight=9]; 4920 -> 3516[label="",style="solid", color="blue", weight=3]; 4921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4921[label="",style="solid", color="blue", weight=9]; 4921 -> 3517[label="",style="solid", color="blue", weight=3]; 4922[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4922[label="",style="solid", color="blue", weight=9]; 4922 -> 3518[label="",style="solid", color="blue", weight=3]; 4923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4923[label="",style="solid", color="blue", weight=9]; 4923 -> 3519[label="",style="solid", color="blue", weight=3]; 4924[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3405 -> 4924[label="",style="solid", color="blue", weight=9]; 4924 -> 3520[label="",style="solid", color="blue", weight=3]; 3406 -> 3320[label="",style="dashed", color="red", weight=0]; 3406[label="xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002",fontsize=16,color="magenta"];3406 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3329[label="",style="dashed", color="red", weight=0]; 3407[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3407 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3330[label="",style="dashed", color="red", weight=0]; 3408[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3408 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3409 -> 3331[label="",style="dashed", color="red", weight=0]; 3409[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3409 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3409 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3410 -> 3332[label="",style="dashed", color="red", weight=0]; 3410[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3410 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3410 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3333[label="",style="dashed", color="red", weight=0]; 3411[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3411 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3334[label="",style="dashed", color="red", weight=0]; 3412[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3412 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3413 -> 3335[label="",style="dashed", color="red", weight=0]; 3413[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3413 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3413 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3414 -> 3336[label="",style="dashed", color="red", weight=0]; 3414[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3414 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3414 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3337[label="",style="dashed", color="red", weight=0]; 3415[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3415 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3338[label="",style="dashed", color="red", weight=0]; 3416[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3416 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3417 -> 1464[label="",style="dashed", color="red", weight=0]; 3417[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3417 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3417 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3340[label="",style="dashed", color="red", weight=0]; 3418[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3418 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3341[label="",style="dashed", color="red", weight=0]; 3419[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3419 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3420 -> 3342[label="",style="dashed", color="red", weight=0]; 3420[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3420 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3420 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3421 -> 1492[label="",style="dashed", color="red", weight=0]; 3421[label="primCmpInt xuu47000 xuu48000",fontsize=16,color="magenta"];3421 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3421 -> 3552[label="",style="dashed", color="magenta", weight=3]; 1646[label="primCmpInt (Pos xuu470) xuu48",fontsize=16,color="burlywood",shape="box"];4925[label="xuu470/Succ xuu4700",fontsize=10,color="white",style="solid",shape="box"];1646 -> 4925[label="",style="solid", color="burlywood", weight=9]; 4925 -> 1816[label="",style="solid", color="burlywood", weight=3]; 4926[label="xuu470/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 4926[label="",style="solid", color="burlywood", weight=9]; 4926 -> 1817[label="",style="solid", color="burlywood", weight=3]; 1647[label="primCmpInt (Neg xuu470) xuu48",fontsize=16,color="burlywood",shape="box"];4927[label="xuu470/Succ xuu4700",fontsize=10,color="white",style="solid",shape="box"];1647 -> 4927[label="",style="solid", color="burlywood", weight=9]; 4927 -> 1818[label="",style="solid", color="burlywood", weight=3]; 4928[label="xuu470/Zero",fontsize=10,color="white",style="solid",shape="box"];1647 -> 4928[label="",style="solid", color="burlywood", weight=9]; 4928 -> 1819[label="",style="solid", color="burlywood", weight=3]; 3422[label="xuu47000",fontsize=16,color="green",shape="box"];3423[label="xuu48000",fontsize=16,color="green",shape="box"];3424[label="xuu47000",fontsize=16,color="green",shape="box"];3425[label="xuu48000",fontsize=16,color="green",shape="box"];3426[label="xuu47000",fontsize=16,color="green",shape="box"];3427[label="xuu48000",fontsize=16,color="green",shape="box"];3428[label="xuu47000",fontsize=16,color="green",shape="box"];3429[label="xuu48000",fontsize=16,color="green",shape="box"];3430[label="xuu47000",fontsize=16,color="green",shape="box"];3431[label="xuu48000",fontsize=16,color="green",shape="box"];3432[label="xuu47000",fontsize=16,color="green",shape="box"];3433[label="xuu48000",fontsize=16,color="green",shape="box"];3434[label="xuu47000",fontsize=16,color="green",shape="box"];3435[label="xuu48000",fontsize=16,color="green",shape="box"];3436[label="xuu47000",fontsize=16,color="green",shape="box"];3437[label="xuu48000",fontsize=16,color="green",shape="box"];3438[label="xuu47000",fontsize=16,color="green",shape="box"];3439[label="xuu48000",fontsize=16,color="green",shape="box"];3440[label="xuu47000",fontsize=16,color="green",shape="box"];3441[label="xuu48000",fontsize=16,color="green",shape="box"];3442[label="xuu47000",fontsize=16,color="green",shape="box"];3443[label="xuu48000",fontsize=16,color="green",shape="box"];3444[label="xuu47000",fontsize=16,color="green",shape="box"];3445[label="xuu48000",fontsize=16,color="green",shape="box"];3446[label="xuu47000",fontsize=16,color="green",shape="box"];3447[label="xuu48000",fontsize=16,color="green",shape="box"];3448[label="xuu47000",fontsize=16,color="green",shape="box"];3449[label="xuu48000",fontsize=16,color="green",shape="box"];3450[label="EQ",fontsize=16,color="green",shape="box"];3451[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4929[label="xuu4800/Float xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3451 -> 4929[label="",style="solid", color="burlywood", weight=9]; 4929 -> 3553[label="",style="solid", color="burlywood", weight=3]; 3452[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4930[label="xuu4800/Float xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3452 -> 4930[label="",style="solid", color="burlywood", weight=9]; 4930 -> 3554[label="",style="solid", color="burlywood", weight=3]; 1823 -> 1996[label="",style="dashed", color="red", weight=0]; 1823[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)",fontsize=16,color="magenta"];1823 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1823 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1824[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1825 -> 1996[label="",style="dashed", color="red", weight=0]; 1825[label="primPlusInt xuu502 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)",fontsize=16,color="magenta"];1825 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1826[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1893[label="xuu50",fontsize=16,color="green",shape="box"];1855 -> 1846[label="",style="dashed", color="red", weight=0]; 1855[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1856 -> 1835[label="",style="dashed", color="red", weight=0]; 1856[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1878[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 otherwise",fontsize=16,color="black",shape="box"];1878 -> 2014[label="",style="solid", color="black", weight=3]; 1879[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 xuu50 xuu34 xuu50 xuu34 xuu50",fontsize=16,color="burlywood",shape="box"];4931[label="xuu50/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1879 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 2015[label="",style="solid", color="burlywood", weight=3]; 4932[label="xuu50/FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=10,color="white",style="solid",shape="box"];1879 -> 4932[label="",style="solid", color="burlywood", weight=9]; 4932 -> 2016[label="",style="solid", color="burlywood", weight=3]; 1857 -> 2017[label="",style="dashed", color="red", weight=0]; 1857[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1857 -> 2018[label="",style="dashed", color="magenta", weight=3]; 4367 -> 1996[label="",style="dashed", color="red", weight=0]; 4367[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263) (FiniteMap.mkBranchRight_size xuu262 xuu260 xuu263)",fontsize=16,color="magenta"];4367 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4367 -> 4369[label="",style="dashed", color="magenta", weight=3]; 1859 -> 1996[label="",style="dashed", color="red", weight=0]; 1859[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)",fontsize=16,color="magenta"];1859 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1860[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1861 -> 1996[label="",style="dashed", color="red", weight=0]; 1861[label="primPlusInt xuu422 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)",fontsize=16,color="magenta"];1861 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1862[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1894 -> 1846[label="",style="dashed", color="red", weight=0]; 1894[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1895 -> 1837[label="",style="dashed", color="red", weight=0]; 1895[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1896[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 otherwise",fontsize=16,color="black",shape="box"];1896 -> 2023[label="",style="solid", color="black", weight=3]; 1897[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 xuu42 xuu34 xuu42 xuu34 xuu42",fontsize=16,color="burlywood",shape="box"];4933[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1897 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 2024[label="",style="solid", color="burlywood", weight=3]; 4934[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1897 -> 4934[label="",style="solid", color="burlywood", weight=9]; 4934 -> 2025[label="",style="solid", color="burlywood", weight=3]; 1880 -> 2026[label="",style="dashed", color="red", weight=0]; 1880[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1880 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1673[label="primMulNat (Succ xuu4000100) xuu30000",fontsize=16,color="burlywood",shape="box"];4935[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1673 -> 4935[label="",style="solid", color="burlywood", weight=9]; 4935 -> 1882[label="",style="solid", color="burlywood", weight=3]; 4936[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1673 -> 4936[label="",style="solid", color="burlywood", weight=9]; 4936 -> 1883[label="",style="solid", color="burlywood", weight=3]; 1674[label="primMulNat Zero xuu30000",fontsize=16,color="burlywood",shape="box"];4937[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1674 -> 4937[label="",style="solid", color="burlywood", weight=9]; 4937 -> 1884[label="",style="solid", color="burlywood", weight=3]; 4938[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1674 -> 4938[label="",style="solid", color="burlywood", weight=9]; 4938 -> 1885[label="",style="solid", color="burlywood", weight=3]; 1675[label="xuu30000",fontsize=16,color="green",shape="box"];1676[label="xuu400010",fontsize=16,color="green",shape="box"];1677[label="xuu400010",fontsize=16,color="green",shape="box"];1678[label="xuu30000",fontsize=16,color="green",shape="box"];3454 -> 3187[label="",style="dashed", color="red", weight=0]; 3454[label="compare xuu47001 xuu48001",fontsize=16,color="magenta"];3454 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3453[label="primCompAux xuu47000 xuu48000 xuu207",fontsize=16,color="black",shape="triangle"];3453 -> 3557[label="",style="solid", color="black", weight=3]; 3455[label="True",fontsize=16,color="green",shape="box"];3456[label="False",fontsize=16,color="green",shape="box"];3457 -> 2205[label="",style="dashed", color="red", weight=0]; 3457[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3457 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3458 -> 63[label="",style="dashed", color="red", weight=0]; 3458[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3458 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2202[label="",style="dashed", color="red", weight=0]; 3459[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3459 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3460 -> 2206[label="",style="dashed", color="red", weight=0]; 3460[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3460 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2209[label="",style="dashed", color="red", weight=0]; 3461[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3461 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2208[label="",style="dashed", color="red", weight=0]; 3462[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3462 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2201[label="",style="dashed", color="red", weight=0]; 3463[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3463 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2199[label="",style="dashed", color="red", weight=0]; 3464[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3464 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3465 -> 2211[label="",style="dashed", color="red", weight=0]; 3465[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3465 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3466 -> 2207[label="",style="dashed", color="red", weight=0]; 3466[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3466 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2200[label="",style="dashed", color="red", weight=0]; 3467[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3467 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2210[label="",style="dashed", color="red", weight=0]; 3468[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3468 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2204[label="",style="dashed", color="red", weight=0]; 3469[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3469 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2198[label="",style="dashed", color="red", weight=0]; 3470[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3470 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2958[label="",style="dashed", color="red", weight=0]; 3471[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3471 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2959[label="",style="dashed", color="red", weight=0]; 3472[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3472 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2960[label="",style="dashed", color="red", weight=0]; 3473[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3473 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3474 -> 2961[label="",style="dashed", color="red", weight=0]; 3474[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3474 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3475 -> 2962[label="",style="dashed", color="red", weight=0]; 3475[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3475 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3476 -> 2963[label="",style="dashed", color="red", weight=0]; 3476[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3476 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3477 -> 2964[label="",style="dashed", color="red", weight=0]; 3477[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3477 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3478 -> 2965[label="",style="dashed", color="red", weight=0]; 3478[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3478 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3479 -> 2966[label="",style="dashed", color="red", weight=0]; 3479[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3479 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3480 -> 2967[label="",style="dashed", color="red", weight=0]; 3480[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3480 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3481 -> 2968[label="",style="dashed", color="red", weight=0]; 3481[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3481 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3482 -> 2969[label="",style="dashed", color="red", weight=0]; 3482[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3482 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3483 -> 2970[label="",style="dashed", color="red", weight=0]; 3483[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3483 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3484 -> 2971[label="",style="dashed", color="red", weight=0]; 3484[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3484 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3485 -> 63[label="",style="dashed", color="red", weight=0]; 3485[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3485 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3486 -> 63[label="",style="dashed", color="red", weight=0]; 3486[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3486 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3487 -> 63[label="",style="dashed", color="red", weight=0]; 3487[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3487 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3488 -> 63[label="",style="dashed", color="red", weight=0]; 3488[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3488 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3489 -> 63[label="",style="dashed", color="red", weight=0]; 3489[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3489 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3490 -> 63[label="",style="dashed", color="red", weight=0]; 3490[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3490 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3490 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3491 -> 63[label="",style="dashed", color="red", weight=0]; 3491[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3491 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3491 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3492 -> 63[label="",style="dashed", color="red", weight=0]; 3492[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3492 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3492 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3493 -> 63[label="",style="dashed", color="red", weight=0]; 3493[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3493 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3494 -> 63[label="",style="dashed", color="red", weight=0]; 3494[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3494 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3494 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3495[label="xuu47000",fontsize=16,color="green",shape="box"];3496[label="xuu48000",fontsize=16,color="green",shape="box"];1464[label="xuu470 < xuu480",fontsize=16,color="black",shape="triangle"];1464 -> 1564[label="",style="solid", color="black", weight=3]; 3497 -> 63[label="",style="dashed", color="red", weight=0]; 3497[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3497 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3498 -> 63[label="",style="dashed", color="red", weight=0]; 3498[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3498 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3499 -> 63[label="",style="dashed", color="red", weight=0]; 3499[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3499 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3499 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3500[label="xuu206",fontsize=16,color="green",shape="box"];3501[label="True",fontsize=16,color="green",shape="box"];3502 -> 3191[label="",style="dashed", color="red", weight=0]; 3502[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="magenta"];3502 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3503 -> 1321[label="",style="dashed", color="red", weight=0]; 3503[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="magenta"];3503 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3504[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4939[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3504 -> 4939[label="",style="solid", color="burlywood", weight=9]; 4939 -> 3662[label="",style="solid", color="burlywood", weight=3]; 4940[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3504 -> 4940[label="",style="solid", color="burlywood", weight=9]; 4940 -> 3663[label="",style="solid", color="burlywood", weight=3]; 3505[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4941[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3505 -> 4941[label="",style="solid", color="burlywood", weight=9]; 4941 -> 3664[label="",style="solid", color="burlywood", weight=3]; 4942[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3505 -> 4942[label="",style="solid", color="burlywood", weight=9]; 4942 -> 3665[label="",style="solid", color="burlywood", weight=3]; 3506 -> 2495[label="",style="dashed", color="red", weight=0]; 3506[label="primCmpNat xuu47000 xuu48000",fontsize=16,color="magenta"];3506 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3507 -> 2205[label="",style="dashed", color="red", weight=0]; 3507[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3507 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3507 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3508 -> 63[label="",style="dashed", color="red", weight=0]; 3508[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3508 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3509 -> 2202[label="",style="dashed", color="red", weight=0]; 3509[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3509 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3510 -> 2206[label="",style="dashed", color="red", weight=0]; 3510[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3510 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3511 -> 2209[label="",style="dashed", color="red", weight=0]; 3511[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3511 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3512 -> 2208[label="",style="dashed", color="red", weight=0]; 3512[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3512 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3513 -> 2201[label="",style="dashed", color="red", weight=0]; 3513[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3513 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3514 -> 2199[label="",style="dashed", color="red", weight=0]; 3514[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3514 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3515 -> 2211[label="",style="dashed", color="red", weight=0]; 3515[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3515 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3516 -> 2207[label="",style="dashed", color="red", weight=0]; 3516[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3516 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3517 -> 2200[label="",style="dashed", color="red", weight=0]; 3517[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3517 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3518 -> 2210[label="",style="dashed", color="red", weight=0]; 3518[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3518 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3519 -> 2204[label="",style="dashed", color="red", weight=0]; 3519[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3519 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3520 -> 2198[label="",style="dashed", color="red", weight=0]; 3520[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3520 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3521 -> 2596[label="",style="dashed", color="red", weight=0]; 3521[label="xuu47001 == xuu48001 && xuu47002 <= xuu48002",fontsize=16,color="magenta"];3521 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3522[label="xuu47001 < xuu48001",fontsize=16,color="blue",shape="box"];4943[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 3698[label="",style="solid", color="blue", weight=3]; 4944[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 3699[label="",style="solid", color="blue", weight=3]; 4945[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 3700[label="",style="solid", color="blue", weight=3]; 4946[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 3701[label="",style="solid", color="blue", weight=3]; 4947[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 3702[label="",style="solid", color="blue", weight=3]; 4948[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 3703[label="",style="solid", color="blue", weight=3]; 4949[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 3704[label="",style="solid", color="blue", weight=3]; 4950[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 3705[label="",style="solid", color="blue", weight=3]; 4951[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 3706[label="",style="solid", color="blue", weight=3]; 4952[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 3707[label="",style="solid", color="blue", weight=3]; 4953[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 3708[label="",style="solid", color="blue", weight=3]; 4954[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4954[label="",style="solid", color="blue", weight=9]; 4954 -> 3709[label="",style="solid", color="blue", weight=3]; 4955[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4955[label="",style="solid", color="blue", weight=9]; 4955 -> 3710[label="",style="solid", color="blue", weight=3]; 4956[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4956[label="",style="solid", color="blue", weight=9]; 4956 -> 3711[label="",style="solid", color="blue", weight=3]; 3523[label="xuu47000",fontsize=16,color="green",shape="box"];3524[label="xuu48000",fontsize=16,color="green",shape="box"];3525[label="xuu47000",fontsize=16,color="green",shape="box"];3526[label="xuu48000",fontsize=16,color="green",shape="box"];3527[label="xuu47000",fontsize=16,color="green",shape="box"];3528[label="xuu48000",fontsize=16,color="green",shape="box"];3529[label="xuu47000",fontsize=16,color="green",shape="box"];3530[label="xuu48000",fontsize=16,color="green",shape="box"];3531[label="xuu47000",fontsize=16,color="green",shape="box"];3532[label="xuu48000",fontsize=16,color="green",shape="box"];3533[label="xuu47000",fontsize=16,color="green",shape="box"];3534[label="xuu48000",fontsize=16,color="green",shape="box"];3535[label="xuu47000",fontsize=16,color="green",shape="box"];3536[label="xuu48000",fontsize=16,color="green",shape="box"];3537[label="xuu47000",fontsize=16,color="green",shape="box"];3538[label="xuu48000",fontsize=16,color="green",shape="box"];3539[label="xuu47000",fontsize=16,color="green",shape="box"];3540[label="xuu48000",fontsize=16,color="green",shape="box"];3541[label="xuu47000",fontsize=16,color="green",shape="box"];3542[label="xuu48000",fontsize=16,color="green",shape="box"];3543[label="xuu47000",fontsize=16,color="green",shape="box"];3544[label="xuu48000",fontsize=16,color="green",shape="box"];3545[label="xuu47000",fontsize=16,color="green",shape="box"];3546[label="xuu48000",fontsize=16,color="green",shape="box"];3547[label="xuu47000",fontsize=16,color="green",shape="box"];3548[label="xuu48000",fontsize=16,color="green",shape="box"];3549[label="xuu47000",fontsize=16,color="green",shape="box"];3550[label="xuu48000",fontsize=16,color="green",shape="box"];3551[label="xuu47000",fontsize=16,color="green",shape="box"];3552[label="xuu48000",fontsize=16,color="green",shape="box"];1816[label="primCmpInt (Pos (Succ xuu4700)) xuu48",fontsize=16,color="burlywood",shape="box"];4957[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1816 -> 4957[label="",style="solid", color="burlywood", weight=9]; 4957 -> 1983[label="",style="solid", color="burlywood", weight=3]; 4958[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1816 -> 4958[label="",style="solid", color="burlywood", weight=9]; 4958 -> 1984[label="",style="solid", color="burlywood", weight=3]; 1817[label="primCmpInt (Pos Zero) xuu48",fontsize=16,color="burlywood",shape="box"];4959[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1817 -> 4959[label="",style="solid", color="burlywood", weight=9]; 4959 -> 1985[label="",style="solid", color="burlywood", weight=3]; 4960[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1817 -> 4960[label="",style="solid", color="burlywood", weight=9]; 4960 -> 1986[label="",style="solid", color="burlywood", weight=3]; 1818[label="primCmpInt (Neg (Succ xuu4700)) xuu48",fontsize=16,color="burlywood",shape="box"];4961[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1818 -> 4961[label="",style="solid", color="burlywood", weight=9]; 4961 -> 1987[label="",style="solid", color="burlywood", weight=3]; 4962[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1818 -> 4962[label="",style="solid", color="burlywood", weight=9]; 4962 -> 1988[label="",style="solid", color="burlywood", weight=3]; 1819[label="primCmpInt (Neg Zero) xuu48",fontsize=16,color="burlywood",shape="box"];4963[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4963[label="",style="solid", color="burlywood", weight=9]; 4963 -> 1989[label="",style="solid", color="burlywood", weight=3]; 4964[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4964[label="",style="solid", color="burlywood", weight=9]; 4964 -> 1990[label="",style="solid", color="burlywood", weight=3]; 3553[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4965[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3553 -> 4965[label="",style="solid", color="burlywood", weight=9]; 4965 -> 3712[label="",style="solid", color="burlywood", weight=3]; 4966[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3553 -> 4966[label="",style="solid", color="burlywood", weight=9]; 4966 -> 3713[label="",style="solid", color="burlywood", weight=3]; 3554[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4967[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3554 -> 4967[label="",style="solid", color="burlywood", weight=9]; 4967 -> 3714[label="",style="solid", color="burlywood", weight=3]; 4968[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3554 -> 4968[label="",style="solid", color="burlywood", weight=9]; 4968 -> 3715[label="",style="solid", color="burlywood", weight=3]; 2001[label="Pos Zero",fontsize=16,color="green",shape="box"];2002 -> 1835[label="",style="dashed", color="red", weight=0]; 2002[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34",fontsize=16,color="magenta"];2002 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1996[label="primPlusInt xuu502 xuu131",fontsize=16,color="burlywood",shape="triangle"];4969[label="xuu502/Pos xuu5020",fontsize=10,color="white",style="solid",shape="box"];1996 -> 4969[label="",style="solid", color="burlywood", weight=9]; 4969 -> 2021[label="",style="solid", color="burlywood", weight=3]; 4970[label="xuu502/Neg xuu5020",fontsize=10,color="white",style="solid",shape="box"];1996 -> 4970[label="",style="solid", color="burlywood", weight=9]; 4970 -> 2022[label="",style="solid", color="burlywood", weight=3]; 2003 -> 1835[label="",style="dashed", color="red", weight=0]; 2003[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="magenta"];2003 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2014[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];2014 -> 2127[label="",style="solid", color="black", weight=3]; 2015[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2015 -> 2128[label="",style="solid", color="black", weight=3]; 2016[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)",fontsize=16,color="black",shape="box"];2016 -> 2129[label="",style="solid", color="black", weight=3]; 2018 -> 1464[label="",style="dashed", color="red", weight=0]; 2018[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2018 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2017[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu132",fontsize=16,color="burlywood",shape="triangle"];4971[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];2017 -> 4971[label="",style="solid", color="burlywood", weight=9]; 4971 -> 2132[label="",style="solid", color="burlywood", weight=3]; 4972[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];2017 -> 4972[label="",style="solid", color="burlywood", weight=9]; 4972 -> 2133[label="",style="solid", color="burlywood", weight=3]; 4368[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263",fontsize=16,color="black",shape="box"];4368 -> 4370[label="",style="solid", color="black", weight=3]; 4369[label="FiniteMap.mkBranchRight_size xuu262 xuu260 xuu263",fontsize=16,color="black",shape="box"];4369 -> 4371[label="",style="solid", color="black", weight=3]; 2006[label="Pos Zero",fontsize=16,color="green",shape="box"];2007 -> 1837[label="",style="dashed", color="red", weight=0]; 2007[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34",fontsize=16,color="magenta"];2007 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2008[label="xuu422",fontsize=16,color="green",shape="box"];2009 -> 1837[label="",style="dashed", color="red", weight=0]; 2009[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="magenta"];2009 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2023[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];2023 -> 2142[label="",style="solid", color="black", weight=3]; 2024[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2024 -> 2143[label="",style="solid", color="black", weight=3]; 2025[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2025 -> 2144[label="",style="solid", color="black", weight=3]; 2027 -> 1464[label="",style="dashed", color="red", weight=0]; 2027[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2027 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2026[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu136",fontsize=16,color="burlywood",shape="triangle"];4973[label="xuu136/False",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4973[label="",style="solid", color="burlywood", weight=9]; 4973 -> 2147[label="",style="solid", color="burlywood", weight=3]; 4974[label="xuu136/True",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4974[label="",style="solid", color="burlywood", weight=9]; 4974 -> 2148[label="",style="solid", color="burlywood", weight=3]; 1882[label="primMulNat (Succ xuu4000100) (Succ xuu300000)",fontsize=16,color="black",shape="box"];1882 -> 2030[label="",style="solid", color="black", weight=3]; 1883[label="primMulNat (Succ xuu4000100) Zero",fontsize=16,color="black",shape="box"];1883 -> 2031[label="",style="solid", color="black", weight=3]; 1884[label="primMulNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];1884 -> 2032[label="",style="solid", color="black", weight=3]; 1885[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1885 -> 2033[label="",style="solid", color="black", weight=3]; 3555[label="xuu47001",fontsize=16,color="green",shape="box"];3556[label="xuu48001",fontsize=16,color="green",shape="box"];3557 -> 3716[label="",style="dashed", color="red", weight=0]; 3557[label="primCompAux0 xuu207 (compare xuu47000 xuu48000)",fontsize=16,color="magenta"];3557 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3576[label="xuu48000",fontsize=16,color="green",shape="box"];3577[label="xuu47000",fontsize=16,color="green",shape="box"];3578[label="xuu48000",fontsize=16,color="green",shape="box"];3579[label="xuu47000",fontsize=16,color="green",shape="box"];3580[label="xuu48000",fontsize=16,color="green",shape="box"];3581[label="xuu47000",fontsize=16,color="green",shape="box"];3582[label="xuu48000",fontsize=16,color="green",shape="box"];3583[label="xuu47000",fontsize=16,color="green",shape="box"];3584[label="xuu48000",fontsize=16,color="green",shape="box"];3585[label="xuu47000",fontsize=16,color="green",shape="box"];3586[label="xuu48000",fontsize=16,color="green",shape="box"];3587[label="xuu47000",fontsize=16,color="green",shape="box"];3588[label="xuu48000",fontsize=16,color="green",shape="box"];3589[label="xuu47000",fontsize=16,color="green",shape="box"];3590[label="xuu48000",fontsize=16,color="green",shape="box"];3591[label="xuu47000",fontsize=16,color="green",shape="box"];3592[label="xuu48000",fontsize=16,color="green",shape="box"];3593[label="xuu47000",fontsize=16,color="green",shape="box"];3594[label="xuu48000",fontsize=16,color="green",shape="box"];3595[label="xuu47000",fontsize=16,color="green",shape="box"];3596[label="xuu48000",fontsize=16,color="green",shape="box"];3597[label="xuu47000",fontsize=16,color="green",shape="box"];3598[label="xuu48000",fontsize=16,color="green",shape="box"];3599[label="xuu47000",fontsize=16,color="green",shape="box"];3600[label="xuu48000",fontsize=16,color="green",shape="box"];3601[label="xuu47000",fontsize=16,color="green",shape="box"];3602[label="xuu48000",fontsize=16,color="green",shape="box"];3603[label="xuu47000",fontsize=16,color="green",shape="box"];3604[label="xuu47001",fontsize=16,color="green",shape="box"];3605[label="xuu48001",fontsize=16,color="green",shape="box"];3606[label="xuu47001",fontsize=16,color="green",shape="box"];3607[label="xuu48001",fontsize=16,color="green",shape="box"];3608[label="xuu47001",fontsize=16,color="green",shape="box"];3609[label="xuu48001",fontsize=16,color="green",shape="box"];3610[label="xuu47001",fontsize=16,color="green",shape="box"];3611[label="xuu48001",fontsize=16,color="green",shape="box"];3612[label="xuu47001",fontsize=16,color="green",shape="box"];3613[label="xuu48001",fontsize=16,color="green",shape="box"];3614[label="xuu47001",fontsize=16,color="green",shape="box"];3615[label="xuu48001",fontsize=16,color="green",shape="box"];3616[label="xuu47001",fontsize=16,color="green",shape="box"];3617[label="xuu48001",fontsize=16,color="green",shape="box"];3618[label="xuu47001",fontsize=16,color="green",shape="box"];3619[label="xuu48001",fontsize=16,color="green",shape="box"];3620[label="xuu47001",fontsize=16,color="green",shape="box"];3621[label="xuu48001",fontsize=16,color="green",shape="box"];3622[label="xuu47001",fontsize=16,color="green",shape="box"];3623[label="xuu48001",fontsize=16,color="green",shape="box"];3624[label="xuu47001",fontsize=16,color="green",shape="box"];3625[label="xuu48001",fontsize=16,color="green",shape="box"];3626[label="xuu47001",fontsize=16,color="green",shape="box"];3627[label="xuu48001",fontsize=16,color="green",shape="box"];3628[label="xuu47001",fontsize=16,color="green",shape="box"];3629[label="xuu48001",fontsize=16,color="green",shape="box"];3630[label="xuu47001",fontsize=16,color="green",shape="box"];3631[label="xuu48001",fontsize=16,color="green",shape="box"];3632[label="LT",fontsize=16,color="green",shape="box"];3633 -> 3187[label="",style="dashed", color="red", weight=0]; 3633[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3633 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3634[label="LT",fontsize=16,color="green",shape="box"];3635[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3635 -> 3721[label="",style="solid", color="black", weight=3]; 3636[label="LT",fontsize=16,color="green",shape="box"];3637[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3637 -> 3722[label="",style="solid", color="black", weight=3]; 3638[label="LT",fontsize=16,color="green",shape="box"];3639 -> 3188[label="",style="dashed", color="red", weight=0]; 3639[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3639 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3640[label="LT",fontsize=16,color="green",shape="box"];3641 -> 3189[label="",style="dashed", color="red", weight=0]; 3641[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3641 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3642[label="LT",fontsize=16,color="green",shape="box"];3643 -> 3190[label="",style="dashed", color="red", weight=0]; 3643[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3643 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3644[label="LT",fontsize=16,color="green",shape="box"];3645[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3645 -> 3729[label="",style="solid", color="black", weight=3]; 3646[label="LT",fontsize=16,color="green",shape="box"];3647[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3647 -> 3730[label="",style="solid", color="black", weight=3]; 3648[label="LT",fontsize=16,color="green",shape="box"];3649 -> 3191[label="",style="dashed", color="red", weight=0]; 3649[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3649 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3649 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3650[label="LT",fontsize=16,color="green",shape="box"];3651[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3651 -> 3733[label="",style="solid", color="black", weight=3]; 1564 -> 63[label="",style="dashed", color="red", weight=0]; 1564[label="compare xuu470 xuu480 == LT",fontsize=16,color="magenta"];1564 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1704[label="",style="dashed", color="magenta", weight=3]; 3652[label="LT",fontsize=16,color="green",shape="box"];3653[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3653 -> 3734[label="",style="solid", color="black", weight=3]; 3654[label="LT",fontsize=16,color="green",shape="box"];3655 -> 3193[label="",style="dashed", color="red", weight=0]; 3655[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3655 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3655 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3656[label="LT",fontsize=16,color="green",shape="box"];3657 -> 3194[label="",style="dashed", color="red", weight=0]; 3657[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3657 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3657 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3658[label="xuu47000 * xuu48001",fontsize=16,color="burlywood",shape="triangle"];4975[label="xuu47000/Integer xuu470000",fontsize=10,color="white",style="solid",shape="box"];3658 -> 4975[label="",style="solid", color="burlywood", weight=9]; 4975 -> 3739[label="",style="solid", color="burlywood", weight=3]; 3659 -> 3658[label="",style="dashed", color="red", weight=0]; 3659[label="xuu48000 * xuu47001",fontsize=16,color="magenta"];3659 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3659 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3660 -> 642[label="",style="dashed", color="red", weight=0]; 3660[label="xuu47000 * xuu48001",fontsize=16,color="magenta"];3660 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3660 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3661 -> 642[label="",style="dashed", color="red", weight=0]; 3661[label="xuu48000 * xuu47001",fontsize=16,color="magenta"];3661 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3661 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3662[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3662 -> 3746[label="",style="solid", color="black", weight=3]; 3663[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3663 -> 3747[label="",style="solid", color="black", weight=3]; 3664[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3664 -> 3748[label="",style="solid", color="black", weight=3]; 3665[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3665 -> 3749[label="",style="solid", color="black", weight=3]; 3666[label="xuu47000",fontsize=16,color="green",shape="box"];3667[label="xuu48000",fontsize=16,color="green",shape="box"];2495[label="primCmpNat xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4976[label="xuu4700/Succ xuu47000",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4976[label="",style="solid", color="burlywood", weight=9]; 4976 -> 3014[label="",style="solid", color="burlywood", weight=3]; 4977[label="xuu4700/Zero",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4977[label="",style="solid", color="burlywood", weight=9]; 4977 -> 3015[label="",style="solid", color="burlywood", weight=3]; 3668[label="xuu48000",fontsize=16,color="green",shape="box"];3669[label="xuu47000",fontsize=16,color="green",shape="box"];3670[label="xuu48000",fontsize=16,color="green",shape="box"];3671[label="xuu47000",fontsize=16,color="green",shape="box"];3672[label="xuu48000",fontsize=16,color="green",shape="box"];3673[label="xuu47000",fontsize=16,color="green",shape="box"];3674[label="xuu48000",fontsize=16,color="green",shape="box"];3675[label="xuu47000",fontsize=16,color="green",shape="box"];3676[label="xuu48000",fontsize=16,color="green",shape="box"];3677[label="xuu47000",fontsize=16,color="green",shape="box"];3678[label="xuu48000",fontsize=16,color="green",shape="box"];3679[label="xuu47000",fontsize=16,color="green",shape="box"];3680[label="xuu48000",fontsize=16,color="green",shape="box"];3681[label="xuu47000",fontsize=16,color="green",shape="box"];3682[label="xuu48000",fontsize=16,color="green",shape="box"];3683[label="xuu47000",fontsize=16,color="green",shape="box"];3684[label="xuu48000",fontsize=16,color="green",shape="box"];3685[label="xuu47000",fontsize=16,color="green",shape="box"];3686[label="xuu48000",fontsize=16,color="green",shape="box"];3687[label="xuu47000",fontsize=16,color="green",shape="box"];3688[label="xuu48000",fontsize=16,color="green",shape="box"];3689[label="xuu47000",fontsize=16,color="green",shape="box"];3690[label="xuu48000",fontsize=16,color="green",shape="box"];3691[label="xuu47000",fontsize=16,color="green",shape="box"];3692[label="xuu48000",fontsize=16,color="green",shape="box"];3693[label="xuu47000",fontsize=16,color="green",shape="box"];3694[label="xuu48000",fontsize=16,color="green",shape="box"];3695[label="xuu47000",fontsize=16,color="green",shape="box"];3696[label="xuu47001 == xuu48001",fontsize=16,color="blue",shape="box"];4978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 3750[label="",style="solid", color="blue", weight=3]; 4979[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 3751[label="",style="solid", color="blue", weight=3]; 4980[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 3752[label="",style="solid", color="blue", weight=3]; 4981[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3753[label="",style="solid", color="blue", weight=3]; 4982[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3754[label="",style="solid", color="blue", weight=3]; 4983[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3755[label="",style="solid", color="blue", weight=3]; 4984[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3756[label="",style="solid", color="blue", weight=3]; 4985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3757[label="",style="solid", color="blue", weight=3]; 4986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3758[label="",style="solid", color="blue", weight=3]; 4987[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3759[label="",style="solid", color="blue", weight=3]; 4988[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3760[label="",style="solid", color="blue", weight=3]; 4989[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3761[label="",style="solid", color="blue", weight=3]; 4990[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 3762[label="",style="solid", color="blue", weight=3]; 4991[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3696 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 3763[label="",style="solid", color="blue", weight=3]; 3697[label="xuu47002 <= xuu48002",fontsize=16,color="blue",shape="box"];4992[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 3764[label="",style="solid", color="blue", weight=3]; 4993[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 3765[label="",style="solid", color="blue", weight=3]; 4994[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 3766[label="",style="solid", color="blue", weight=3]; 4995[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 3767[label="",style="solid", color="blue", weight=3]; 4996[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 3768[label="",style="solid", color="blue", weight=3]; 4997[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 3769[label="",style="solid", color="blue", weight=3]; 4998[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 3770[label="",style="solid", color="blue", weight=3]; 4999[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 3771[label="",style="solid", color="blue", weight=3]; 5000[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 3772[label="",style="solid", color="blue", weight=3]; 5001[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 3773[label="",style="solid", color="blue", weight=3]; 5002[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 3774[label="",style="solid", color="blue", weight=3]; 5003[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 3775[label="",style="solid", color="blue", weight=3]; 5004[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 3776[label="",style="solid", color="blue", weight=3]; 5005[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3697 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3777[label="",style="solid", color="blue", weight=3]; 3698 -> 3329[label="",style="dashed", color="red", weight=0]; 3698[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3698 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3698 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3330[label="",style="dashed", color="red", weight=0]; 3699[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3699 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3331[label="",style="dashed", color="red", weight=0]; 3700[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3700 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3332[label="",style="dashed", color="red", weight=0]; 3701[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3701 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3333[label="",style="dashed", color="red", weight=0]; 3702[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3702 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3787[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3334[label="",style="dashed", color="red", weight=0]; 3703[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3703 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3335[label="",style="dashed", color="red", weight=0]; 3704[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3704 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3791[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3336[label="",style="dashed", color="red", weight=0]; 3705[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3705 -> 3792[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3793[label="",style="dashed", color="magenta", weight=3]; 3706 -> 3337[label="",style="dashed", color="red", weight=0]; 3706[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3706 -> 3794[label="",style="dashed", color="magenta", weight=3]; 3706 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3707 -> 3338[label="",style="dashed", color="red", weight=0]; 3707[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3707 -> 3796[label="",style="dashed", color="magenta", weight=3]; 3707 -> 3797[label="",style="dashed", color="magenta", weight=3]; 3708 -> 1464[label="",style="dashed", color="red", weight=0]; 3708[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3708 -> 3798[label="",style="dashed", color="magenta", weight=3]; 3708 -> 3799[label="",style="dashed", color="magenta", weight=3]; 3709 -> 3340[label="",style="dashed", color="red", weight=0]; 3709[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3709 -> 3800[label="",style="dashed", color="magenta", weight=3]; 3709 -> 3801[label="",style="dashed", color="magenta", weight=3]; 3710 -> 3341[label="",style="dashed", color="red", weight=0]; 3710[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3710 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3710 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3711 -> 3342[label="",style="dashed", color="red", weight=0]; 3711[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3711 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3711 -> 3805[label="",style="dashed", color="magenta", weight=3]; 1983[label="primCmpInt (Pos (Succ xuu4700)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1983 -> 2109[label="",style="solid", color="black", weight=3]; 1984[label="primCmpInt (Pos (Succ xuu4700)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1984 -> 2110[label="",style="solid", color="black", weight=3]; 1985[label="primCmpInt (Pos Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];5006[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1985 -> 5006[label="",style="solid", color="burlywood", weight=9]; 5006 -> 2111[label="",style="solid", color="burlywood", weight=3]; 5007[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1985 -> 5007[label="",style="solid", color="burlywood", weight=9]; 5007 -> 2112[label="",style="solid", color="burlywood", weight=3]; 1986[label="primCmpInt (Pos Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];5008[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1986 -> 5008[label="",style="solid", color="burlywood", weight=9]; 5008 -> 2113[label="",style="solid", color="burlywood", weight=3]; 5009[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1986 -> 5009[label="",style="solid", color="burlywood", weight=9]; 5009 -> 2114[label="",style="solid", color="burlywood", weight=3]; 1987[label="primCmpInt (Neg (Succ xuu4700)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1987 -> 2115[label="",style="solid", color="black", weight=3]; 1988[label="primCmpInt (Neg (Succ xuu4700)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1988 -> 2116[label="",style="solid", color="black", weight=3]; 1989[label="primCmpInt (Neg Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];5010[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1989 -> 5010[label="",style="solid", color="burlywood", weight=9]; 5010 -> 2117[label="",style="solid", color="burlywood", weight=3]; 5011[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1989 -> 5011[label="",style="solid", color="burlywood", weight=9]; 5011 -> 2118[label="",style="solid", color="burlywood", weight=3]; 1990[label="primCmpInt (Neg Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];5012[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1990 -> 5012[label="",style="solid", color="burlywood", weight=9]; 5012 -> 2119[label="",style="solid", color="burlywood", weight=3]; 5013[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1990 -> 5013[label="",style="solid", color="burlywood", weight=9]; 5013 -> 2120[label="",style="solid", color="burlywood", weight=3]; 3712[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3712 -> 3806[label="",style="solid", color="black", weight=3]; 3713[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3713 -> 3807[label="",style="solid", color="black", weight=3]; 3714[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3714 -> 3808[label="",style="solid", color="black", weight=3]; 3715[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3715 -> 3809[label="",style="solid", color="black", weight=3]; 2125[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2021[label="primPlusInt (Pos xuu5020) xuu131",fontsize=16,color="burlywood",shape="box"];5014[label="xuu131/Pos xuu1310",fontsize=10,color="white",style="solid",shape="box"];2021 -> 5014[label="",style="solid", color="burlywood", weight=9]; 5014 -> 2136[label="",style="solid", color="burlywood", weight=3]; 5015[label="xuu131/Neg xuu1310",fontsize=10,color="white",style="solid",shape="box"];2021 -> 5015[label="",style="solid", color="burlywood", weight=9]; 5015 -> 2137[label="",style="solid", color="burlywood", weight=3]; 2022[label="primPlusInt (Neg xuu5020) xuu131",fontsize=16,color="burlywood",shape="box"];5016[label="xuu131/Pos xuu1310",fontsize=10,color="white",style="solid",shape="box"];2022 -> 5016[label="",style="solid", color="burlywood", weight=9]; 5016 -> 2138[label="",style="solid", color="burlywood", weight=3]; 5017[label="xuu131/Neg xuu1310",fontsize=10,color="white",style="solid",shape="box"];2022 -> 5017[label="",style="solid", color="burlywood", weight=9]; 5017 -> 2139[label="",style="solid", color="burlywood", weight=3]; 2126[label="FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=16,color="green",shape="box"];2127 -> 4162[label="",style="dashed", color="red", weight=0]; 2127[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];2127 -> 4173[label="",style="dashed", color="magenta", weight=3]; 2127 -> 4174[label="",style="dashed", color="magenta", weight=3]; 2127 -> 4175[label="",style="dashed", color="magenta", weight=3]; 2127 -> 4176[label="",style="dashed", color="magenta", weight=3]; 2127 -> 4177[label="",style="dashed", color="magenta", weight=3]; 2128[label="error []",fontsize=16,color="red",shape="box"];2129[label="FiniteMap.mkBalBranch6MkBalBranch12 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)",fontsize=16,color="black",shape="box"];2129 -> 2233[label="",style="solid", color="black", weight=3]; 2130 -> 1845[label="",style="dashed", color="red", weight=0]; 2130[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2130 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2131 -> 642[label="",style="dashed", color="red", weight=0]; 2131[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2131 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2132[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2132 -> 2237[label="",style="solid", color="black", weight=3]; 2133[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2133 -> 2238[label="",style="solid", color="black", weight=3]; 4370 -> 1996[label="",style="dashed", color="red", weight=0]; 4370[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263)",fontsize=16,color="magenta"];4370 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4370 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4371[label="FiniteMap.sizeFM xuu263",fontsize=16,color="burlywood",shape="triangle"];5018[label="xuu263/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4371 -> 5018[label="",style="solid", color="burlywood", weight=9]; 5018 -> 4374[label="",style="solid", color="burlywood", weight=3]; 5019[label="xuu263/FiniteMap.Branch xuu2630 xuu2631 xuu2632 xuu2633 xuu2634",fontsize=10,color="white",style="solid",shape="box"];4371 -> 5019[label="",style="solid", color="burlywood", weight=9]; 5019 -> 4375[label="",style="solid", color="burlywood", weight=3]; 2140[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2141[label="FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=16,color="green",shape="box"];2142 -> 4162[label="",style="dashed", color="red", weight=0]; 2142[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];2142 -> 4178[label="",style="dashed", color="magenta", weight=3]; 2142 -> 4179[label="",style="dashed", color="magenta", weight=3]; 2142 -> 4180[label="",style="dashed", color="magenta", weight=3]; 2142 -> 4181[label="",style="dashed", color="magenta", weight=3]; 2142 -> 4182[label="",style="dashed", color="magenta", weight=3]; 2143[label="error []",fontsize=16,color="red",shape="box"];2144[label="FiniteMap.mkBalBranch6MkBalBranch12 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2144 -> 2245[label="",style="solid", color="black", weight=3]; 2145 -> 1845[label="",style="dashed", color="red", weight=0]; 2145[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2145 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2146 -> 642[label="",style="dashed", color="red", weight=0]; 2146[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2146 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2147[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2147 -> 2249[label="",style="solid", color="black", weight=3]; 2148[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2148 -> 2250[label="",style="solid", color="black", weight=3]; 2030 -> 2151[label="",style="dashed", color="red", weight=0]; 2030[label="primPlusNat (primMulNat xuu4000100 (Succ xuu300000)) (Succ xuu300000)",fontsize=16,color="magenta"];2030 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2031[label="Zero",fontsize=16,color="green",shape="box"];2032[label="Zero",fontsize=16,color="green",shape="box"];2033[label="Zero",fontsize=16,color="green",shape="box"];3717[label="compare xuu47000 xuu48000",fontsize=16,color="blue",shape="box"];5020[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3810[label="",style="solid", color="blue", weight=3]; 5021[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3811[label="",style="solid", color="blue", weight=3]; 5022[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3812[label="",style="solid", color="blue", weight=3]; 5023[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3813[label="",style="solid", color="blue", weight=3]; 5024[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3814[label="",style="solid", color="blue", weight=3]; 5025[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3815[label="",style="solid", color="blue", weight=3]; 5026[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3816[label="",style="solid", color="blue", weight=3]; 5027[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3817[label="",style="solid", color="blue", weight=3]; 5028[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3818[label="",style="solid", color="blue", weight=3]; 5029[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3819[label="",style="solid", color="blue", weight=3]; 5030[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3820[label="",style="solid", color="blue", weight=3]; 5031[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3821[label="",style="solid", color="blue", weight=3]; 5032[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3822[label="",style="solid", color="blue", weight=3]; 5033[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3823[label="",style="solid", color="blue", weight=3]; 3718[label="xuu207",fontsize=16,color="green",shape="box"];3716[label="primCompAux0 xuu220 xuu221",fontsize=16,color="burlywood",shape="triangle"];5034[label="xuu221/LT",fontsize=10,color="white",style="solid",shape="box"];3716 -> 5034[label="",style="solid", color="burlywood", weight=9]; 5034 -> 3824[label="",style="solid", color="burlywood", weight=3]; 5035[label="xuu221/EQ",fontsize=10,color="white",style="solid",shape="box"];3716 -> 5035[label="",style="solid", color="burlywood", weight=9]; 5035 -> 3825[label="",style="solid", color="burlywood", weight=3]; 5036[label="xuu221/GT",fontsize=10,color="white",style="solid",shape="box"];3716 -> 5036[label="",style="solid", color="burlywood", weight=9]; 5036 -> 3826[label="",style="solid", color="burlywood", weight=3]; 3719[label="xuu47000",fontsize=16,color="green",shape="box"];3720[label="xuu48000",fontsize=16,color="green",shape="box"];3721[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3721 -> 3853[label="",style="solid", color="black", weight=3]; 3722[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3722 -> 3854[label="",style="solid", color="black", weight=3]; 3723[label="xuu47000",fontsize=16,color="green",shape="box"];3724[label="xuu48000",fontsize=16,color="green",shape="box"];3725[label="xuu47000",fontsize=16,color="green",shape="box"];3726[label="xuu48000",fontsize=16,color="green",shape="box"];3727[label="xuu47000",fontsize=16,color="green",shape="box"];3728[label="xuu48000",fontsize=16,color="green",shape="box"];3729[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3729 -> 3855[label="",style="solid", color="black", weight=3]; 3730[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3730 -> 3856[label="",style="solid", color="black", weight=3]; 3731[label="xuu47000",fontsize=16,color="green",shape="box"];3732[label="xuu48000",fontsize=16,color="green",shape="box"];3733[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3733 -> 3857[label="",style="solid", color="black", weight=3]; 1703[label="LT",fontsize=16,color="green",shape="box"];1704 -> 1321[label="",style="dashed", color="red", weight=0]; 1704[label="compare xuu470 xuu480",fontsize=16,color="magenta"];1704 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1704 -> 1914[label="",style="dashed", color="magenta", weight=3]; 3734[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3734 -> 3858[label="",style="solid", color="black", weight=3]; 3735[label="xuu47000",fontsize=16,color="green",shape="box"];3736[label="xuu48000",fontsize=16,color="green",shape="box"];3737[label="xuu47000",fontsize=16,color="green",shape="box"];3738[label="xuu48000",fontsize=16,color="green",shape="box"];3739[label="Integer xuu470000 * xuu48001",fontsize=16,color="burlywood",shape="box"];5037[label="xuu48001/Integer xuu480010",fontsize=10,color="white",style="solid",shape="box"];3739 -> 5037[label="",style="solid", color="burlywood", weight=9]; 5037 -> 3859[label="",style="solid", color="burlywood", weight=3]; 3740[label="xuu48000",fontsize=16,color="green",shape="box"];3741[label="xuu47001",fontsize=16,color="green",shape="box"];3742[label="xuu47000",fontsize=16,color="green",shape="box"];3743[label="xuu48001",fontsize=16,color="green",shape="box"];3744[label="xuu48000",fontsize=16,color="green",shape="box"];3745[label="xuu47001",fontsize=16,color="green",shape="box"];3746 -> 1321[label="",style="dashed", color="red", weight=0]; 3746[label="compare (xuu47000 * Pos xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3746 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3746 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3747 -> 1321[label="",style="dashed", color="red", weight=0]; 3747[label="compare (xuu47000 * Pos xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3747 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3747 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3748 -> 1321[label="",style="dashed", color="red", weight=0]; 3748[label="compare (xuu47000 * Neg xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3748 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3748 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3749 -> 1321[label="",style="dashed", color="red", weight=0]; 3749[label="compare (xuu47000 * Neg xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3749 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3749 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3014[label="primCmpNat (Succ xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];5038[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];3014 -> 5038[label="",style="solid", color="burlywood", weight=9]; 5038 -> 3154[label="",style="solid", color="burlywood", weight=3]; 5039[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];3014 -> 5039[label="",style="solid", color="burlywood", weight=9]; 5039 -> 3155[label="",style="solid", color="burlywood", weight=3]; 3015[label="primCmpNat Zero xuu4800",fontsize=16,color="burlywood",shape="box"];5040[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5040[label="",style="solid", color="burlywood", weight=9]; 5040 -> 3156[label="",style="solid", color="burlywood", weight=3]; 5041[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5041[label="",style="solid", color="burlywood", weight=9]; 5041 -> 3157[label="",style="solid", color="burlywood", weight=3]; 3750 -> 2205[label="",style="dashed", color="red", weight=0]; 3750[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3750 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3751 -> 63[label="",style="dashed", color="red", weight=0]; 3751[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3751 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3751 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3752 -> 2202[label="",style="dashed", color="red", weight=0]; 3752[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3752 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3752 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3753 -> 2206[label="",style="dashed", color="red", weight=0]; 3753[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3753 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3754 -> 2209[label="",style="dashed", color="red", weight=0]; 3754[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3754 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3754 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3755 -> 2208[label="",style="dashed", color="red", weight=0]; 3755[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3755 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3756 -> 2201[label="",style="dashed", color="red", weight=0]; 3756[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3756 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3757 -> 2199[label="",style="dashed", color="red", weight=0]; 3757[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3757 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3758 -> 2211[label="",style="dashed", color="red", weight=0]; 3758[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3758 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3758 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3759 -> 2207[label="",style="dashed", color="red", weight=0]; 3759[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3759 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3760 -> 2200[label="",style="dashed", color="red", weight=0]; 3760[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3760 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3760 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3761 -> 2210[label="",style="dashed", color="red", weight=0]; 3761[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3761 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3762 -> 2204[label="",style="dashed", color="red", weight=0]; 3762[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3762 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3762 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3763 -> 2198[label="",style="dashed", color="red", weight=0]; 3763[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3763 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3763 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3764 -> 2958[label="",style="dashed", color="red", weight=0]; 3764[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3764 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3765 -> 2959[label="",style="dashed", color="red", weight=0]; 3765[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3765 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3765 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3766 -> 2960[label="",style="dashed", color="red", weight=0]; 3766[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3766 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3767 -> 2961[label="",style="dashed", color="red", weight=0]; 3767[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3767 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3767 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3768 -> 2962[label="",style="dashed", color="red", weight=0]; 3768[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3768 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3768 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3769 -> 2963[label="",style="dashed", color="red", weight=0]; 3769[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3769 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3769 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3770 -> 2964[label="",style="dashed", color="red", weight=0]; 3770[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3770 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3771 -> 2965[label="",style="dashed", color="red", weight=0]; 3771[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3771 -> 3910[label="",style="dashed", color="magenta", weight=3]; 3771 -> 3911[label="",style="dashed", color="magenta", weight=3]; 3772 -> 2966[label="",style="dashed", color="red", weight=0]; 3772[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3772 -> 3912[label="",style="dashed", color="magenta", weight=3]; 3772 -> 3913[label="",style="dashed", color="magenta", weight=3]; 3773 -> 2967[label="",style="dashed", color="red", weight=0]; 3773[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3773 -> 3914[label="",style="dashed", color="magenta", weight=3]; 3773 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3774 -> 2968[label="",style="dashed", color="red", weight=0]; 3774[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3774 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3774 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3775 -> 2969[label="",style="dashed", color="red", weight=0]; 3775[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3775 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3775 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3776 -> 2970[label="",style="dashed", color="red", weight=0]; 3776[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3776 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3776 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3777 -> 2971[label="",style="dashed", color="red", weight=0]; 3777[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3777 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3777 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3778[label="xuu47001",fontsize=16,color="green",shape="box"];3779[label="xuu48001",fontsize=16,color="green",shape="box"];3780[label="xuu47001",fontsize=16,color="green",shape="box"];3781[label="xuu48001",fontsize=16,color="green",shape="box"];3782[label="xuu47001",fontsize=16,color="green",shape="box"];3783[label="xuu48001",fontsize=16,color="green",shape="box"];3784[label="xuu47001",fontsize=16,color="green",shape="box"];3785[label="xuu48001",fontsize=16,color="green",shape="box"];3786[label="xuu47001",fontsize=16,color="green",shape="box"];3787[label="xuu48001",fontsize=16,color="green",shape="box"];3788[label="xuu47001",fontsize=16,color="green",shape="box"];3789[label="xuu48001",fontsize=16,color="green",shape="box"];3790[label="xuu47001",fontsize=16,color="green",shape="box"];3791[label="xuu48001",fontsize=16,color="green",shape="box"];3792[label="xuu47001",fontsize=16,color="green",shape="box"];3793[label="xuu48001",fontsize=16,color="green",shape="box"];3794[label="xuu47001",fontsize=16,color="green",shape="box"];3795[label="xuu48001",fontsize=16,color="green",shape="box"];3796[label="xuu47001",fontsize=16,color="green",shape="box"];3797[label="xuu48001",fontsize=16,color="green",shape="box"];3798[label="xuu47001",fontsize=16,color="green",shape="box"];3799[label="xuu48001",fontsize=16,color="green",shape="box"];3800[label="xuu47001",fontsize=16,color="green",shape="box"];3801[label="xuu48001",fontsize=16,color="green",shape="box"];3802[label="xuu47001",fontsize=16,color="green",shape="box"];3803[label="xuu48001",fontsize=16,color="green",shape="box"];3804[label="xuu47001",fontsize=16,color="green",shape="box"];3805[label="xuu48001",fontsize=16,color="green",shape="box"];2109[label="primCmpNat (Succ xuu4700) xuu480",fontsize=16,color="burlywood",shape="triangle"];5042[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];2109 -> 5042[label="",style="solid", color="burlywood", weight=9]; 5042 -> 2252[label="",style="solid", color="burlywood", weight=3]; 5043[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];2109 -> 5043[label="",style="solid", color="burlywood", weight=9]; 5043 -> 2253[label="",style="solid", color="burlywood", weight=3]; 2110[label="GT",fontsize=16,color="green",shape="box"];2111[label="primCmpInt (Pos Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];2111 -> 2254[label="",style="solid", color="black", weight=3]; 2112[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2112 -> 2255[label="",style="solid", color="black", weight=3]; 2113[label="primCmpInt (Pos Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];2113 -> 2256[label="",style="solid", color="black", weight=3]; 2114[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2114 -> 2257[label="",style="solid", color="black", weight=3]; 2115[label="LT",fontsize=16,color="green",shape="box"];2116[label="primCmpNat xuu480 (Succ xuu4700)",fontsize=16,color="burlywood",shape="triangle"];5044[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];2116 -> 5044[label="",style="solid", color="burlywood", weight=9]; 5044 -> 2258[label="",style="solid", color="burlywood", weight=3]; 5045[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];2116 -> 5045[label="",style="solid", color="burlywood", weight=9]; 5045 -> 2259[label="",style="solid", color="burlywood", weight=3]; 2117[label="primCmpInt (Neg Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];2117 -> 2260[label="",style="solid", color="black", weight=3]; 2118[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2118 -> 2261[label="",style="solid", color="black", weight=3]; 2119[label="primCmpInt (Neg Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];2119 -> 2262[label="",style="solid", color="black", weight=3]; 2120[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2120 -> 2263[label="",style="solid", color="black", weight=3]; 3806 -> 1321[label="",style="dashed", color="red", weight=0]; 3806[label="compare (xuu47000 * Pos xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3806 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3807 -> 1321[label="",style="dashed", color="red", weight=0]; 3807[label="compare (xuu47000 * Pos xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3807 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3807 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3808 -> 1321[label="",style="dashed", color="red", weight=0]; 3808[label="compare (xuu47000 * Neg xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3808 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3808 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3809 -> 1321[label="",style="dashed", color="red", weight=0]; 3809[label="compare (xuu47000 * Neg xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3809 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3809 -> 3931[label="",style="dashed", color="magenta", weight=3]; 2136[label="primPlusInt (Pos xuu5020) (Pos xuu1310)",fontsize=16,color="black",shape="box"];2136 -> 2240[label="",style="solid", color="black", weight=3]; 2137[label="primPlusInt (Pos xuu5020) (Neg xuu1310)",fontsize=16,color="black",shape="box"];2137 -> 2241[label="",style="solid", color="black", weight=3]; 2138[label="primPlusInt (Neg xuu5020) (Pos xuu1310)",fontsize=16,color="black",shape="box"];2138 -> 2242[label="",style="solid", color="black", weight=3]; 2139[label="primPlusInt (Neg xuu5020) (Neg xuu1310)",fontsize=16,color="black",shape="box"];2139 -> 2243[label="",style="solid", color="black", weight=3]; 4173[label="Left xuu300",fontsize=16,color="green",shape="box"];4174[label="xuu31",fontsize=16,color="green",shape="box"];4175[label="Succ Zero",fontsize=16,color="green",shape="box"];4176[label="xuu50",fontsize=16,color="green",shape="box"];4177[label="xuu34",fontsize=16,color="green",shape="box"];2233 -> 2343[label="",style="dashed", color="red", weight=0]; 2233[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 (FiniteMap.sizeFM xuu504 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503)",fontsize=16,color="magenta"];2233 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2234[label="xuu343",fontsize=16,color="green",shape="box"];2235[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2236 -> 1845[label="",style="dashed", color="red", weight=0]; 2236[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2236 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2237[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2237 -> 2430[label="",style="solid", color="black", weight=3]; 2238[label="FiniteMap.mkBalBranch6Single_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2238 -> 2431[label="",style="solid", color="black", weight=3]; 4372[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4373[label="FiniteMap.mkBranchLeft_size xuu262 xuu260 xuu263",fontsize=16,color="black",shape="box"];4373 -> 4376[label="",style="solid", color="black", weight=3]; 4374[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4374 -> 4377[label="",style="solid", color="black", weight=3]; 4375[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2630 xuu2631 xuu2632 xuu2633 xuu2634)",fontsize=16,color="black",shape="box"];4375 -> 4378[label="",style="solid", color="black", weight=3]; 4178[label="Right xuu300",fontsize=16,color="green",shape="box"];4179[label="xuu31",fontsize=16,color="green",shape="box"];4180[label="Succ Zero",fontsize=16,color="green",shape="box"];4181[label="xuu42",fontsize=16,color="green",shape="box"];4182[label="xuu34",fontsize=16,color="green",shape="box"];2245 -> 2439[label="",style="dashed", color="red", weight=0]; 2245[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 (FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423)",fontsize=16,color="magenta"];2245 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2246[label="xuu343",fontsize=16,color="green",shape="box"];2247[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2248 -> 1845[label="",style="dashed", color="red", weight=0]; 2248[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2248 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2249[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2249 -> 2474[label="",style="solid", color="black", weight=3]; 2250[label="FiniteMap.mkBalBranch6Single_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2250 -> 2475[label="",style="solid", color="black", weight=3]; 2152 -> 1546[label="",style="dashed", color="red", weight=0]; 2152[label="primMulNat xuu4000100 (Succ xuu300000)",fontsize=16,color="magenta"];2152 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2151[label="primPlusNat xuu140 (Succ xuu300000)",fontsize=16,color="burlywood",shape="triangle"];5046[label="xuu140/Succ xuu1400",fontsize=10,color="white",style="solid",shape="box"];2151 -> 5046[label="",style="solid", color="burlywood", weight=9]; 5046 -> 2266[label="",style="solid", color="burlywood", weight=3]; 5047[label="xuu140/Zero",fontsize=10,color="white",style="solid",shape="box"];2151 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 2267[label="",style="solid", color="burlywood", weight=3]; 3810 -> 3187[label="",style="dashed", color="red", weight=0]; 3810[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3810 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3810 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3635[label="",style="dashed", color="red", weight=0]; 3811[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3811 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3812 -> 3637[label="",style="dashed", color="red", weight=0]; 3812[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3812 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3812 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3813 -> 3188[label="",style="dashed", color="red", weight=0]; 3813[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3813 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3813 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3189[label="",style="dashed", color="red", weight=0]; 3814[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3814 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3815 -> 3190[label="",style="dashed", color="red", weight=0]; 3815[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3815 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3815 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3645[label="",style="dashed", color="red", weight=0]; 3816[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3816 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3817 -> 3647[label="",style="dashed", color="red", weight=0]; 3817[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3817 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3817 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3818 -> 3191[label="",style="dashed", color="red", weight=0]; 3818[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3818 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3818 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3651[label="",style="dashed", color="red", weight=0]; 3819[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3819 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3820 -> 1321[label="",style="dashed", color="red", weight=0]; 3820[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3820 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3820 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3653[label="",style="dashed", color="red", weight=0]; 3821[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3821 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3822 -> 3193[label="",style="dashed", color="red", weight=0]; 3822[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3822 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3822 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3823 -> 3194[label="",style="dashed", color="red", weight=0]; 3823[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3823 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3823 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3824[label="primCompAux0 xuu220 LT",fontsize=16,color="black",shape="box"];3824 -> 3960[label="",style="solid", color="black", weight=3]; 3825[label="primCompAux0 xuu220 EQ",fontsize=16,color="black",shape="box"];3825 -> 3961[label="",style="solid", color="black", weight=3]; 3826[label="primCompAux0 xuu220 GT",fontsize=16,color="black",shape="box"];3826 -> 3962[label="",style="solid", color="black", weight=3]; 3853 -> 3979[label="",style="dashed", color="red", weight=0]; 3853[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3853 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3854 -> 3983[label="",style="dashed", color="red", weight=0]; 3854[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3854 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3855 -> 2160[label="",style="dashed", color="red", weight=0]; 3855[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3855 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3856 -> 3990[label="",style="dashed", color="red", weight=0]; 3856[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3856 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3857 -> 3995[label="",style="dashed", color="red", weight=0]; 3857[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3857 -> 3996[label="",style="dashed", color="magenta", weight=3]; 1913[label="xuu470",fontsize=16,color="green",shape="box"];1914[label="xuu480",fontsize=16,color="green",shape="box"];3858 -> 3998[label="",style="dashed", color="red", weight=0]; 3858[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3858 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3859[label="Integer xuu470000 * Integer xuu480010",fontsize=16,color="black",shape="box"];3859 -> 4000[label="",style="solid", color="black", weight=3]; 3860 -> 642[label="",style="dashed", color="red", weight=0]; 3860[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3860 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3860 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3861 -> 642[label="",style="dashed", color="red", weight=0]; 3861[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3861 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3861 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3862 -> 642[label="",style="dashed", color="red", weight=0]; 3862[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3862 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3862 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3863 -> 642[label="",style="dashed", color="red", weight=0]; 3863[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3863 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3863 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3864 -> 642[label="",style="dashed", color="red", weight=0]; 3864[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3864 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3864 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3865 -> 642[label="",style="dashed", color="red", weight=0]; 3865[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3865 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3865 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3866 -> 642[label="",style="dashed", color="red", weight=0]; 3866[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3866 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3866 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3867 -> 642[label="",style="dashed", color="red", weight=0]; 3867[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3867 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3154[label="primCmpNat (Succ xuu47000) (Succ xuu48000)",fontsize=16,color="black",shape="box"];3154 -> 3558[label="",style="solid", color="black", weight=3]; 3155[label="primCmpNat (Succ xuu47000) Zero",fontsize=16,color="black",shape="box"];3155 -> 3559[label="",style="solid", color="black", weight=3]; 3156[label="primCmpNat Zero (Succ xuu48000)",fontsize=16,color="black",shape="box"];3156 -> 3560[label="",style="solid", color="black", weight=3]; 3157[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3157 -> 3561[label="",style="solid", color="black", weight=3]; 3868[label="xuu48001",fontsize=16,color="green",shape="box"];3869[label="xuu47001",fontsize=16,color="green",shape="box"];3870[label="xuu48001",fontsize=16,color="green",shape="box"];3871[label="xuu47001",fontsize=16,color="green",shape="box"];3872[label="xuu48001",fontsize=16,color="green",shape="box"];3873[label="xuu47001",fontsize=16,color="green",shape="box"];3874[label="xuu48001",fontsize=16,color="green",shape="box"];3875[label="xuu47001",fontsize=16,color="green",shape="box"];3876[label="xuu48001",fontsize=16,color="green",shape="box"];3877[label="xuu47001",fontsize=16,color="green",shape="box"];3878[label="xuu48001",fontsize=16,color="green",shape="box"];3879[label="xuu47001",fontsize=16,color="green",shape="box"];3880[label="xuu48001",fontsize=16,color="green",shape="box"];3881[label="xuu47001",fontsize=16,color="green",shape="box"];3882[label="xuu48001",fontsize=16,color="green",shape="box"];3883[label="xuu47001",fontsize=16,color="green",shape="box"];3884[label="xuu48001",fontsize=16,color="green",shape="box"];3885[label="xuu47001",fontsize=16,color="green",shape="box"];3886[label="xuu48001",fontsize=16,color="green",shape="box"];3887[label="xuu47001",fontsize=16,color="green",shape="box"];3888[label="xuu48001",fontsize=16,color="green",shape="box"];3889[label="xuu47001",fontsize=16,color="green",shape="box"];3890[label="xuu48001",fontsize=16,color="green",shape="box"];3891[label="xuu47001",fontsize=16,color="green",shape="box"];3892[label="xuu48001",fontsize=16,color="green",shape="box"];3893[label="xuu47001",fontsize=16,color="green",shape="box"];3894[label="xuu48001",fontsize=16,color="green",shape="box"];3895[label="xuu47001",fontsize=16,color="green",shape="box"];3896[label="xuu47002",fontsize=16,color="green",shape="box"];3897[label="xuu48002",fontsize=16,color="green",shape="box"];3898[label="xuu47002",fontsize=16,color="green",shape="box"];3899[label="xuu48002",fontsize=16,color="green",shape="box"];3900[label="xuu47002",fontsize=16,color="green",shape="box"];3901[label="xuu48002",fontsize=16,color="green",shape="box"];3902[label="xuu47002",fontsize=16,color="green",shape="box"];3903[label="xuu48002",fontsize=16,color="green",shape="box"];3904[label="xuu47002",fontsize=16,color="green",shape="box"];3905[label="xuu48002",fontsize=16,color="green",shape="box"];3906[label="xuu47002",fontsize=16,color="green",shape="box"];3907[label="xuu48002",fontsize=16,color="green",shape="box"];3908[label="xuu47002",fontsize=16,color="green",shape="box"];3909[label="xuu48002",fontsize=16,color="green",shape="box"];3910[label="xuu47002",fontsize=16,color="green",shape="box"];3911[label="xuu48002",fontsize=16,color="green",shape="box"];3912[label="xuu47002",fontsize=16,color="green",shape="box"];3913[label="xuu48002",fontsize=16,color="green",shape="box"];3914[label="xuu47002",fontsize=16,color="green",shape="box"];3915[label="xuu48002",fontsize=16,color="green",shape="box"];3916[label="xuu47002",fontsize=16,color="green",shape="box"];3917[label="xuu48002",fontsize=16,color="green",shape="box"];3918[label="xuu47002",fontsize=16,color="green",shape="box"];3919[label="xuu48002",fontsize=16,color="green",shape="box"];3920[label="xuu47002",fontsize=16,color="green",shape="box"];3921[label="xuu48002",fontsize=16,color="green",shape="box"];3922[label="xuu47002",fontsize=16,color="green",shape="box"];3923[label="xuu48002",fontsize=16,color="green",shape="box"];2252[label="primCmpNat (Succ xuu4700) (Succ xuu4800)",fontsize=16,color="black",shape="box"];2252 -> 2495[label="",style="solid", color="black", weight=3]; 2253[label="primCmpNat (Succ xuu4700) Zero",fontsize=16,color="black",shape="box"];2253 -> 2496[label="",style="solid", color="black", weight=3]; 2254 -> 2116[label="",style="dashed", color="red", weight=0]; 2254[label="primCmpNat Zero (Succ xuu4800)",fontsize=16,color="magenta"];2254 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2255[label="EQ",fontsize=16,color="green",shape="box"];2256[label="GT",fontsize=16,color="green",shape="box"];2257[label="EQ",fontsize=16,color="green",shape="box"];2258[label="primCmpNat (Succ xuu4800) (Succ xuu4700)",fontsize=16,color="black",shape="box"];2258 -> 2499[label="",style="solid", color="black", weight=3]; 2259[label="primCmpNat Zero (Succ xuu4700)",fontsize=16,color="black",shape="box"];2259 -> 2500[label="",style="solid", color="black", weight=3]; 2260[label="LT",fontsize=16,color="green",shape="box"];2261[label="EQ",fontsize=16,color="green",shape="box"];2262 -> 2109[label="",style="dashed", color="red", weight=0]; 2262[label="primCmpNat (Succ xuu4800) Zero",fontsize=16,color="magenta"];2262 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2263[label="EQ",fontsize=16,color="green",shape="box"];3924 -> 642[label="",style="dashed", color="red", weight=0]; 3924[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3924 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3925 -> 642[label="",style="dashed", color="red", weight=0]; 3925[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3925 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3925 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3926 -> 642[label="",style="dashed", color="red", weight=0]; 3926[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3926 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3926 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3927 -> 642[label="",style="dashed", color="red", weight=0]; 3927[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3927 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3928 -> 642[label="",style="dashed", color="red", weight=0]; 3928[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3928 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3928 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3929 -> 642[label="",style="dashed", color="red", weight=0]; 3929[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3929 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3929 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3930 -> 642[label="",style="dashed", color="red", weight=0]; 3930[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3930 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3930 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3931 -> 642[label="",style="dashed", color="red", weight=0]; 3931[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3931 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3931 -> 4032[label="",style="dashed", color="magenta", weight=3]; 2240[label="Pos (primPlusNat xuu5020 xuu1310)",fontsize=16,color="green",shape="box"];2240 -> 2433[label="",style="dashed", color="green", weight=3]; 2241[label="primMinusNat xuu5020 xuu1310",fontsize=16,color="burlywood",shape="triangle"];5048[label="xuu5020/Succ xuu50200",fontsize=10,color="white",style="solid",shape="box"];2241 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 2434[label="",style="solid", color="burlywood", weight=3]; 5049[label="xuu5020/Zero",fontsize=10,color="white",style="solid",shape="box"];2241 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 2435[label="",style="solid", color="burlywood", weight=3]; 2242 -> 2241[label="",style="dashed", color="red", weight=0]; 2242[label="primMinusNat xuu1310 xuu5020",fontsize=16,color="magenta"];2242 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2243[label="Neg (primPlusNat xuu5020 xuu1310)",fontsize=16,color="green",shape="box"];2243 -> 2438[label="",style="dashed", color="green", weight=3]; 2344 -> 1464[label="",style="dashed", color="red", weight=0]; 2344[label="FiniteMap.sizeFM xuu504 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];2344 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2343[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 xuu149",fontsize=16,color="burlywood",shape="triangle"];5050[label="xuu149/False",fontsize=10,color="white",style="solid",shape="box"];2343 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 2479[label="",style="solid", color="burlywood", weight=3]; 5051[label="xuu149/True",fontsize=10,color="white",style="solid",shape="box"];2343 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 2480[label="",style="solid", color="burlywood", weight=3]; 2429[label="xuu344",fontsize=16,color="green",shape="box"];2430[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2430 -> 2481[label="",style="solid", color="black", weight=3]; 2431 -> 4162[label="",style="dashed", color="red", weight=0]; 2431[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu300) xuu31 xuu50 xuu343) xuu344",fontsize=16,color="magenta"];2431 -> 4183[label="",style="dashed", color="magenta", weight=3]; 2431 -> 4184[label="",style="dashed", color="magenta", weight=3]; 2431 -> 4185[label="",style="dashed", color="magenta", weight=3]; 2431 -> 4186[label="",style="dashed", color="magenta", weight=3]; 2431 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4376 -> 4371[label="",style="dashed", color="red", weight=0]; 4376[label="FiniteMap.sizeFM xuu262",fontsize=16,color="magenta"];4376 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4377[label="Pos Zero",fontsize=16,color="green",shape="box"];4378[label="xuu2632",fontsize=16,color="green",shape="box"];2440 -> 1464[label="",style="dashed", color="red", weight=0]; 2440[label="FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2440 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2439[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 xuu153",fontsize=16,color="burlywood",shape="triangle"];5052[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];2439 -> 5052[label="",style="solid", color="burlywood", weight=9]; 5052 -> 2493[label="",style="solid", color="burlywood", weight=3]; 5053[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];2439 -> 5053[label="",style="solid", color="burlywood", weight=9]; 5053 -> 2494[label="",style="solid", color="burlywood", weight=3]; 2473[label="xuu344",fontsize=16,color="green",shape="box"];2474[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2474 -> 2991[label="",style="solid", color="black", weight=3]; 2475 -> 4162[label="",style="dashed", color="red", weight=0]; 2475[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu300) xuu31 xuu42 xuu343) xuu344",fontsize=16,color="magenta"];2475 -> 4188[label="",style="dashed", color="magenta", weight=3]; 2475 -> 4189[label="",style="dashed", color="magenta", weight=3]; 2475 -> 4190[label="",style="dashed", color="magenta", weight=3]; 2475 -> 4191[label="",style="dashed", color="magenta", weight=3]; 2475 -> 4192[label="",style="dashed", color="magenta", weight=3]; 2264[label="xuu4000100",fontsize=16,color="green",shape="box"];2265[label="Succ xuu300000",fontsize=16,color="green",shape="box"];2266[label="primPlusNat (Succ xuu1400) (Succ xuu300000)",fontsize=16,color="black",shape="box"];2266 -> 2503[label="",style="solid", color="black", weight=3]; 2267[label="primPlusNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];2267 -> 2504[label="",style="solid", color="black", weight=3]; 3932[label="xuu47000",fontsize=16,color="green",shape="box"];3933[label="xuu48000",fontsize=16,color="green",shape="box"];3934[label="xuu47000",fontsize=16,color="green",shape="box"];3935[label="xuu48000",fontsize=16,color="green",shape="box"];3936[label="xuu47000",fontsize=16,color="green",shape="box"];3937[label="xuu48000",fontsize=16,color="green",shape="box"];3938[label="xuu47000",fontsize=16,color="green",shape="box"];3939[label="xuu48000",fontsize=16,color="green",shape="box"];3940[label="xuu47000",fontsize=16,color="green",shape="box"];3941[label="xuu48000",fontsize=16,color="green",shape="box"];3942[label="xuu47000",fontsize=16,color="green",shape="box"];3943[label="xuu48000",fontsize=16,color="green",shape="box"];3944[label="xuu47000",fontsize=16,color="green",shape="box"];3945[label="xuu48000",fontsize=16,color="green",shape="box"];3946[label="xuu47000",fontsize=16,color="green",shape="box"];3947[label="xuu48000",fontsize=16,color="green",shape="box"];3948[label="xuu47000",fontsize=16,color="green",shape="box"];3949[label="xuu48000",fontsize=16,color="green",shape="box"];3950[label="xuu47000",fontsize=16,color="green",shape="box"];3951[label="xuu48000",fontsize=16,color="green",shape="box"];3952[label="xuu47000",fontsize=16,color="green",shape="box"];3953[label="xuu48000",fontsize=16,color="green",shape="box"];3954[label="xuu47000",fontsize=16,color="green",shape="box"];3955[label="xuu48000",fontsize=16,color="green",shape="box"];3956[label="xuu47000",fontsize=16,color="green",shape="box"];3957[label="xuu48000",fontsize=16,color="green",shape="box"];3958[label="xuu47000",fontsize=16,color="green",shape="box"];3959[label="xuu48000",fontsize=16,color="green",shape="box"];3960[label="LT",fontsize=16,color="green",shape="box"];3961[label="xuu220",fontsize=16,color="green",shape="box"];3962[label="GT",fontsize=16,color="green",shape="box"];3980 -> 63[label="",style="dashed", color="red", weight=0]; 3980[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3980 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3980 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3979[label="compare2 xuu47000 xuu48000 xuu234",fontsize=16,color="burlywood",shape="triangle"];5054[label="xuu234/False",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5054[label="",style="solid", color="burlywood", weight=9]; 5054 -> 4036[label="",style="solid", color="burlywood", weight=3]; 5055[label="xuu234/True",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5055[label="",style="solid", color="burlywood", weight=9]; 5055 -> 4037[label="",style="solid", color="burlywood", weight=3]; 3984 -> 2202[label="",style="dashed", color="red", weight=0]; 3984[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3984 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3984 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3983[label="compare2 xuu47000 xuu48000 xuu235",fontsize=16,color="burlywood",shape="triangle"];5056[label="xuu235/False",fontsize=10,color="white",style="solid",shape="box"];3983 -> 5056[label="",style="solid", color="burlywood", weight=9]; 5056 -> 4040[label="",style="solid", color="burlywood", weight=3]; 5057[label="xuu235/True",fontsize=10,color="white",style="solid",shape="box"];3983 -> 5057[label="",style="solid", color="burlywood", weight=9]; 5057 -> 4041[label="",style="solid", color="burlywood", weight=3]; 3987 -> 2201[label="",style="dashed", color="red", weight=0]; 3987[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3987 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3987 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3988[label="xuu47000",fontsize=16,color="green",shape="box"];3989[label="xuu48000",fontsize=16,color="green",shape="box"];3991 -> 2199[label="",style="dashed", color="red", weight=0]; 3991[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3991 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3990[label="compare2 xuu47000 xuu48000 xuu236",fontsize=16,color="burlywood",shape="triangle"];5058[label="xuu236/False",fontsize=10,color="white",style="solid",shape="box"];3990 -> 5058[label="",style="solid", color="burlywood", weight=9]; 5058 -> 4046[label="",style="solid", color="burlywood", weight=3]; 5059[label="xuu236/True",fontsize=10,color="white",style="solid",shape="box"];3990 -> 5059[label="",style="solid", color="burlywood", weight=9]; 5059 -> 4047[label="",style="solid", color="burlywood", weight=3]; 3996 -> 2207[label="",style="dashed", color="red", weight=0]; 3996[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3996 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3996 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3995[label="compare2 xuu47000 xuu48000 xuu237",fontsize=16,color="burlywood",shape="triangle"];5060[label="xuu237/False",fontsize=10,color="white",style="solid",shape="box"];3995 -> 5060[label="",style="solid", color="burlywood", weight=9]; 5060 -> 4050[label="",style="solid", color="burlywood", weight=3]; 5061[label="xuu237/True",fontsize=10,color="white",style="solid",shape="box"];3995 -> 5061[label="",style="solid", color="burlywood", weight=9]; 5061 -> 4051[label="",style="solid", color="burlywood", weight=3]; 3999 -> 2210[label="",style="dashed", color="red", weight=0]; 3999[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3999 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3999 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3998[label="compare2 xuu47000 xuu48000 xuu238",fontsize=16,color="burlywood",shape="triangle"];5062[label="xuu238/False",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5062[label="",style="solid", color="burlywood", weight=9]; 5062 -> 4054[label="",style="solid", color="burlywood", weight=3]; 5063[label="xuu238/True",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5063[label="",style="solid", color="burlywood", weight=9]; 5063 -> 4055[label="",style="solid", color="burlywood", weight=3]; 4000[label="Integer (primMulInt xuu470000 xuu480010)",fontsize=16,color="green",shape="box"];4000 -> 4078[label="",style="dashed", color="green", weight=3]; 4001[label="xuu47000",fontsize=16,color="green",shape="box"];4002[label="Pos xuu480010",fontsize=16,color="green",shape="box"];4003[label="Pos xuu470010",fontsize=16,color="green",shape="box"];4004[label="xuu48000",fontsize=16,color="green",shape="box"];4005[label="xuu47000",fontsize=16,color="green",shape="box"];4006[label="Pos xuu480010",fontsize=16,color="green",shape="box"];4007[label="Neg xuu470010",fontsize=16,color="green",shape="box"];4008[label="xuu48000",fontsize=16,color="green",shape="box"];4009[label="xuu47000",fontsize=16,color="green",shape="box"];4010[label="Neg xuu480010",fontsize=16,color="green",shape="box"];4011[label="Pos xuu470010",fontsize=16,color="green",shape="box"];4012[label="xuu48000",fontsize=16,color="green",shape="box"];4013[label="xuu47000",fontsize=16,color="green",shape="box"];4014[label="Neg xuu480010",fontsize=16,color="green",shape="box"];4015[label="Neg xuu470010",fontsize=16,color="green",shape="box"];4016[label="xuu48000",fontsize=16,color="green",shape="box"];3558 -> 2495[label="",style="dashed", color="red", weight=0]; 3558[label="primCmpNat xuu47000 xuu48000",fontsize=16,color="magenta"];3558 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3559[label="GT",fontsize=16,color="green",shape="box"];3560[label="LT",fontsize=16,color="green",shape="box"];3561[label="EQ",fontsize=16,color="green",shape="box"];2496[label="GT",fontsize=16,color="green",shape="box"];2497[label="xuu4800",fontsize=16,color="green",shape="box"];2498[label="Zero",fontsize=16,color="green",shape="box"];2499 -> 2495[label="",style="dashed", color="red", weight=0]; 2499[label="primCmpNat xuu4800 xuu4700",fontsize=16,color="magenta"];2499 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2499 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2500[label="LT",fontsize=16,color="green",shape="box"];2501[label="xuu4800",fontsize=16,color="green",shape="box"];2502[label="Zero",fontsize=16,color="green",shape="box"];4017[label="xuu47000",fontsize=16,color="green",shape="box"];4018[label="Pos xuu480010",fontsize=16,color="green",shape="box"];4019[label="Pos xuu470010",fontsize=16,color="green",shape="box"];4020[label="xuu48000",fontsize=16,color="green",shape="box"];4021[label="xuu47000",fontsize=16,color="green",shape="box"];4022[label="Pos xuu480010",fontsize=16,color="green",shape="box"];4023[label="Neg xuu470010",fontsize=16,color="green",shape="box"];4024[label="xuu48000",fontsize=16,color="green",shape="box"];4025[label="xuu47000",fontsize=16,color="green",shape="box"];4026[label="Neg xuu480010",fontsize=16,color="green",shape="box"];4027[label="Pos xuu470010",fontsize=16,color="green",shape="box"];4028[label="xuu48000",fontsize=16,color="green",shape="box"];4029[label="xuu47000",fontsize=16,color="green",shape="box"];4030[label="Neg xuu480010",fontsize=16,color="green",shape="box"];4031[label="Neg xuu470010",fontsize=16,color="green",shape="box"];4032[label="xuu48000",fontsize=16,color="green",shape="box"];2433[label="primPlusNat xuu5020 xuu1310",fontsize=16,color="burlywood",shape="triangle"];5064[label="xuu5020/Succ xuu50200",fontsize=10,color="white",style="solid",shape="box"];2433 -> 5064[label="",style="solid", color="burlywood", weight=9]; 5064 -> 2483[label="",style="solid", color="burlywood", weight=3]; 5065[label="xuu5020/Zero",fontsize=10,color="white",style="solid",shape="box"];2433 -> 5065[label="",style="solid", color="burlywood", weight=9]; 5065 -> 2484[label="",style="solid", color="burlywood", weight=3]; 2434[label="primMinusNat (Succ xuu50200) xuu1310",fontsize=16,color="burlywood",shape="box"];5066[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];2434 -> 5066[label="",style="solid", color="burlywood", weight=9]; 5066 -> 2485[label="",style="solid", color="burlywood", weight=3]; 5067[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2434 -> 5067[label="",style="solid", color="burlywood", weight=9]; 5067 -> 2486[label="",style="solid", color="burlywood", weight=3]; 2435[label="primMinusNat Zero xuu1310",fontsize=16,color="burlywood",shape="box"];5068[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5068[label="",style="solid", color="burlywood", weight=9]; 5068 -> 2487[label="",style="solid", color="burlywood", weight=3]; 5069[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5069[label="",style="solid", color="burlywood", weight=9]; 5069 -> 2488[label="",style="solid", color="burlywood", weight=3]; 2436[label="xuu1310",fontsize=16,color="green",shape="box"];2437[label="xuu5020",fontsize=16,color="green",shape="box"];2438 -> 2433[label="",style="dashed", color="red", weight=0]; 2438[label="primPlusNat xuu5020 xuu1310",fontsize=16,color="magenta"];2438 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1845[label="",style="dashed", color="red", weight=0]; 2477[label="FiniteMap.sizeFM xuu504",fontsize=16,color="magenta"];2477 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2478 -> 642[label="",style="dashed", color="red", weight=0]; 2478[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];2478 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2479[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 False",fontsize=16,color="black",shape="box"];2479 -> 2996[label="",style="solid", color="black", weight=3]; 2480[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 True",fontsize=16,color="black",shape="box"];2480 -> 2997[label="",style="solid", color="black", weight=3]; 2481[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];5070[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5070[label="",style="solid", color="burlywood", weight=9]; 5070 -> 2998[label="",style="solid", color="burlywood", weight=3]; 5071[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5071[label="",style="solid", color="burlywood", weight=9]; 5071 -> 2999[label="",style="solid", color="burlywood", weight=3]; 4183[label="xuu340",fontsize=16,color="green",shape="box"];4184[label="xuu341",fontsize=16,color="green",shape="box"];4185[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4186 -> 4162[label="",style="dashed", color="red", weight=0]; 4186[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu300) xuu31 xuu50 xuu343",fontsize=16,color="magenta"];4186 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4187[label="xuu344",fontsize=16,color="green",shape="box"];4379[label="xuu262",fontsize=16,color="green",shape="box"];2491 -> 1845[label="",style="dashed", color="red", weight=0]; 2491[label="FiniteMap.sizeFM xuu424",fontsize=16,color="magenta"];2491 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2492 -> 642[label="",style="dashed", color="red", weight=0]; 2492[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2492 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2492 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2493[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 False",fontsize=16,color="black",shape="box"];2493 -> 3012[label="",style="solid", color="black", weight=3]; 2494[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];2494 -> 3013[label="",style="solid", color="black", weight=3]; 2991[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];5072[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5072[label="",style="solid", color="burlywood", weight=9]; 5072 -> 3135[label="",style="solid", color="burlywood", weight=3]; 5073[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5073[label="",style="solid", color="burlywood", weight=9]; 5073 -> 3136[label="",style="solid", color="burlywood", weight=3]; 4188[label="xuu340",fontsize=16,color="green",shape="box"];4189[label="xuu341",fontsize=16,color="green",shape="box"];4190[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4191 -> 4162[label="",style="dashed", color="red", weight=0]; 4191[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu300) xuu31 xuu42 xuu343",fontsize=16,color="magenta"];4191 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4191 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4191 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4191 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4191 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4192[label="xuu344",fontsize=16,color="green",shape="box"];2503[label="Succ (Succ (primPlusNat xuu1400 xuu300000))",fontsize=16,color="green",shape="box"];2503 -> 3018[label="",style="dashed", color="green", weight=3]; 2504[label="Succ xuu300000",fontsize=16,color="green",shape="box"];4034[label="xuu48000",fontsize=16,color="green",shape="box"];4035[label="xuu47000",fontsize=16,color="green",shape="box"];4036[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4036 -> 4079[label="",style="solid", color="black", weight=3]; 4037[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4037 -> 4080[label="",style="solid", color="black", weight=3]; 4038[label="xuu48000",fontsize=16,color="green",shape="box"];4039[label="xuu47000",fontsize=16,color="green",shape="box"];4040[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4040 -> 4081[label="",style="solid", color="black", weight=3]; 4041[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4041 -> 4082[label="",style="solid", color="black", weight=3]; 4042[label="xuu48000",fontsize=16,color="green",shape="box"];4043[label="xuu47000",fontsize=16,color="green",shape="box"];4044[label="xuu48000",fontsize=16,color="green",shape="box"];4045[label="xuu47000",fontsize=16,color="green",shape="box"];4046[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4046 -> 4083[label="",style="solid", color="black", weight=3]; 4047[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4047 -> 4084[label="",style="solid", color="black", weight=3]; 4048[label="xuu48000",fontsize=16,color="green",shape="box"];4049[label="xuu47000",fontsize=16,color="green",shape="box"];4050[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4050 -> 4085[label="",style="solid", color="black", weight=3]; 4051[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4051 -> 4086[label="",style="solid", color="black", weight=3]; 4052[label="xuu48000",fontsize=16,color="green",shape="box"];4053[label="xuu47000",fontsize=16,color="green",shape="box"];4054[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4054 -> 4087[label="",style="solid", color="black", weight=3]; 4055[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4055 -> 4088[label="",style="solid", color="black", weight=3]; 4078 -> 917[label="",style="dashed", color="red", weight=0]; 4078[label="primMulInt xuu470000 xuu480010",fontsize=16,color="magenta"];4078 -> 4102[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4103[label="",style="dashed", color="magenta", weight=3]; 3827[label="xuu47000",fontsize=16,color="green",shape="box"];3828[label="xuu48000",fontsize=16,color="green",shape="box"];3016[label="xuu4800",fontsize=16,color="green",shape="box"];3017[label="xuu4700",fontsize=16,color="green",shape="box"];2483[label="primPlusNat (Succ xuu50200) xuu1310",fontsize=16,color="burlywood",shape="box"];5074[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];2483 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 3001[label="",style="solid", color="burlywood", weight=3]; 5075[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2483 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 3002[label="",style="solid", color="burlywood", weight=3]; 2484[label="primPlusNat Zero xuu1310",fontsize=16,color="burlywood",shape="box"];5076[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5076[label="",style="solid", color="burlywood", weight=9]; 5076 -> 3003[label="",style="solid", color="burlywood", weight=3]; 5077[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5077[label="",style="solid", color="burlywood", weight=9]; 5077 -> 3004[label="",style="solid", color="burlywood", weight=3]; 2485[label="primMinusNat (Succ xuu50200) (Succ xuu13100)",fontsize=16,color="black",shape="box"];2485 -> 3005[label="",style="solid", color="black", weight=3]; 2486[label="primMinusNat (Succ xuu50200) Zero",fontsize=16,color="black",shape="box"];2486 -> 3006[label="",style="solid", color="black", weight=3]; 2487[label="primMinusNat Zero (Succ xuu13100)",fontsize=16,color="black",shape="box"];2487 -> 3007[label="",style="solid", color="black", weight=3]; 2488[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2488 -> 3008[label="",style="solid", color="black", weight=3]; 2489[label="xuu1310",fontsize=16,color="green",shape="box"];2490[label="xuu5020",fontsize=16,color="green",shape="box"];2993[label="xuu504",fontsize=16,color="green",shape="box"];2994[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2995 -> 1845[label="",style="dashed", color="red", weight=0]; 2995[label="FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];2995 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2996[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 otherwise",fontsize=16,color="black",shape="box"];2996 -> 3139[label="",style="solid", color="black", weight=3]; 2997[label="FiniteMap.mkBalBranch6Single_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="black",shape="box"];2997 -> 3140[label="",style="solid", color="black", weight=3]; 2998[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];2998 -> 3141[label="",style="solid", color="black", weight=3]; 2999[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];2999 -> 3142[label="",style="solid", color="black", weight=3]; 4294[label="Left xuu300",fontsize=16,color="green",shape="box"];4295[label="xuu31",fontsize=16,color="green",shape="box"];4296[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4297[label="xuu50",fontsize=16,color="green",shape="box"];4298[label="xuu343",fontsize=16,color="green",shape="box"];3009[label="xuu424",fontsize=16,color="green",shape="box"];3010[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3011 -> 1845[label="",style="dashed", color="red", weight=0]; 3011[label="FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];3011 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3012[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 otherwise",fontsize=16,color="black",shape="box"];3012 -> 3152[label="",style="solid", color="black", weight=3]; 3013[label="FiniteMap.mkBalBranch6Single_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="black",shape="box"];3013 -> 3153[label="",style="solid", color="black", weight=3]; 3135[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];3135 -> 3231[label="",style="solid", color="black", weight=3]; 3136[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];3136 -> 3232[label="",style="solid", color="black", weight=3]; 4299[label="Right xuu300",fontsize=16,color="green",shape="box"];4300[label="xuu31",fontsize=16,color="green",shape="box"];4301[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4302[label="xuu42",fontsize=16,color="green",shape="box"];4303[label="xuu343",fontsize=16,color="green",shape="box"];3018 -> 2433[label="",style="dashed", color="red", weight=0]; 3018[label="primPlusNat xuu1400 xuu300000",fontsize=16,color="magenta"];3018 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3159[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4104[label="",style="dashed", color="red", weight=0]; 4079[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4079 -> 4105[label="",style="dashed", color="magenta", weight=3]; 4080[label="EQ",fontsize=16,color="green",shape="box"];4081 -> 4106[label="",style="dashed", color="red", weight=0]; 4081[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4081 -> 4107[label="",style="dashed", color="magenta", weight=3]; 4082[label="EQ",fontsize=16,color="green",shape="box"];4083 -> 4108[label="",style="dashed", color="red", weight=0]; 4083[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4083 -> 4109[label="",style="dashed", color="magenta", weight=3]; 4084[label="EQ",fontsize=16,color="green",shape="box"];4085 -> 4110[label="",style="dashed", color="red", weight=0]; 4085[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4085 -> 4111[label="",style="dashed", color="magenta", weight=3]; 4086[label="EQ",fontsize=16,color="green",shape="box"];4087 -> 4112[label="",style="dashed", color="red", weight=0]; 4087[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4087 -> 4113[label="",style="dashed", color="magenta", weight=3]; 4088[label="EQ",fontsize=16,color="green",shape="box"];4102[label="xuu470000",fontsize=16,color="green",shape="box"];4103[label="xuu480010",fontsize=16,color="green",shape="box"];3001[label="primPlusNat (Succ xuu50200) (Succ xuu13100)",fontsize=16,color="black",shape="box"];3001 -> 3145[label="",style="solid", color="black", weight=3]; 3002[label="primPlusNat (Succ xuu50200) Zero",fontsize=16,color="black",shape="box"];3002 -> 3146[label="",style="solid", color="black", weight=3]; 3003[label="primPlusNat Zero (Succ xuu13100)",fontsize=16,color="black",shape="box"];3003 -> 3147[label="",style="solid", color="black", weight=3]; 3004[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3004 -> 3148[label="",style="solid", color="black", weight=3]; 3005 -> 2241[label="",style="dashed", color="red", weight=0]; 3005[label="primMinusNat xuu50200 xuu13100",fontsize=16,color="magenta"];3005 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3006[label="Pos (Succ xuu50200)",fontsize=16,color="green",shape="box"];3007[label="Neg (Succ xuu13100)",fontsize=16,color="green",shape="box"];3008[label="Pos Zero",fontsize=16,color="green",shape="box"];3138[label="xuu503",fontsize=16,color="green",shape="box"];3139[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 True",fontsize=16,color="black",shape="box"];3139 -> 3235[label="",style="solid", color="black", weight=3]; 3140 -> 4162[label="",style="dashed", color="red", weight=0]; 3140[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu500 xuu501 xuu503 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu300) xuu31 xuu504 xuu34)",fontsize=16,color="magenta"];3140 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3140 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3140 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3140 -> 4196[label="",style="dashed", color="magenta", weight=3]; 3140 -> 4197[label="",style="dashed", color="magenta", weight=3]; 3141[label="error []",fontsize=16,color="red",shape="box"];3142 -> 4162[label="",style="dashed", color="red", weight=0]; 3142[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu300) xuu31 xuu50 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3142 -> 4198[label="",style="dashed", color="magenta", weight=3]; 3142 -> 4199[label="",style="dashed", color="magenta", weight=3]; 3142 -> 4200[label="",style="dashed", color="magenta", weight=3]; 3142 -> 4201[label="",style="dashed", color="magenta", weight=3]; 3142 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3151[label="xuu423",fontsize=16,color="green",shape="box"];3152[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];3152 -> 3566[label="",style="solid", color="black", weight=3]; 3153 -> 4162[label="",style="dashed", color="red", weight=0]; 3153[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu420 xuu421 xuu423 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu300) xuu31 xuu424 xuu34)",fontsize=16,color="magenta"];3153 -> 4208[label="",style="dashed", color="magenta", weight=3]; 3153 -> 4209[label="",style="dashed", color="magenta", weight=3]; 3153 -> 4210[label="",style="dashed", color="magenta", weight=3]; 3153 -> 4211[label="",style="dashed", color="magenta", weight=3]; 3153 -> 4212[label="",style="dashed", color="magenta", weight=3]; 3231[label="error []",fontsize=16,color="red",shape="box"];3232 -> 4162[label="",style="dashed", color="red", weight=0]; 3232[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu300) xuu31 xuu42 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3232 -> 4213[label="",style="dashed", color="magenta", weight=3]; 3232 -> 4214[label="",style="dashed", color="magenta", weight=3]; 3232 -> 4215[label="",style="dashed", color="magenta", weight=3]; 3232 -> 4216[label="",style="dashed", color="magenta", weight=3]; 3232 -> 4217[label="",style="dashed", color="magenta", weight=3]; 3158[label="xuu300000",fontsize=16,color="green",shape="box"];3159[label="xuu1400",fontsize=16,color="green",shape="box"];4105 -> 2959[label="",style="dashed", color="red", weight=0]; 4105[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4105 -> 4114[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4115[label="",style="dashed", color="magenta", weight=3]; 4104[label="compare1 xuu47000 xuu48000 xuu249",fontsize=16,color="burlywood",shape="triangle"];5078[label="xuu249/False",fontsize=10,color="white",style="solid",shape="box"];4104 -> 5078[label="",style="solid", color="burlywood", weight=9]; 5078 -> 4116[label="",style="solid", color="burlywood", weight=3]; 5079[label="xuu249/True",fontsize=10,color="white",style="solid",shape="box"];4104 -> 5079[label="",style="solid", color="burlywood", weight=9]; 5079 -> 4117[label="",style="solid", color="burlywood", weight=3]; 4107 -> 2960[label="",style="dashed", color="red", weight=0]; 4107[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4107 -> 4118[label="",style="dashed", color="magenta", weight=3]; 4107 -> 4119[label="",style="dashed", color="magenta", weight=3]; 4106[label="compare1 xuu47000 xuu48000 xuu250",fontsize=16,color="burlywood",shape="triangle"];5080[label="xuu250/False",fontsize=10,color="white",style="solid",shape="box"];4106 -> 5080[label="",style="solid", color="burlywood", weight=9]; 5080 -> 4120[label="",style="solid", color="burlywood", weight=3]; 5081[label="xuu250/True",fontsize=10,color="white",style="solid",shape="box"];4106 -> 5081[label="",style="solid", color="burlywood", weight=9]; 5081 -> 4121[label="",style="solid", color="burlywood", weight=3]; 4109 -> 2965[label="",style="dashed", color="red", weight=0]; 4109[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4109 -> 4122[label="",style="dashed", color="magenta", weight=3]; 4109 -> 4123[label="",style="dashed", color="magenta", weight=3]; 4108[label="compare1 xuu47000 xuu48000 xuu251",fontsize=16,color="burlywood",shape="triangle"];5082[label="xuu251/False",fontsize=10,color="white",style="solid",shape="box"];4108 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 4124[label="",style="solid", color="burlywood", weight=3]; 5083[label="xuu251/True",fontsize=10,color="white",style="solid",shape="box"];4108 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 4125[label="",style="solid", color="burlywood", weight=3]; 4111 -> 2967[label="",style="dashed", color="red", weight=0]; 4111[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4111 -> 4126[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4127[label="",style="dashed", color="magenta", weight=3]; 4110[label="compare1 xuu47000 xuu48000 xuu252",fontsize=16,color="burlywood",shape="triangle"];5084[label="xuu252/False",fontsize=10,color="white",style="solid",shape="box"];4110 -> 5084[label="",style="solid", color="burlywood", weight=9]; 5084 -> 4128[label="",style="solid", color="burlywood", weight=3]; 5085[label="xuu252/True",fontsize=10,color="white",style="solid",shape="box"];4110 -> 5085[label="",style="solid", color="burlywood", weight=9]; 5085 -> 4129[label="",style="solid", color="burlywood", weight=3]; 4113 -> 2969[label="",style="dashed", color="red", weight=0]; 4113[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4113 -> 4130[label="",style="dashed", color="magenta", weight=3]; 4113 -> 4131[label="",style="dashed", color="magenta", weight=3]; 4112[label="compare1 xuu47000 xuu48000 xuu253",fontsize=16,color="burlywood",shape="triangle"];5086[label="xuu253/False",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5086[label="",style="solid", color="burlywood", weight=9]; 5086 -> 4132[label="",style="solid", color="burlywood", weight=3]; 5087[label="xuu253/True",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5087[label="",style="solid", color="burlywood", weight=9]; 5087 -> 4133[label="",style="solid", color="burlywood", weight=3]; 3145[label="Succ (Succ (primPlusNat xuu50200 xuu13100))",fontsize=16,color="green",shape="box"];3145 -> 3565[label="",style="dashed", color="green", weight=3]; 3146[label="Succ xuu50200",fontsize=16,color="green",shape="box"];3147[label="Succ xuu13100",fontsize=16,color="green",shape="box"];3148[label="Zero",fontsize=16,color="green",shape="box"];3149[label="xuu50200",fontsize=16,color="green",shape="box"];3150[label="xuu13100",fontsize=16,color="green",shape="box"];3235[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="burlywood",shape="box"];5088[label="xuu504/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3235 -> 5088[label="",style="solid", color="burlywood", weight=9]; 5088 -> 3832[label="",style="solid", color="burlywood", weight=3]; 5089[label="xuu504/FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044",fontsize=10,color="white",style="solid",shape="box"];3235 -> 5089[label="",style="solid", color="burlywood", weight=9]; 5089 -> 3833[label="",style="solid", color="burlywood", weight=3]; 4193[label="xuu500",fontsize=16,color="green",shape="box"];4194[label="xuu501",fontsize=16,color="green",shape="box"];4195[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4196[label="xuu503",fontsize=16,color="green",shape="box"];4197 -> 4162[label="",style="dashed", color="red", weight=0]; 4197[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu300) xuu31 xuu504 xuu34",fontsize=16,color="magenta"];4197 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4197 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4197 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4197 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4197 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4198[label="xuu3430",fontsize=16,color="green",shape="box"];4199[label="xuu3431",fontsize=16,color="green",shape="box"];4200[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4201 -> 4162[label="",style="dashed", color="red", weight=0]; 4201[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu300) xuu31 xuu50 xuu3433",fontsize=16,color="magenta"];4201 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4201 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4201 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4201 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4201 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4202 -> 4162[label="",style="dashed", color="red", weight=0]; 4202[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];4202 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4202 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4202 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4202 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4202 -> 4318[label="",style="dashed", color="magenta", weight=3]; 3566[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="burlywood",shape="box"];5090[label="xuu424/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3566 -> 5090[label="",style="solid", color="burlywood", weight=9]; 5090 -> 4057[label="",style="solid", color="burlywood", weight=3]; 5091[label="xuu424/FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244",fontsize=10,color="white",style="solid",shape="box"];3566 -> 5091[label="",style="solid", color="burlywood", weight=9]; 5091 -> 4058[label="",style="solid", color="burlywood", weight=3]; 4208[label="xuu420",fontsize=16,color="green",shape="box"];4209[label="xuu421",fontsize=16,color="green",shape="box"];4210[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4211[label="xuu423",fontsize=16,color="green",shape="box"];4212 -> 4162[label="",style="dashed", color="red", weight=0]; 4212[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu300) xuu31 xuu424 xuu34",fontsize=16,color="magenta"];4212 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4212 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4212 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4212 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4212 -> 4323[label="",style="dashed", color="magenta", weight=3]; 4213[label="xuu3430",fontsize=16,color="green",shape="box"];4214[label="xuu3431",fontsize=16,color="green",shape="box"];4215[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4216 -> 4162[label="",style="dashed", color="red", weight=0]; 4216[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu300) xuu31 xuu42 xuu3433",fontsize=16,color="magenta"];4216 -> 4324[label="",style="dashed", color="magenta", weight=3]; 4216 -> 4325[label="",style="dashed", color="magenta", weight=3]; 4216 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4216 -> 4327[label="",style="dashed", color="magenta", weight=3]; 4216 -> 4328[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4162[label="",style="dashed", color="red", weight=0]; 4217[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];4217 -> 4329[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4330[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4331[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4332[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4333[label="",style="dashed", color="magenta", weight=3]; 4114[label="xuu47000",fontsize=16,color="green",shape="box"];4115[label="xuu48000",fontsize=16,color="green",shape="box"];4116[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4116 -> 4151[label="",style="solid", color="black", weight=3]; 4117[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4117 -> 4152[label="",style="solid", color="black", weight=3]; 4118[label="xuu47000",fontsize=16,color="green",shape="box"];4119[label="xuu48000",fontsize=16,color="green",shape="box"];4120[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4120 -> 4153[label="",style="solid", color="black", weight=3]; 4121[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4121 -> 4154[label="",style="solid", color="black", weight=3]; 4122[label="xuu47000",fontsize=16,color="green",shape="box"];4123[label="xuu48000",fontsize=16,color="green",shape="box"];4124[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4124 -> 4155[label="",style="solid", color="black", weight=3]; 4125[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4125 -> 4156[label="",style="solid", color="black", weight=3]; 4126[label="xuu47000",fontsize=16,color="green",shape="box"];4127[label="xuu48000",fontsize=16,color="green",shape="box"];4128[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4128 -> 4157[label="",style="solid", color="black", weight=3]; 4129[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4129 -> 4158[label="",style="solid", color="black", weight=3]; 4130[label="xuu47000",fontsize=16,color="green",shape="box"];4131[label="xuu48000",fontsize=16,color="green",shape="box"];4132[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4132 -> 4159[label="",style="solid", color="black", weight=3]; 4133[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4133 -> 4160[label="",style="solid", color="black", weight=3]; 3565 -> 2433[label="",style="dashed", color="red", weight=0]; 3565[label="primPlusNat xuu50200 xuu13100",fontsize=16,color="magenta"];3565 -> 4092[label="",style="dashed", color="magenta", weight=3]; 3565 -> 4093[label="",style="dashed", color="magenta", weight=3]; 3832[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 FiniteMap.EmptyFM) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3832 -> 4094[label="",style="solid", color="black", weight=3]; 3833[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 (FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044)) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 (FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044)) xuu34",fontsize=16,color="black",shape="box"];3833 -> 4095[label="",style="solid", color="black", weight=3]; 4304[label="Left xuu300",fontsize=16,color="green",shape="box"];4305[label="xuu31",fontsize=16,color="green",shape="box"];4306[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4307[label="xuu504",fontsize=16,color="green",shape="box"];4308[label="xuu34",fontsize=16,color="green",shape="box"];4309[label="Left xuu300",fontsize=16,color="green",shape="box"];4310[label="xuu31",fontsize=16,color="green",shape="box"];4311[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4312[label="xuu50",fontsize=16,color="green",shape="box"];4313[label="xuu3433",fontsize=16,color="green",shape="box"];4314[label="xuu340",fontsize=16,color="green",shape="box"];4315[label="xuu341",fontsize=16,color="green",shape="box"];4316[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4317[label="xuu3434",fontsize=16,color="green",shape="box"];4318[label="xuu344",fontsize=16,color="green",shape="box"];4057[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];4057 -> 4100[label="",style="solid", color="black", weight=3]; 4058[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu34",fontsize=16,color="black",shape="box"];4058 -> 4101[label="",style="solid", color="black", weight=3]; 4319[label="Right xuu300",fontsize=16,color="green",shape="box"];4320[label="xuu31",fontsize=16,color="green",shape="box"];4321[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4322[label="xuu424",fontsize=16,color="green",shape="box"];4323[label="xuu34",fontsize=16,color="green",shape="box"];4324[label="Right xuu300",fontsize=16,color="green",shape="box"];4325[label="xuu31",fontsize=16,color="green",shape="box"];4326[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4327[label="xuu42",fontsize=16,color="green",shape="box"];4328[label="xuu3433",fontsize=16,color="green",shape="box"];4329[label="xuu340",fontsize=16,color="green",shape="box"];4330[label="xuu341",fontsize=16,color="green",shape="box"];4331[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4332[label="xuu3434",fontsize=16,color="green",shape="box"];4333[label="xuu344",fontsize=16,color="green",shape="box"];4151[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4151 -> 4334[label="",style="solid", color="black", weight=3]; 4152[label="LT",fontsize=16,color="green",shape="box"];4153[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4153 -> 4335[label="",style="solid", color="black", weight=3]; 4154[label="LT",fontsize=16,color="green",shape="box"];4155[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4155 -> 4336[label="",style="solid", color="black", weight=3]; 4156[label="LT",fontsize=16,color="green",shape="box"];4157[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4157 -> 4337[label="",style="solid", color="black", weight=3]; 4158[label="LT",fontsize=16,color="green",shape="box"];4159[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4159 -> 4338[label="",style="solid", color="black", weight=3]; 4160[label="LT",fontsize=16,color="green",shape="box"];4092[label="xuu13100",fontsize=16,color="green",shape="box"];4093[label="xuu50200",fontsize=16,color="green",shape="box"];4094[label="error []",fontsize=16,color="red",shape="box"];4095 -> 4162[label="",style="dashed", color="red", weight=0]; 4095[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu5040 xuu5041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu500 xuu501 xuu503 xuu5043) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu300) xuu31 xuu5044 xuu34)",fontsize=16,color="magenta"];4095 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4255[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4256[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4257[label="",style="dashed", color="magenta", weight=3]; 4100[label="error []",fontsize=16,color="red",shape="box"];4101 -> 4162[label="",style="dashed", color="red", weight=0]; 4101[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4240 xuu4241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu300) xuu31 xuu4244 xuu34)",fontsize=16,color="magenta"];4101 -> 4268[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4269[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4270[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4271[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4272[label="",style="dashed", color="magenta", weight=3]; 4334[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4334 -> 4360[label="",style="solid", color="black", weight=3]; 4335[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4335 -> 4361[label="",style="solid", color="black", weight=3]; 4336[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4336 -> 4362[label="",style="solid", color="black", weight=3]; 4337[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4337 -> 4363[label="",style="solid", color="black", weight=3]; 4338[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4338 -> 4364[label="",style="solid", color="black", weight=3]; 4253[label="xuu5040",fontsize=16,color="green",shape="box"];4254[label="xuu5041",fontsize=16,color="green",shape="box"];4255[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4256 -> 4162[label="",style="dashed", color="red", weight=0]; 4256[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu500 xuu501 xuu503 xuu5043",fontsize=16,color="magenta"];4256 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4340[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4341[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4342[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4162[label="",style="dashed", color="red", weight=0]; 4257[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu300) xuu31 xuu5044 xuu34",fontsize=16,color="magenta"];4257 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4268[label="xuu4240",fontsize=16,color="green",shape="box"];4269[label="xuu4241",fontsize=16,color="green",shape="box"];4270[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4271 -> 4162[label="",style="dashed", color="red", weight=0]; 4271[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243",fontsize=16,color="magenta"];4271 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4352[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4353[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4162[label="",style="dashed", color="red", weight=0]; 4272[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu300) xuu31 xuu4244 xuu34",fontsize=16,color="magenta"];4272 -> 4354[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4355[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4356[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4360[label="GT",fontsize=16,color="green",shape="box"];4361[label="GT",fontsize=16,color="green",shape="box"];4362[label="GT",fontsize=16,color="green",shape="box"];4363[label="GT",fontsize=16,color="green",shape="box"];4364[label="GT",fontsize=16,color="green",shape="box"];4339[label="xuu500",fontsize=16,color="green",shape="box"];4340[label="xuu501",fontsize=16,color="green",shape="box"];4341[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4342[label="xuu503",fontsize=16,color="green",shape="box"];4343[label="xuu5043",fontsize=16,color="green",shape="box"];4344[label="Left xuu300",fontsize=16,color="green",shape="box"];4345[label="xuu31",fontsize=16,color="green",shape="box"];4346[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4347[label="xuu5044",fontsize=16,color="green",shape="box"];4348[label="xuu34",fontsize=16,color="green",shape="box"];4349[label="xuu420",fontsize=16,color="green",shape="box"];4350[label="xuu421",fontsize=16,color="green",shape="box"];4351[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4352[label="xuu423",fontsize=16,color="green",shape="box"];4353[label="xuu4243",fontsize=16,color="green",shape="box"];4354[label="Right xuu300",fontsize=16,color="green",shape="box"];4355[label="xuu31",fontsize=16,color="green",shape="box"];4356[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4357[label="xuu4244",fontsize=16,color="green",shape="box"];4358[label="xuu34",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(xuu47000), Succ(xuu48000)) -> new_primCmpNat(xuu47000, xuu48000) 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(xuu47000), Succ(xuu48000)) -> new_primCmpNat(xuu47000, xuu48000) 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_primCompAux(xuu47000, xuu48000, xuu207, app(ty_[], ba)) -> new_compare0(xuu47000, xuu48000, ba) new_primCompAux(xuu47000, xuu48000, xuu207, app(ty_Maybe, ca)) -> new_compare4(xuu47000, xuu48000, ca) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(ty_Maybe, df)), bec) -> new_ltEs3(xuu47001, xuu48001, df) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(ty_Maybe, df)) -> new_ltEs3(xuu47001, xuu48001, df) new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(xuu4700, xuu4800, bef, beg) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hg), hh)), bec) -> new_ltEs0(xuu47002, xuu48002, hg, hh) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(ty_[], bag)), bah), bec) -> new_lt(xuu47001, xuu48001, bag) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bec) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(ty_[], bag), bah) -> new_lt(xuu47001, xuu48001, bag) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bcf), bcg), bch)), he), bah), bec) -> new_lt2(xuu47000, xuu48000, bcf, bcg, bch) new_primCompAux(xuu47000, xuu48000, xuu207, app(app(app(ty_@3, bf), bg), bh)) -> new_compare3(xuu47000, xuu48000, bf, bg, bh) new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(ty_[], gc)) -> new_ltEs(xuu47000, xuu48000, gc) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(ty_Either, da), db)), bec) -> new_ltEs1(xuu47001, xuu48001, da, db) new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_@2, bdc), bdd)), bec) -> new_ltEs0(xuu47000, xuu48000, bdc, bdd) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(ty_@2, hg), hh)) -> new_ltEs0(xuu47002, xuu48002, hg, hh) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs0(xuu47001, xuu48001, cf, cg) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_@2, bcb), bcc), he, bah) -> new_lt0(xuu47000, xuu48000, bcb, bcc) new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_[], eg)), eh), bec) -> new_ltEs(xuu47000, xuu48000, eg) new_ltEs1(Left(xuu47000), Left(xuu48000), app(ty_[], eg), eh) -> new_ltEs(xuu47000, xuu48000, eg) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(ty_@2, bba), bbb), bah) -> new_lt0(xuu47001, xuu48001, bba, bbb) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_Either, ea), eb), dh) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), eh), bec) -> new_ltEs1(xuu47000, xuu48000, fc, fd) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_Maybe, bda), he, bah) -> new_lt3(xuu47000, xuu48000, bda) new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu47000, xuu48000, gf, gg) new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bdc), bdd)) -> new_ltEs0(xuu47000, xuu48000, bdc, bdd) new_ltEs(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_compare0(xuu47001, xuu48001, h) new_lt2(xuu47000, xuu48000, ec, ed, ee) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs2(xuu4700, xuu4800, bfb, bfc, bfd) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(ty_[], hf)) -> new_ltEs(xuu47002, xuu48002, hf) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_Maybe, ef)), dh), bec) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), he), bah), bec) -> new_lt1(xuu47000, xuu48000, bcd, bce) new_compare2(xuu47000, xuu48000, ea, eb) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) new_compare23(xuu47000, xuu48000, False, ef) -> new_ltEs3(xuu47000, xuu48000, ef) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(ty_Either, da), db)) -> new_ltEs1(xuu47001, xuu48001, da, db) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_[], bca)), he), bah), bec) -> new_lt(xuu47000, xuu48000, bca) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, bbh)), bah), bec) -> new_lt3(xuu47001, xuu48001, bbh) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(ty_Either, bbc), bbd), bah) -> new_lt1(xuu47001, xuu48001, bbc, bbd) new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(ty_Maybe, hc)) -> new_ltEs3(xuu47000, xuu48000, hc) new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_Either, beh), bfa)) -> new_ltEs1(xuu4700, xuu4800, beh, bfa) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(ty_Maybe, bbh), bah) -> new_lt3(xuu47001, xuu48001, bbh) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbc), bbd)), bah), bec) -> new_lt1(xuu47001, xuu48001, bbc, bbd) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_Maybe, ef), dh) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) new_ltEs(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) new_ltEs1(Left(xuu47000), Left(xuu48000), app(ty_Maybe, ga), eh) -> new_ltEs3(xuu47000, xuu48000, ga) new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_compare0(xuu47001, xuu48001, h) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(ty_[], hf)), bec) -> new_ltEs(xuu47002, xuu48002, hf) new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], h), bec) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg)), bec) -> new_ltEs0(xuu47001, xuu48001, cf, cg) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(ty_[], ce)), bec) -> new_ltEs(xuu47001, xuu48001, ce) new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg)), bec) -> new_ltEs1(xuu47000, xuu48000, gf, gg) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, baf)), bec) -> new_ltEs3(xuu47002, xuu48002, baf) new_compare20(xuu47000, xuu48000, False, cb, cc) -> new_ltEs0(xuu47000, xuu48000, cb, cc) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(app(ty_@3, bcf), bcg), bch), he, bah) -> new_lt2(xuu47000, xuu48000, bcf, bcg, bch) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(ty_Maybe, baf)) -> new_ltEs3(xuu47002, xuu48002, baf) new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, gh), ha), hb)), bec) -> new_ltEs2(xuu47000, xuu48000, gh, ha, hb) new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(ty_@2, gd), ge)), bec) -> new_ltEs0(xuu47000, xuu48000, gd, ge) new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_@2, fa), fb)), eh), bec) -> new_ltEs0(xuu47000, xuu48000, fa, fb) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_Either, bcd), bce), he, bah) -> new_lt1(xuu47000, xuu48000, bcd, bce) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_[], bca), he, bah) -> new_lt(xuu47000, xuu48000, bca) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_Either, ea), eb)), dh), bec) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) new_lt0(xuu47000, xuu48000, cb, cc) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(ty_@2, fa), fb), eh) -> new_ltEs0(xuu47000, xuu48000, fa, fb) new_ltEs3(Just(xuu47000), Just(xuu48000), app(ty_Maybe, beb)) -> new_ltEs3(xuu47000, xuu48000, beb) new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs0(xuu47000, xuu48000, gd, ge) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_@2, bcb), bcc)), he), bah), bec) -> new_lt0(xuu47000, xuu48000, bcb, bcc) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(ty_Either, baa), bab)) -> new_ltEs1(xuu47002, xuu48002, baa, bab) new_compare3(xuu47000, xuu48000, ec, ed, ee) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_lt3(xuu47000, xuu48000, ef) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs2(xuu47001, xuu48001, dc, dd, de) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, baa), bab)), bec) -> new_ltEs1(xuu47002, xuu48002, baa, bab) new_primCompAux(xuu47000, xuu48000, xuu207, app(app(ty_Either, bd), be)) -> new_compare2(xuu47000, xuu48000, bd, be) new_compare4(xuu47000, xuu48000, ef) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_Maybe, bfe)) -> new_ltEs3(xuu4700, xuu4800, bfe) new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], h), bec) -> new_compare0(xuu47001, xuu48001, h) new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, ff), fg), fh), eh) -> new_ltEs2(xuu47000, xuu48000, ff, fg, fh) new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs2(xuu47000, xuu48000, gh, ha, hb) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, bba), bbb)), bah), bec) -> new_lt0(xuu47001, xuu48001, bba, bbb) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_Maybe, bda)), he), bah), bec) -> new_lt3(xuu47000, xuu48000, bda) new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(app(ty_@3, bdg), bdh), bea)), bec) -> new_ltEs2(xuu47000, xuu48000, bdg, bdh, bea) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(ty_[], ce)) -> new_ltEs(xuu47001, xuu48001, ce) new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(ty_Either, fc), fd), eh) -> new_ltEs1(xuu47000, xuu48000, fc, fd) new_compare22(xuu47000, xuu48000, False, ec, ed, ee) -> new_ltEs2(xuu47000, xuu48000, ec, ed, ee) new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(ty_Either, bde), bdf)) -> new_ltEs1(xuu47000, xuu48000, bde, bdf) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs2(xuu47002, xuu48002, bac, bad, bae) new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(xuu47000, xuu48000, bdg, bdh, bea) new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(ty_[], gc)), bec) -> new_ltEs(xuu47000, xuu48000, gc) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_[], dg)), dh), bec) -> new_compare0(xuu47000, xuu48000, dg) new_ltEs3(Just(xuu47000), Just(xuu48000), app(ty_[], bdb)) -> new_ltEs(xuu47000, xuu48000, bdb) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh), bec) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_Maybe, beb)), bec) -> new_ltEs3(xuu47000, xuu48000, beb) new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(app(ty_@3, ff), fg), fh)), eh), bec) -> new_ltEs2(xuu47000, xuu48000, ff, fg, fh) new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(ty_Maybe, hc)), bec) -> new_ltEs3(xuu47000, xuu48000, hc) new_lt(xuu47000, xuu48000, dg) -> new_compare0(xuu47000, xuu48000, dg) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbe), bbf), bbg)), bah), bec) -> new_lt2(xuu47001, xuu48001, bbe, bbf, bbg) new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_[], bdb)), bec) -> new_ltEs(xuu47000, xuu48000, bdb) new_compare1(xuu47000, xuu48000, cb, cc) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_[], dg), dh) -> new_compare0(xuu47000, xuu48000, dg) new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dc), dd), de)), bec) -> new_ltEs2(xuu47001, xuu48001, dc, dd, de) new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bac), bad), bae)), bec) -> new_ltEs2(xuu47002, xuu48002, bac, bad, bae) new_lt1(xuu47000, xuu48000, ea, eb) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_lt2(xuu47001, xuu48001, bbe, bbf, bbg) new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_Maybe, ga)), eh), bec) -> new_ltEs3(xuu47000, xuu48000, ga) new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_Either, bde), bdf)), bec) -> new_ltEs1(xuu47000, xuu48000, bde, bdf) new_primCompAux(xuu47000, xuu48000, xuu207, app(app(ty_@2, bb), bc)) -> new_compare1(xuu47000, xuu48000, bb, bc) new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_[], bee)) -> new_ltEs(xuu4700, xuu4800, bee) new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_@2, cb), cc), dh) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT new_ltEs21(xuu47001, xuu48001, ty_Integer) -> new_ltEs12(xuu47001, xuu48001) new_compare27(Left(xuu4700), Right(xuu4800), False, bed, bec) -> LT new_pePe(True, xuu206) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, chf) -> new_esEs8(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(xuu40000, xuu3000, dcf, dcg, dch) new_ltEs20(xuu47002, xuu48002, app(ty_Maybe, baf)) -> new_ltEs15(xuu47002, xuu48002, baf) new_compare111(xuu47000, xuu48000, True, ec, ed, ee) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(ty_[], dca)) -> new_esEs16(xuu40000, xuu3000, dca) new_esEs14(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_ltEs6(GT, GT) -> True new_esEs12(xuu40001, xuu3001, app(ty_[], cbe)) -> new_esEs16(xuu40001, xuu3001, cbe) new_esEs18(True, True) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, chf) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, chf) -> new_esEs20(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), [], h) -> GT new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu47000, xuu48000, False, ef) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_esEs24(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(ty_[], bee)) -> new_ltEs5(xuu4700, xuu4800, bee) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, chb)) -> new_esEs7(xuu40000, xuu3000, chb) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Char, eh) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, app(ty_Ratio, bgg)) -> new_ltEs8(xuu4700, xuu4800, bgg) new_esEs13(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs28(xuu47000, xuu48000, app(ty_Maybe, ef)) -> new_esEs7(xuu47000, xuu48000, ef) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_ltEs6(EQ, GT) -> True new_compare113(xuu47000, xuu48000, False) -> GT new_esEs12(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_primCompAux0(xuu220, GT) -> GT new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bcd), bce)) -> new_esEs5(xuu47000, xuu48000, bcd, bce) new_esEs13(xuu40002, xuu3002, app(ty_Maybe, cda)) -> new_esEs7(xuu40002, xuu3002, cda) new_esEs24(xuu47001, xuu48001, ty_Char) -> new_esEs19(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs11(xuu47002, xuu48002, bac, bad, bae) new_compare27(Left(xuu4700), Left(xuu4800), False, bed, bec) -> new_compare112(xuu4700, xuu4800, new_ltEs18(xuu4700, xuu4800, bed), bed, bec) new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_ltEs21(xuu47001, xuu48001, app(app(ty_@2, cf), cg)) -> new_ltEs7(xuu47001, xuu48001, cf, cg) new_fsEs(xuu190) -> new_not(new_esEs8(xuu190, GT)) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, ddf)) -> new_esEs17(xuu40000, xuu3000, ddf) new_lt15(xuu47000, xuu48000, dg) -> new_esEs8(new_compare(xuu47000, xuu48000, dg), LT) new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) new_esEs24(xuu47001, xuu48001, app(app(ty_@2, bba), bbb)) -> new_esEs4(xuu47001, xuu48001, bba, bbb) new_ltEs13(True, True) -> True new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_lt13(xuu47001, xuu48001, app(app(ty_@2, bba), bbb)) -> new_lt12(xuu47001, xuu48001, bba, bbb) new_compare9(xuu47000, xuu48000, app(app(ty_@2, bb), bc)) -> new_compare13(xuu47000, xuu48000, bb, bc) new_esEs8(EQ, EQ) -> True new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu40000, xuu3000, dbg, dbh) new_primCompAux0(xuu220, LT) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_@0) -> new_lt19(xuu47001, xuu48001) new_esEs12(xuu40001, xuu3001, app(app(ty_Either, cba), cbb)) -> new_esEs5(xuu40001, xuu3001, cba, cbb) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], daf), chf) -> new_esEs16(xuu40000, xuu3000, daf) new_not(True) -> False new_compare9(xuu47000, xuu48000, app(app(app(ty_@3, bf), bg), bh)) -> new_compare6(xuu47000, xuu48000, bf, bg, bh) new_ltEs19(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_ltEs5(xuu4700, xuu4800, h) -> new_fsEs(new_compare(xuu4700, xuu4800, h)) new_lt13(xuu47001, xuu48001, ty_Double) -> new_lt11(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs6(xuu40000, xuu3000, cdd, cde, cdf) new_ltEs18(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, ced)) -> new_esEs17(xuu40000, xuu3000, ced) new_esEs24(xuu47001, xuu48001, ty_Float) -> new_esEs14(xuu47001, xuu48001) new_ltEs6(LT, GT) -> True new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Double, eh) -> new_ltEs9(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, chf) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu47000, xuu48000, False) -> new_compare113(xuu47000, xuu48000, new_ltEs13(xuu47000, xuu48000)) new_esEs13(xuu40002, xuu3002, app(app(ty_Either, ccc), ccd)) -> new_esEs5(xuu40002, xuu3002, ccc, ccd) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, ff), fg), fh), eh) -> new_ltEs11(xuu47000, xuu48000, ff, fg, fh) new_compare25(xuu47000, xuu48000, False, ec, ed, ee) -> new_compare111(xuu47000, xuu48000, new_ltEs11(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs12(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs11(xuu4700, xuu4800, bfb, bfc, bfd) new_lt14(xuu47000, xuu48000, app(app(ty_@2, bcb), bcc)) -> new_lt12(xuu47000, xuu48000, bcb, bcc) new_lt14(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_ltEs20(xuu47002, xuu48002, app(ty_Ratio, che)) -> new_ltEs8(xuu47002, xuu48002, che) new_lt20(xuu47000, xuu48000, app(app(ty_@2, cb), cc)) -> new_lt12(xuu47000, xuu48000, cb, cc) new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) new_lt8(xuu47000, xuu48000, ea, eb) -> new_esEs8(new_compare16(xuu47000, xuu48000, ea, eb), LT) new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt9(xuu47000, xuu48000) -> new_esEs8(new_compare12(xuu47000, xuu48000), LT) new_ltEs18(xuu4700, xuu4800, app(app(app(ty_@3, hd), he), bah)) -> new_ltEs11(xuu4700, xuu4800, hd, he, bah) new_ltEs20(xuu47002, xuu48002, ty_Bool) -> new_ltEs13(xuu47002, xuu48002) new_ltEs18(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) new_lt14(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT new_esEs28(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_@0, eh) -> new_ltEs16(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_compare13(xuu47000, xuu48000, cb, cc) -> new_compare29(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_Either, bd), be)) -> new_compare16(xuu47000, xuu48000, bd, be) new_lt16(xuu47000, xuu48000, dcd) -> new_esEs8(new_compare14(xuu47000, xuu48000, dcd), LT) new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_esEs28(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(app(ty_Either, ea), eb)) -> new_lt8(xuu47000, xuu48000, ea, eb) new_ltEs19(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_lt19(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_primPlusNat1(Succ(xuu50200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat1(xuu50200, xuu13100))) new_ltEs20(xuu47002, xuu48002, ty_Integer) -> new_ltEs12(xuu47002, xuu48002) new_compare9(xuu47000, xuu48000, ty_Integer) -> new_compare7(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(ty_[], dg)) -> new_lt15(xuu47000, xuu48000, dg) new_compare27(Right(xuu4700), Left(xuu4800), False, bed, bec) -> GT new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) new_compare9(xuu47000, xuu48000, ty_Ordering) -> new_compare12(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(ty_Maybe, dcc)) -> new_esEs7(xuu40000, xuu3000, dcc) new_sr(Integer(xuu470000), Integer(xuu480010)) -> Integer(new_primMulInt(xuu470000, xuu480010)) new_esEs28(xuu47000, xuu48000, app(ty_[], dg)) -> new_esEs16(xuu47000, xuu48000, dg) new_lt13(xuu47001, xuu48001, ty_Integer) -> new_lt6(xuu47001, xuu48001) new_pePe(False, xuu206) -> xuu206 new_esEs7(Nothing, Just(xuu3000), cfh) -> False new_esEs7(Just(xuu40000), Nothing, cfh) -> False new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, ty_Double) -> new_ltEs9(xuu47002, xuu48002) new_lt14(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_lt5(xuu47000, xuu48000, bcf, bcg, bch) new_compare210(xuu47000, xuu48000, True, ef) -> EQ new_esEs20(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare114(xuu47000, xuu48000, True, cb, cc) -> LT new_compare112(xuu180, xuu181, True, bge, bgf) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cgd), cge)) -> new_esEs5(xuu40000, xuu3000, cgd, cge) new_lt20(xuu47000, xuu48000, app(ty_Ratio, dcd)) -> new_lt16(xuu47000, xuu48000, dcd) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Ordering, eh) -> new_ltEs6(xuu47000, xuu48000) new_ltEs6(LT, LT) -> True new_compare7(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu187, xuu188, False, bgb, bgc) -> GT new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dad), dae), chf) -> new_esEs4(xuu40000, xuu3000, dad, dae) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, cea), ceb)) -> new_esEs4(xuu40000, xuu3000, cea, ceb) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, cfh) -> True new_lt13(xuu47001, xuu48001, ty_Char) -> new_lt17(xuu47001, xuu48001) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Bool) -> new_compare17(xuu47000, xuu48000) new_lt17(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu40000, xuu3000, ddc, ddd) new_compare26(@0, @0) -> EQ new_ltEs15(Nothing, Nothing, bfh) -> True new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_esEs13(xuu40002, xuu3002, app(app(ty_@2, cce), ccf)) -> new_esEs4(xuu40002, xuu3002, cce, ccf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs15(Just(xuu47000), Nothing, bfh) -> False new_esEs24(xuu47001, xuu48001, app(app(ty_Either, bbc), bbd)) -> new_esEs5(xuu47001, xuu48001, bbc, bbd) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare25(xuu47000, xuu48000, True, ec, ed, ee) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs28(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare114(xuu47000, xuu48000, False, cb, cc) -> GT new_ltEs20(xuu47002, xuu48002, ty_@0) -> new_ltEs16(xuu47002, xuu48002) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Float, eh) -> new_ltEs17(xuu47000, xuu48000) new_ltEs10(xuu4700, xuu4800) -> new_fsEs(new_compare8(xuu4700, xuu4800)) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, ddg)) -> new_esEs7(xuu40000, xuu3000, ddg) new_lt13(xuu47001, xuu48001, ty_Int) -> new_lt7(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs6(xuu47001, xuu48001, bbe, bbf, bbg) new_esEs11(xuu40000, xuu3000, app(ty_Ratio, cad)) -> new_esEs17(xuu40000, xuu3000, cad) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_ltEs21(xuu47001, xuu48001, app(ty_Maybe, df)) -> new_ltEs15(xuu47001, xuu48001, df) new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare15(xuu47000, xuu48000), LT) new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_esEs24(xuu47001, xuu48001, ty_Integer) -> new_esEs9(xuu47001, xuu48001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs6(xuu40000, xuu3000, cga, cgb, cgc) new_ltEs6(LT, EQ) -> True new_compare9(xuu47000, xuu48000, app(ty_[], ba)) -> new_compare(xuu47000, xuu48000, ba) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, chf) -> new_esEs9(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(ty_Maybe, cfg)) -> new_esEs7(xuu40001, xuu3001, cfg) new_esEs13(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bda)) -> new_esEs7(xuu47000, xuu48000, bda) new_lt14(xuu47000, xuu48000, app(ty_Maybe, bda)) -> new_lt18(xuu47000, xuu48000, bda) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, dab), dac), chf) -> new_esEs5(xuu40000, xuu3000, dab, dac) new_primCmpNat0(Zero, xuu4700) -> LT new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cdb, cdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, cdb), new_esEs22(xuu40001, xuu3001, cdc)) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, cdg), cdh)) -> new_esEs5(xuu40000, xuu3000, cdg, cdh) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs18(xuu4700, xuu4800, app(ty_Maybe, bfh)) -> new_ltEs15(xuu4700, xuu4800, bfh) new_esEs11(xuu40000, xuu3000, app(app(ty_@2, caa), cab)) -> new_esEs4(xuu40000, xuu3000, caa, cab) new_compare27(Right(xuu4700), Right(xuu4800), False, bed, bec) -> new_compare11(xuu4700, xuu4800, new_ltEs19(xuu4700, xuu4800, bec), bed, bec) new_esEs8(LT, LT) -> True new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), dce) -> new_asAs(new_esEs25(xuu40000, xuu3000, dce), new_esEs16(xuu40001, xuu3001, dce)) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs16(xuu4700, xuu4800) -> new_fsEs(new_compare26(xuu4700, xuu4800)) new_esEs13(xuu40002, xuu3002, ty_Integer) -> new_esEs9(xuu40002, xuu3002) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs6(xuu40001, xuu3001, cef, ceg, ceh) new_esEs23(xuu47000, xuu48000, app(ty_Ratio, chc)) -> new_esEs17(xuu47000, xuu48000, chc) new_primPlusNat1(Succ(xuu50200), Zero) -> Succ(xuu50200) new_primPlusNat1(Zero, Succ(xuu13100)) -> Succ(xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cgf), cgg)) -> new_esEs4(xuu40000, xuu3000, cgf, cgg) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) new_ltEs19(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_esEs12(xuu40001, xuu3001, app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu40001, xuu3001, cbc, cbd) new_esEs13(xuu40002, xuu3002, app(ty_Ratio, cch)) -> new_esEs17(xuu40002, xuu3002, cch) new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_Maybe, bbh)) -> new_esEs7(xuu47001, xuu48001, bbh) new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_esEs24(xuu47001, xuu48001, app(ty_Ratio, chd)) -> new_esEs17(xuu47001, xuu48001, chd) new_ltEs20(xuu47002, xuu48002, app(app(ty_@2, hg), hh)) -> new_ltEs7(xuu47002, xuu48002, hg, hh) new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(xuu47000, xuu48000, bcf, bcg, bch) new_esEs16([], [], dce) -> True new_esEs12(xuu40001, xuu3001, app(ty_Ratio, cbf)) -> new_esEs17(xuu40001, xuu3001, cbf) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_lt14(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare([], :(xuu48000, xuu48001), h) -> LT new_esEs11(xuu40000, xuu3000, app(app(ty_Either, bhg), bhh)) -> new_esEs5(xuu40000, xuu3000, bhg, bhh) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(ty_@2, bef), beg)) -> new_ltEs7(xuu4700, xuu4800, bef, beg) new_ltEs19(xuu4700, xuu4800, app(ty_Maybe, bfe)) -> new_ltEs15(xuu4700, xuu4800, bfe) new_esEs12(xuu40001, xuu3001, app(ty_Maybe, cbg)) -> new_esEs7(xuu40001, xuu3001, cbg) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(ty_Ratio, bfg)) -> new_ltEs8(xuu47000, xuu48000, bfg) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bdc), bdd)) -> new_ltEs7(xuu47000, xuu48000, bdc, bdd) new_compare210(xuu47000, xuu48000, False, ef) -> new_compare110(xuu47000, xuu48000, new_ltEs15(xuu47000, xuu48000, ef), ef) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, cfa), cfb)) -> new_esEs5(xuu40001, xuu3001, cfa, cfb) new_primCmpNat2(xuu4700, Zero) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cha)) -> new_esEs17(xuu40000, xuu3000, cha) new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare16(xuu47000, xuu48000, ea, eb) -> new_compare27(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Maybe, beb)) -> new_ltEs15(xuu47000, xuu48000, beb) new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(xuu40000, xuu3000, bhd, bhe, bhf) new_esEs23(xuu47000, xuu48000, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xuu47000, xuu48000, bcb, bcc) new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Int, eh) -> new_ltEs14(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(ty_Maybe, hc)) -> new_ltEs15(xuu47000, xuu48000, hc) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_ltEs21(xuu47001, xuu48001, ty_Double) -> new_ltEs9(xuu47001, xuu48001) new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_compare8(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_Maybe, cae)) -> new_esEs7(xuu40000, xuu3000, cae) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_lt13(xuu47001, xuu48001, app(ty_[], bag)) -> new_lt15(xuu47001, xuu48001, bag) new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu40000, xuu3000, dbb, dbc, dbd) new_compare28(xuu47000, xuu48000, True) -> EQ new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs4(xuu47000, xuu48000, gf, gg) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, cfc), cfd)) -> new_esEs4(xuu40001, xuu3001, cfc, cfd) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, dag), chf) -> new_esEs17(xuu40000, xuu3000, dag) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_[], eg), eh) -> new_ltEs5(xuu47000, xuu48000, eg) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Maybe, ga), eh) -> new_ltEs15(xuu47000, xuu48000, ga) new_ltEs6(GT, EQ) -> False new_primCmpNat1(Succ(xuu47000), Zero) -> GT new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(ty_Ratio, dcb)) -> new_esEs17(xuu40000, xuu3000, dcb) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) new_compare111(xuu47000, xuu48000, False, ec, ed, ee) -> GT new_lt13(xuu47001, xuu48001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt5(xuu47001, xuu48001, bbe, bbf, bbg) new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) new_primCompAux1(xuu47000, xuu48000, xuu207, h) -> new_primCompAux0(xuu207, new_compare9(xuu47000, xuu48000, h)) new_ltEs20(xuu47002, xuu48002, app(app(ty_Either, baa), bab)) -> new_ltEs4(xuu47002, xuu48002, baa, bab) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(ty_[], gc)) -> new_ltEs5(xuu47000, xuu48000, gc) new_esEs12(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_compare19(xuu47000, xuu48000, ef) -> new_compare210(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) new_ltEs21(xuu47001, xuu48001, ty_@0) -> new_ltEs16(xuu47001, xuu48001) new_ltEs18(xuu4700, xuu4800, app(app(ty_@2, cd), dh)) -> new_ltEs7(xuu4700, xuu4800, cd, dh) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_asAs(True, xuu175) -> xuu175 new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ddh) -> new_asAs(new_esEs26(xuu40000, xuu3000, ddh), new_esEs27(xuu40001, xuu3001, ddh)) new_compare113(xuu47000, xuu48000, True) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu40001, xuu3001, caf, cag, cah) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare7(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) new_lt13(xuu47001, xuu48001, app(app(ty_Either, bbc), bbd)) -> new_lt8(xuu47001, xuu48001, bbc, bbd) new_lt14(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs18(False, False) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs19(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare15(xuu4700, xuu4800)) new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_lt12(xuu47000, xuu48000, cb, cc) -> new_esEs8(new_compare13(xuu47000, xuu48000, cb, cc), LT) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, cff)) -> new_esEs17(xuu40001, xuu3001, cff) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_@0) -> new_compare26(xuu47000, xuu48000) new_compare10(xuu47000, xuu48000, False) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_[], bag)) -> new_esEs16(xuu47001, xuu48001, bag) new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Ratio, bga)) -> new_ltEs8(xuu47000, xuu48000, bga) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(xuu4700, xuu4800) -> new_fsEs(new_compare5(xuu4700, xuu4800)) new_lt13(xuu47001, xuu48001, app(ty_Maybe, bbh)) -> new_lt18(xuu47001, xuu48001, bbh) new_ltEs21(xuu47001, xuu48001, app(ty_Ratio, dea)) -> new_ltEs8(xuu47001, xuu48001, dea) new_ltEs6(EQ, LT) -> False new_compare12(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) new_ltEs18(xuu4700, xuu4800, app(app(ty_Either, gb), eh)) -> new_ltEs4(xuu4700, xuu4800, gb, eh) new_ltEs13(False, True) -> True new_ltEs13(False, False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), dba, app(app(ty_Either, dbe), dbf)) -> new_esEs5(xuu40000, xuu3000, dbe, dbf) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bha, bhb, bhc) -> new_asAs(new_esEs11(xuu40000, xuu3000, bha), new_asAs(new_esEs12(xuu40001, xuu3001, bhb), new_esEs13(xuu40002, xuu3002, bhc))) new_esEs9(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_lt14(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs6(xuu40002, xuu3002, cbh, cca, ccb) new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCompAux0(xuu220, EQ) -> xuu220 new_lt14(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Double) -> new_compare15(xuu47000, xuu48000) new_esEs15(@0, @0) -> True new_compare9(xuu47000, xuu48000, ty_Char) -> new_compare8(xuu47000, xuu48000) new_lt13(xuu47001, xuu48001, ty_Ordering) -> new_lt9(xuu47001, xuu48001) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_compare([], [], h) -> EQ new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cee)) -> new_esEs7(xuu40000, xuu3000, cee) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_compare24(xuu47000, xuu48000, True) -> EQ new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_Either, fc), fd), eh) -> new_ltEs4(xuu47000, xuu48000, fc, fd) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, dda), ddb)) -> new_esEs5(xuu40000, xuu3000, dda, ddb) new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_ltEs7(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, dh) -> new_pePe(new_lt20(xuu47000, xuu48000, cd), new_asAs(new_esEs28(xuu47000, xuu48000, cd), new_ltEs21(xuu47001, xuu48001, dh))) new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_lt10(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) new_esEs25(xuu40000, xuu3000, app(ty_[], dde)) -> new_esEs16(xuu40000, xuu3000, dde) new_lt14(xuu47000, xuu48000, app(ty_[], bca)) -> new_lt15(xuu47000, xuu48000, bca) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, app(app(ty_Either, bcd), bce)) -> new_lt8(xuu47000, xuu48000, bcd, bce) new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_Either, bde), bdf)) -> new_ltEs4(xuu47000, xuu48000, bde, bdf) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, chg), chh), daa), chf) -> new_esEs6(xuu40000, xuu3000, chg, chh, daa) new_compare24(xuu47000, xuu48000, False) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000)) new_ltEs21(xuu47001, xuu48001, app(app(ty_Either, da), db)) -> new_ltEs4(xuu47001, xuu48001, da, db) new_compare112(xuu180, xuu181, False, bge, bgf) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, dah), chf) -> new_esEs7(xuu40000, xuu3000, dah) new_ltEs19(xuu4700, xuu4800, app(ty_Ratio, bgh)) -> new_ltEs8(xuu4700, xuu4800, bgh) new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(ty_[], ccg)) -> new_esEs16(xuu40002, xuu3002, ccg) new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_not(False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), dba, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_@0) -> new_esEs15(xuu40002, xuu3002) new_lt7(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) new_ltEs15(Nothing, Just(xuu48000), bfh) -> True new_lt18(xuu47000, xuu48000, ef) -> new_esEs8(new_compare19(xuu47000, xuu48000, ef), LT) new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs11(xuu47000, xuu48000, bdg, bdh, bea) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) new_esEs5(Left(xuu40000), Right(xuu3000), dba, chf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), dba, chf) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], cgh)) -> new_esEs16(xuu40000, xuu3000, cgh) new_compare27(xuu470, xuu480, True, bed, bec) -> EQ new_esEs13(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) new_ltEs4(Left(xuu47000), Right(xuu48000), gb, eh) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, chf) -> new_esEs10(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, app(ty_[], h)) -> new_ltEs5(xuu4700, xuu4800, h) new_esEs13(xuu40002, xuu3002, ty_Double) -> new_esEs20(xuu40002, xuu3002) new_ltEs21(xuu47001, xuu48001, app(ty_[], ce)) -> new_ltEs5(xuu47001, xuu48001, ce) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Bool, eh) -> new_ltEs13(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_ltEs21(xuu47001, xuu48001, ty_Bool) -> new_ltEs13(xuu47001, xuu48001) new_primPlusNat0(Succ(xuu1400), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1400, xuu300000))) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_compare11(xuu187, xuu188, True, bgb, bgc) -> LT new_lt5(xuu47000, xuu48000, ec, ed, ee) -> new_esEs8(new_compare6(xuu47000, xuu48000, ec, ed, ee), LT) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs14(xuu40000, xuu3000) new_lt14(xuu47000, xuu48000, app(ty_Ratio, chc)) -> new_lt16(xuu47000, xuu48000, chc) new_esEs12(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_primCmpNat1(Zero, Succ(xuu48000)) -> LT new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs19(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, ty_Int) -> new_esEs10(xuu47001, xuu48001) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_compare9(xuu47000, xuu48000, app(ty_Maybe, ca)) -> new_compare19(xuu47000, xuu48000, ca) new_compare10(xuu47000, xuu48000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare29(xuu47000, xuu48000, False, cb, cc) -> new_compare114(xuu47000, xuu48000, new_ltEs7(xuu47000, xuu48000, cb, cc), cb, cc) new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_Float) -> new_esEs14(xuu40002, xuu3002) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(xuu4700, xuu4800, bgg) -> new_fsEs(new_compare14(xuu4700, xuu4800, bgg)) new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_Float) -> new_lt4(xuu47001, xuu48001) new_ltEs13(True, False) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Integer, eh) -> new_ltEs12(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(ty_[], cec)) -> new_esEs16(xuu40000, xuu3000, cec) new_ltEs21(xuu47001, xuu48001, ty_Float) -> new_ltEs17(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(ty_Ratio, dcd)) -> new_esEs17(xuu47000, xuu48000, dcd) new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt4(xuu47000, xuu48000) -> new_esEs8(new_compare5(xuu47000, xuu48000), LT) new_lt13(xuu47001, xuu48001, ty_Bool) -> new_lt10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(app(ty_Either, beh), bfa)) -> new_ltEs4(xuu4700, xuu4800, beh, bfa) new_compare17(xuu47000, xuu48000) -> new_compare28(xuu47000, xuu48000, new_esEs18(xuu47000, xuu48000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare6(xuu47000, xuu48000, ec, ed, ee) -> new_compare25(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_esEs28(xuu47000, xuu48000, app(app(ty_@2, cb), cc)) -> new_esEs4(xuu47000, xuu48000, cb, cc) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_@2, fa), fb), eh) -> new_ltEs7(xuu47000, xuu48000, fa, fb) new_compare29(xuu47000, xuu48000, True, cb, cc) -> EQ new_ltEs21(xuu47001, xuu48001, ty_Int) -> new_ltEs14(xuu47001, xuu48001) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_[], bdb)) -> new_ltEs5(xuu47000, xuu48000, bdb) new_lt20(xuu47000, xuu48000, app(ty_Maybe, ef)) -> new_lt18(xuu47000, xuu48000, ef) new_ltEs20(xuu47002, xuu48002, ty_Ordering) -> new_ltEs6(xuu47002, xuu48002) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Float) -> new_compare5(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Ratio, bff), eh) -> new_ltEs8(xuu47000, xuu48000, bff) new_esEs16(:(xuu40000, xuu40001), [], dce) -> False new_esEs16([], :(xuu3000, xuu3001), dce) -> False new_ltEs20(xuu47002, xuu48002, ty_Char) -> new_ltEs10(xuu47002, xuu48002) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs23(xuu47000, xuu48000, app(ty_[], bca)) -> new_esEs16(xuu47000, xuu48000, bca) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs11(xuu47000, xuu48000, gh, ha, hb) new_esEs24(xuu47001, xuu48001, ty_Bool) -> new_esEs18(xuu47001, xuu48001) new_compare9(xuu47000, xuu48000, app(ty_Ratio, bgd)) -> new_compare14(xuu47000, xuu48000, bgd) new_primEqNat0(Zero, Zero) -> True new_esEs24(xuu47001, xuu48001, ty_@0) -> new_esEs15(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(app(ty_Either, ea), eb)) -> new_esEs5(xuu47000, xuu48000, ea, eb) new_ltEs11(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, bah) -> new_pePe(new_lt14(xuu47000, xuu48000, hd), new_asAs(new_esEs23(xuu47000, xuu48000, hd), new_pePe(new_lt13(xuu47001, xuu48001, he), new_asAs(new_esEs24(xuu47001, xuu48001, he), new_ltEs20(xuu47002, xuu48002, bah))))) new_ltEs21(xuu47001, xuu48001, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs11(xuu47001, xuu48001, dc, dd, de) new_ltEs21(xuu47001, xuu48001, ty_Ordering) -> new_ltEs6(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(ty_[], hf)) -> new_ltEs5(xuu47002, xuu48002, hf) new_esEs28(xuu47000, xuu48000, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs6(xuu47000, xuu48000, ec, ed, ee) new_compare110(xuu47000, xuu48000, True, ef) -> LT new_esEs12(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, chf) -> new_esEs18(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, ty_Double) -> new_esEs20(xuu47001, xuu48001) new_esEs22(xuu40001, xuu3001, app(ty_[], cfe)) -> new_esEs16(xuu40001, xuu3001, cfe) new_asAs(False, xuu175) -> False new_ltEs21(xuu47001, xuu48001, ty_Char) -> new_ltEs10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Float) -> new_ltEs17(xuu47002, xuu48002) new_ltEs4(Right(xuu47000), Right(xuu48000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs7(xuu47000, xuu48000, gd, ge) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, chf) -> new_esEs15(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_primCompAux1(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) new_lt13(xuu47001, xuu48001, app(ty_Ratio, chd)) -> new_lt16(xuu47001, xuu48001, chd) new_esEs13(xuu40002, xuu3002, ty_Bool) -> new_esEs18(xuu40002, xuu3002) new_ltEs4(Right(xuu47000), Left(xuu48000), gb, eh) -> False new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, ec), ed), ee)) -> new_lt5(xuu47000, xuu48000, ec, ed, ee) new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_[], cac)) -> new_esEs16(xuu40000, xuu3000, cac) new_ltEs6(GT, LT) -> False new_ltEs19(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Int) -> new_ltEs14(xuu47002, xuu48002) The set Q consists of the following terms: new_compare25(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Float) new_esEs8(EQ, EQ) new_compare27(Left(x0), Left(x1), False, x2, x3) new_compare9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_@0) new_lt13(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Float) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Double) new_ltEs16(x0, x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, ty_Char) new_primCmpNat1(Zero, Zero) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(LT, LT) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs18(True, True) new_compare18(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, app(ty_[], x2)) new_lt15(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, ty_Float) new_primCompAux0(x0, LT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_pePe(False, x0) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Float) new_compare28(x0, x1, True) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare9(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Float) new_compare10(x0, x1, True) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare113(x0, x1, True) new_esEs11(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, False, x2) new_esEs11(x0, x1, ty_Bool) new_lt8(x0, x1, x2, x3) new_ltEs10(x0, x1) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt12(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Integer) new_compare9(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_compare112(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Float) new_compare210(x0, x1, True, x2) new_ltEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_compare24(x0, x1, False) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare8(Char(x0), Char(x1)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare([], [], x0) new_esEs25(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt11(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_sr(Integer(x0), Integer(x1)) new_compare25(x0, x1, True, x2, x3, x4) new_ltEs18(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, x2) new_ltEs15(Nothing, Just(x0), x1) new_compare9(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare9(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs23(x0, x1, ty_Float) new_compare9(x0, x1, ty_Double) new_esEs21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Integer) new_esEs15(@0, @0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_compare6(x0, x1, x2, x3, x4) new_lt10(x0, x1) new_esEs25(x0, x1, ty_@0) new_compare(:(x0, x1), [], x2) new_compare16(x0, x1, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Double) new_compare29(x0, x1, False, x2, x3) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Nothing, Just(x0), x1) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(False, True) new_esEs18(True, False) new_lt20(x0, x1, ty_Integer) new_lt18(x0, x1, x2) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs12(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs9(Integer(x0), Integer(x1)) new_compare114(x0, x1, False, x2, x3) new_lt4(x0, x1) new_esEs22(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Int) new_lt14(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqNat0(Zero, Succ(x0)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs19(Char(x0), Char(x1)) new_esEs8(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, ty_Int) new_compare27(Right(x0), Right(x1), False, x2, x3) new_lt20(x0, x1, ty_Ordering) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_primCmpNat2(x0, Zero) new_primPlusNat0(Succ(x0), x1) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(LT, LT) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs21(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpNat0(Succ(x0), x1) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs12(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt17(x0, x1) new_esEs24(x0, x1, ty_Double) new_esEs16([], [], x0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, True, x2, x3, x4) new_lt13(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat1(Succ(x0), Zero) new_ltEs14(x0, x1) new_asAs(True, x0) new_esEs11(x0, x1, ty_Ordering) new_compare9(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs15(Nothing, Nothing, x0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs13(True, True) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(Left(x0), Right(x1), False, x2, x3) new_compare27(Right(x0), Left(x1), False, x2, x3) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare114(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs13(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs20(x0, x1, ty_Ordering) new_compare110(x0, x1, False, x2) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs6(EQ, EQ) new_esEs22(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1, app(ty_[], x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, ty_Bool) new_compare111(x0, x1, False, x2, x3, x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt14(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Zero, Succ(x0)) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_lt14(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_compare([], :(x0, x1), x2) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Int) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs21(x0, x1, ty_Double) new_not(True) new_lt7(x0, x1) new_esEs11(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs15(Just(x0), Nothing, x1) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(False, False) new_compare(:(x0, x1), :(x2, x3), x4) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_compare12(x0, x1) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Char) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs21(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare26(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_primCompAux0(x0, GT) new_esEs13(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs18(False, False) new_esEs13(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_compare7(Integer(x0), Integer(x1)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt5(x0, x1, x2, x3, x4) new_esEs25(x0, x1, ty_Double) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs18(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_esEs13(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, EQ) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1) new_esEs11(x0, x1, ty_Int) new_pePe(True, x0) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs12(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs13(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs16(:(x0, x1), [], x2) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs21(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs6(GT, GT) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_fsEs(x0) new_ltEs20(x0, x1, ty_@0) new_compare9(x0, x1, ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs23(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, True, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_sr0(x0, x1) new_esEs16([], :(x0, x1), x2) new_esEs7(Just(x0), Nothing, x1) new_esEs26(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_lt14(x0, x1, ty_Integer) new_compare113(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_primCmpNat2(x0, Succ(x1)) new_not(False) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare11(x0, x1, False, x2, x3) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_lt14(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Double) new_ltEs9(x0, x1) new_esEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2, x3) new_compare17(x0, x1) new_esEs7(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Zero) new_esEs28(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, False) new_lt16(x0, x1, x2) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Ordering) new_lt14(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_ltEs8(x0, x1, x2) new_compare19(x0, x1, 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_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_compare0(xuu47001, xuu48001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare4(xuu47000, xuu48000, ef) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bdc), bdd)) -> new_ltEs0(xuu47000, xuu48000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_Either, ea), eb), dh) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs0(xuu47001, xuu48001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt(xuu47000, xuu48000, dg) -> new_compare0(xuu47000, xuu48000, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare22(xuu47000, xuu48000, False, ec, ed, ee) -> new_ltEs2(xuu47000, xuu48000, ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(xuu47000, xuu48000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs2(xuu47001, xuu48001, dc, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt2(xuu47000, xuu48000, ec, ed, ee) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare3(xuu47000, xuu48000, ec, ed, ee) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], h), bec) -> new_primCompAux(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs3(Just(xuu47000), Just(xuu48000), app(app(ty_Either, bde), bdf)) -> new_ltEs1(xuu47000, xuu48000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(app(ty_Either, da), db)) -> new_ltEs1(xuu47001, xuu48001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(:(xuu47000, xuu47001), :(xuu48000, xuu48001), h) -> new_compare0(xuu47001, xuu48001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(xuu47000, xuu48000, cb, cc) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_Either, ea), eb)), dh), bec) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs2(xuu47002, xuu48002, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(ty_Either, baa), bab)) -> new_ltEs1(xuu47002, xuu48002, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt3(xuu47000, xuu48000, ef) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(Just(xuu47000), Just(xuu48000), app(ty_Maybe, beb)) -> new_ltEs3(xuu47000, xuu48000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(xuu47000), Just(xuu48000), app(ty_[], bdb)) -> new_ltEs(xuu47000, xuu48000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(ty_Maybe, df)) -> new_ltEs3(xuu47001, xuu48001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), cd, app(ty_[], ce)) -> new_ltEs(xuu47001, xuu48001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(ty_[], hf)) -> new_ltEs(xuu47002, xuu48002, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(app(ty_@2, hg), hh)) -> new_ltEs0(xuu47002, xuu48002, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(xuu47000, xuu48000, False, cb, cc) -> new_ltEs0(xuu47000, xuu48000, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, he, app(ty_Maybe, baf)) -> new_ltEs3(xuu47002, xuu48002, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(xuu47000, xuu48000, False, ef) -> new_ltEs3(xuu47000, xuu48000, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt1(xuu47000, xuu48000, ea, eb) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(xuu47000, xuu48000, ea, eb) -> new_compare21(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(xuu47000, xuu48000, xuu207, app(app(ty_Either, bd), be)) -> new_compare2(xuu47000, xuu48000, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_Maybe, ef), dh) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_Maybe, ef)), dh), bec) -> new_compare23(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare1(xuu47000, xuu48000, cb, cc) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_[], dg), dh) -> new_compare0(xuu47000, xuu48000, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(xuu47000, xuu48000, xuu207, app(ty_[], ba)) -> new_compare0(xuu47000, xuu48000, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_@2, cb), cc), dh) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh), bec) -> new_compare20(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(xuu47000, xuu48000, xuu207, app(app(app(ty_@3, bf), bg), bh)) -> new_compare3(xuu47000, xuu48000, bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(xuu47000, xuu48000, xuu207, app(ty_Maybe, ca)) -> new_compare4(xuu47000, xuu48000, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu47000, xuu48000, xuu207, app(app(ty_@2, bb), bc)) -> new_compare1(xuu47000, xuu48000, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bec) -> new_compare22(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(ty_@2, fa), fb), eh) -> new_ltEs0(xuu47000, xuu48000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs0(xuu47000, xuu48000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(xuu4700, xuu4800, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hg), hh)), bec) -> new_ltEs0(xuu47002, xuu48002, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_@2, bdc), bdd)), bec) -> new_ltEs0(xuu47000, xuu48000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg)), bec) -> new_ltEs0(xuu47001, xuu48001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(ty_@2, gd), ge)), bec) -> new_ltEs0(xuu47000, xuu48000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_@2, fa), fb)), eh), bec) -> new_ltEs0(xuu47000, xuu48000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, ff), fg), fh), eh) -> new_ltEs2(xuu47000, xuu48000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs2(xuu47000, xuu48000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs2(xuu4700, xuu4800, bfb, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, gh), ha), hb)), bec) -> new_ltEs2(xuu47000, xuu48000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(app(ty_@3, bdg), bdh), bea)), bec) -> new_ltEs2(xuu47000, xuu48000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(app(ty_@3, ff), fg), fh)), eh), bec) -> new_ltEs2(xuu47000, xuu48000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dc), dd), de)), bec) -> new_ltEs2(xuu47001, xuu48001, dc, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bac), bad), bae)), bec) -> new_ltEs2(xuu47002, xuu48002, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu47000, xuu48000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu47000), Left(xuu48000), app(app(ty_Either, fc), fd), eh) -> new_ltEs1(xuu47000, xuu48000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(app(ty_Either, da), db)), bec) -> new_ltEs1(xuu47001, xuu48001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), eh), bec) -> new_ltEs1(xuu47000, xuu48000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_Either, beh), bfa)) -> new_ltEs1(xuu4700, xuu4800, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg)), bec) -> new_ltEs1(xuu47000, xuu48000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, baa), bab)), bec) -> new_ltEs1(xuu47002, xuu48002, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_Either, bde), bdf)), bec) -> new_ltEs1(xuu47000, xuu48000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(ty_Maybe, hc)) -> new_ltEs3(xuu47000, xuu48000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu47000), Left(xuu48000), app(ty_Maybe, ga), eh) -> new_ltEs3(xuu47000, xuu48000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(xuu47000), Right(xuu48000), gb, app(ty_[], gc)) -> new_ltEs(xuu47000, xuu48000, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu47000), Left(xuu48000), app(ty_[], eg), eh) -> new_ltEs(xuu47000, xuu48000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(ty_Maybe, df)), bec) -> new_ltEs3(xuu47001, xuu48001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, baf)), bec) -> new_ltEs3(xuu47002, xuu48002, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_Maybe, bfe)) -> new_ltEs3(xuu4700, xuu4800, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_Maybe, beb)), bec) -> new_ltEs3(xuu47000, xuu48000, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(ty_Maybe, hc)), bec) -> new_ltEs3(xuu47000, xuu48000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_Maybe, ga)), eh), bec) -> new_ltEs3(xuu47000, xuu48000, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_[], eg)), eh), bec) -> new_ltEs(xuu47000, xuu48000, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), he), app(ty_[], hf)), bec) -> new_ltEs(xuu47002, xuu48002, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, cd), app(ty_[], ce)), bec) -> new_ltEs(xuu47001, xuu48001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, gb), app(ty_[], gc)), bec) -> new_ltEs(xuu47000, xuu48000, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_[], bdb)), bec) -> new_ltEs(xuu47000, xuu48000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_[], bee)) -> new_ltEs(xuu4700, xuu4800, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bcf), bcg), bch)), he), bah), bec) -> new_lt2(xuu47000, xuu48000, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbe), bbf), bbg)), bah), bec) -> new_lt2(xuu47001, xuu48001, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], h), bec) -> new_compare0(xuu47001, xuu48001, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_[], dg)), dh), bec) -> new_compare0(xuu47000, xuu48000, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_@2, bcb), bcc)), he), bah), bec) -> new_lt0(xuu47000, xuu48000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, bba), bbb)), bah), bec) -> new_lt0(xuu47001, xuu48001, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, bbh)), bah), bec) -> new_lt3(xuu47001, xuu48001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_Maybe, bda)), he), bah), bec) -> new_lt3(xuu47000, xuu48000, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(ty_[], bag)), bah), bec) -> new_lt(xuu47001, xuu48001, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_[], bca)), he), bah), bec) -> new_lt(xuu47000, xuu48000, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), he), bah), bec) -> new_lt1(xuu47000, xuu48000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbc), bbd)), bah), bec) -> new_lt1(xuu47001, xuu48001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(app(ty_@3, bcf), bcg), bch), he, bah) -> new_lt2(xuu47000, xuu48000, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_lt2(xuu47001, xuu48001, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_@2, bcb), bcc), he, bah) -> new_lt0(xuu47000, xuu48000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(ty_@2, bba), bbb), bah) -> new_lt0(xuu47001, xuu48001, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_Maybe, bda), he, bah) -> new_lt3(xuu47000, xuu48000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(ty_Maybe, bbh), bah) -> new_lt3(xuu47001, xuu48001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(ty_[], bag), bah) -> new_lt(xuu47001, xuu48001, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_[], bca), he, bah) -> new_lt(xuu47000, xuu48000, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), hd, app(app(ty_Either, bbc), bbd), bah) -> new_lt1(xuu47001, xuu48001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_Either, bcd), bce), he, bah) -> new_lt1(xuu47000, xuu48000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT new_ltEs21(xuu47001, xuu48001, ty_Integer) -> new_ltEs12(xuu47001, xuu48001) new_compare27(Left(xuu4700), Right(xuu4800), False, bde, bdf) -> LT new_pePe(True, xuu206) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, chf) -> new_esEs8(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs6(xuu40000, xuu3000, dge, dgf, dgg) new_ltEs20(xuu47002, xuu48002, app(ty_Maybe, ddf)) -> new_ltEs15(xuu47002, xuu48002, ddf) new_compare111(xuu47000, xuu48000, True, gd, ge, gf) -> LT new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_[], dfh)) -> new_esEs16(xuu40000, xuu3000, dfh) new_esEs14(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_ltEs6(GT, GT) -> True new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs12(xuu40001, xuu3001, app(ty_[], cac)) -> new_esEs16(xuu40001, xuu3001, cac) new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs18(True, True) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, chf) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(app(ty_@2, cbh), cca)) -> new_esEs4(xuu4000, xuu300, cbh, cca) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, chf) -> new_esEs20(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), [], bac) -> GT new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu47000, xuu48000, False, bbf) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_esEs24(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(ty_[], bee)) -> new_ltEs5(xuu4700, xuu4800, bee) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfh)) -> new_esEs7(xuu40000, xuu3000, cfh) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Char, cb) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, app(ty_Ratio, bea)) -> new_ltEs8(xuu4700, xuu4800, bea) new_esEs13(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs28(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_esEs7(xuu47000, xuu48000, bbf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_ltEs6(EQ, GT) -> True new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs14(xuu19, xuu14) new_compare113(xuu47000, xuu48000, False) -> GT new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs19(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_primCompAux0(xuu220, GT) -> GT new_esEs23(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_esEs5(xuu47000, xuu48000, dae, daf) new_esEs13(xuu40002, xuu3002, app(ty_Maybe, cbg)) -> new_esEs7(xuu40002, xuu3002, cbg) new_esEs24(xuu47001, xuu48001, ty_Char) -> new_esEs19(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs11(xuu47002, xuu48002, ddc, ddd, dde) new_compare27(Left(xuu4700), Left(xuu4800), False, bde, bdf) -> new_compare112(xuu4700, xuu4800, new_ltEs18(xuu4700, xuu4800, bde), bde, bdf) new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_ltEs21(xuu47001, xuu48001, app(app(ty_@2, dhh), eaa)) -> new_ltEs7(xuu47001, xuu48001, dhh, eaa) new_fsEs(xuu190) -> new_not(new_esEs8(xuu190, GT)) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, dhe)) -> new_esEs17(xuu40000, xuu3000, dhe) new_lt15(xuu47000, xuu48000, dgc) -> new_esEs8(new_compare(xuu47000, xuu48000, dgc), LT) new_esEs31(xuu4000, xuu300, app(ty_Ratio, baa)) -> new_esEs17(xuu4000, xuu300, baa) new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs6(xuu19, xuu14, cgc, cgd, cge) new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) new_esEs24(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_esEs4(xuu47001, xuu48001, dbd, dbe) new_ltEs13(True, True) -> True new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_lt13(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_lt12(xuu47001, xuu48001, dbd, dbe) new_compare9(xuu47000, xuu48000, app(app(ty_@2, bae), baf)) -> new_compare13(xuu47000, xuu48000, bae, baf) new_esEs8(EQ, EQ) -> True new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_@2, dff), dfg)) -> new_esEs4(xuu40000, xuu3000, dff, dfg) new_primCompAux0(xuu220, LT) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_@0) -> new_lt19(xuu47001, xuu48001) new_esEs12(xuu40001, xuu3001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(xuu40001, xuu3001, bhg, bhh) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], def), chf) -> new_esEs16(xuu40000, xuu3000, def) new_not(True) -> False new_compare9(xuu47000, xuu48000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare6(xuu47000, xuu48000, bbb, bbc, bbd) new_ltEs19(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_ltEs5(xuu4700, xuu4800, bac) -> new_fsEs(new_compare(xuu4700, xuu4800, bac)) new_lt13(xuu47001, xuu48001, ty_Double) -> new_lt11(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs6(xuu40000, xuu3000, ccb, ccc, ccd) new_ltEs18(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, cdb)) -> new_esEs17(xuu40000, xuu3000, cdb) new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs24(xuu47001, xuu48001, ty_Float) -> new_esEs14(xuu47001, xuu48001) new_ltEs6(LT, GT) -> True new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Double, cb) -> new_ltEs9(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, chf) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu47000, xuu48000, False) -> new_compare113(xuu47000, xuu48000, new_ltEs13(xuu47000, xuu48000)) new_esEs13(xuu40002, xuu3002, app(app(ty_Either, cba), cbb)) -> new_esEs5(xuu40002, xuu3002, cba, cbb) new_esEs32(xuu36, xuu31, app(ty_[], bch)) -> new_esEs16(xuu36, xuu31, bch) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs11(xuu47000, xuu48000, da, db, dc) new_compare25(xuu47000, xuu48000, False, gd, ge, gf) -> new_compare111(xuu47000, xuu48000, new_ltEs11(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs12(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs11(xuu4700, xuu4800, bfc, bfd, bfe) new_lt14(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_lt12(xuu47000, xuu48000, dab, dac) new_lt14(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_ltEs20(xuu47002, xuu48002, app(ty_Ratio, dch)) -> new_ltEs8(xuu47002, xuu48002, dch) new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs15(xuu36, xuu31) new_lt20(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_lt12(xuu47000, xuu48000, cga, cgb) new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) new_lt8(xuu47000, xuu48000, bdc, bdd) -> new_esEs8(new_compare16(xuu47000, xuu48000, bdc, bdd), LT) new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt9(xuu47000, xuu48000) -> new_esEs8(new_compare12(xuu47000, xuu48000), LT) new_ltEs18(xuu4700, xuu4800, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs11(xuu4700, xuu4800, beb, bec, bed) new_ltEs20(xuu47002, xuu48002, ty_Bool) -> new_ltEs13(xuu47002, xuu48002) new_ltEs18(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) new_lt14(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT new_esEs28(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_@0, cb) -> new_ltEs16(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_compare13(xuu47000, xuu48000, cga, cgb) -> new_compare29(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cga, cgb), cga, cgb) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_Either, bah), bba)) -> new_compare16(xuu47000, xuu48000, bah, bba) new_lt16(xuu47000, xuu48000, dgd) -> new_esEs8(new_compare14(xuu47000, xuu48000, dgd), LT) new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_esEs28(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_lt8(xuu47000, xuu48000, bdc, bdd) new_ltEs19(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_lt19(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_primPlusNat1(Succ(xuu50200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat1(xuu50200, xuu13100))) new_ltEs20(xuu47002, xuu48002, ty_Integer) -> new_ltEs12(xuu47002, xuu48002) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu4000, xuu300, ha, hb, hc) new_compare9(xuu47000, xuu48000, ty_Integer) -> new_compare7(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(ty_[], dgc)) -> new_lt15(xuu47000, xuu48000, dgc) new_compare27(Right(xuu4700), Left(xuu4800), False, bde, bdf) -> GT new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) new_compare9(xuu47000, xuu48000, ty_Ordering) -> new_compare12(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Maybe, dgb)) -> new_esEs7(xuu40000, xuu3000, dgb) new_sr(Integer(xuu470000), Integer(xuu480010)) -> Integer(new_primMulInt(xuu470000, xuu480010)) new_esEs28(xuu47000, xuu48000, app(ty_[], dgc)) -> new_esEs16(xuu47000, xuu48000, dgc) new_lt13(xuu47001, xuu48001, ty_Integer) -> new_lt6(xuu47001, xuu48001) new_pePe(False, xuu206) -> xuu206 new_esEs7(Nothing, Just(xuu3000), cef) -> False new_esEs7(Just(xuu40000), Nothing, cef) -> False new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, ty_Double) -> new_ltEs9(xuu47002, xuu48002) new_lt14(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_lt5(xuu47000, xuu48000, dag, dah, dba) new_compare210(xuu47000, xuu48000, True, bbf) -> EQ new_esEs20(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare114(xuu47000, xuu48000, True, cga, cgb) -> LT new_compare112(xuu180, xuu181, True, bbg, bbh) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) new_lt20(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_lt16(xuu47000, xuu48000, dgd) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Ordering, cb) -> new_ltEs6(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs18(xuu36, xuu31) new_ltEs6(LT, LT) -> True new_compare7(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu187, xuu188, False, gg, gh) -> GT new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ded), dee), chf) -> new_esEs4(xuu40000, xuu3000, ded, dee) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, ccg), cch)) -> new_esEs4(xuu40000, xuu3000, ccg, cch) new_esEs32(xuu36, xuu31, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(xuu36, xuu31, bca, bcb, bcc) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, cef) -> True new_lt13(xuu47001, xuu48001, ty_Char) -> new_lt17(xuu47001, xuu48001) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Bool) -> new_compare17(xuu47000, xuu48000) new_lt17(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, dhb), dhc)) -> new_esEs4(xuu40000, xuu3000, dhb, dhc) new_compare26(@0, @0) -> EQ new_ltEs15(Nothing, Nothing, eh) -> True new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs13(xuu40002, xuu3002, app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu40002, xuu3002, cbc, cbd) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs15(Just(xuu47000), Nothing, eh) -> False new_esEs24(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_esEs5(xuu47001, xuu48001, dbg, dbh) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare25(xuu47000, xuu48000, True, gd, ge, gf) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs28(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare114(xuu47000, xuu48000, False, cga, cgb) -> GT new_ltEs20(xuu47002, xuu48002, ty_@0) -> new_ltEs16(xuu47002, xuu48002) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Float, cb) -> new_ltEs17(xuu47000, xuu48000) new_ltEs10(xuu4700, xuu4800) -> new_fsEs(new_compare8(xuu4700, xuu4800)) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, dhf)) -> new_esEs7(xuu40000, xuu3000, dhf) new_lt13(xuu47001, xuu48001, ty_Int) -> new_lt7(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, app(app(ty_Either, bcd), bce)) -> new_esEs5(xuu36, xuu31, bcd, bce) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs6(xuu47001, xuu48001, dca, dcb, dcc) new_esEs11(xuu40000, xuu3000, app(ty_Ratio, bhb)) -> new_esEs17(xuu40000, xuu3000, bhb) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_ltEs21(xuu47001, xuu48001, app(ty_Maybe, eah)) -> new_ltEs15(xuu47001, xuu48001, eah) new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare15(xuu47000, xuu48000), LT) new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_esEs24(xuu47001, xuu48001, ty_Integer) -> new_esEs9(xuu47001, xuu48001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(xuu40000, xuu3000, ceg, ceh, cfa) new_ltEs6(LT, EQ) -> True new_compare9(xuu47000, xuu48000, app(ty_[], bad)) -> new_compare(xuu47000, xuu48000, bad) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, chf) -> new_esEs9(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(ty_Maybe, cee)) -> new_esEs7(xuu40001, xuu3001, cee) new_esEs13(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs23(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_esEs7(xuu47000, xuu48000, dbb) new_lt14(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_lt18(xuu47000, xuu48000, dbb) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, deb), dec), chf) -> new_esEs5(xuu40000, xuu3000, deb, dec) new_primCmpNat0(Zero, xuu4700) -> LT new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cbh, cca) -> new_asAs(new_esEs21(xuu40000, xuu3000, cbh), new_esEs22(xuu40001, xuu3001, cca)) new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs10(xuu36, xuu31) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, cce), ccf)) -> new_esEs5(xuu40000, xuu3000, cce, ccf) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs18(xuu4700, xuu4800, app(ty_Maybe, eh)) -> new_ltEs15(xuu4700, xuu4800, eh) new_esEs11(xuu40000, xuu3000, app(app(ty_@2, bgg), bgh)) -> new_esEs4(xuu40000, xuu3000, bgg, bgh) new_compare27(Right(xuu4700), Right(xuu4800), False, bde, bdf) -> new_compare11(xuu4700, xuu4800, new_ltEs19(xuu4700, xuu4800, bdf), bde, bdf) new_esEs8(LT, LT) -> True new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), chg) -> new_asAs(new_esEs25(xuu40000, xuu3000, chg), new_esEs16(xuu40001, xuu3001, chg)) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs16(xuu4700, xuu4800) -> new_fsEs(new_compare26(xuu4700, xuu4800)) new_esEs13(xuu40002, xuu3002, ty_Integer) -> new_esEs9(xuu40002, xuu3002) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs6(xuu40001, xuu3001, cdd, cde, cdf) new_esEs23(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_esEs17(xuu47000, xuu48000, dad) new_primPlusNat1(Succ(xuu50200), Zero) -> Succ(xuu50200) new_primPlusNat1(Zero, Succ(xuu13100)) -> Succ(xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cfd), cfe)) -> new_esEs4(xuu40000, xuu3000, cfd, cfe) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) new_ltEs19(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_esEs12(xuu40001, xuu3001, app(app(ty_@2, caa), cab)) -> new_esEs4(xuu40001, xuu3001, caa, cab) new_esEs13(xuu40002, xuu3002, app(ty_Ratio, cbf)) -> new_esEs17(xuu40002, xuu3002, cbf) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs18(xuu19, xuu14) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_esEs7(xuu47001, xuu48001, dcd) new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs20(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_esEs17(xuu47001, xuu48001, dbf) new_ltEs20(xuu47002, xuu48002, app(app(ty_@2, dcf), dcg)) -> new_ltEs7(xuu47002, xuu48002, dcf, dcg) new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs6(xuu47000, xuu48000, dag, dah, dba) new_esEs16([], [], chg) -> True new_esEs12(xuu40001, xuu3001, app(ty_Ratio, cad)) -> new_esEs17(xuu40001, xuu3001, cad) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs19(xuu36, xuu31) new_lt14(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare([], :(xuu48000, xuu48001), bac) -> LT new_esEs11(xuu40000, xuu3000, app(app(ty_Either, bge), bgf)) -> new_esEs5(xuu40000, xuu3000, bge, bgf) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs14(xuu36, xuu31) new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs15(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(app(ty_@2, bef), beg)) -> new_ltEs7(xuu4700, xuu4800, bef, beg) new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(ty_Maybe, bff)) -> new_ltEs15(xuu4700, xuu4800, bff) new_esEs12(xuu40001, xuu3001, app(ty_Maybe, cae)) -> new_esEs7(xuu40001, xuu3001, cae) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Ratio, ea)) -> new_ltEs8(xuu47000, xuu48000, ea) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_@2, fb), fc)) -> new_ltEs7(xuu47000, xuu48000, fb, fc) new_compare210(xuu47000, xuu48000, False, bbf) -> new_compare110(xuu47000, xuu48000, new_ltEs15(xuu47000, xuu48000, bbf), bbf) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, cdg), cdh)) -> new_esEs5(xuu40001, xuu3001, cdg, cdh) new_primCmpNat2(xuu4700, Zero) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfg)) -> new_esEs17(xuu40000, xuu3000, cfg) new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare16(xuu47000, xuu48000, bdc, bdd) -> new_compare27(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, bdc, bdd), bdc, bdd) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Maybe, gc)) -> new_ltEs15(xuu47000, xuu48000, gc) new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(xuu40000, xuu3000, bgb, bgc, bgd) new_esEs23(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_esEs4(xuu47000, xuu48000, dab, dac) new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Int, cb) -> new_ltEs14(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Maybe, eg)) -> new_ltEs15(xuu47000, xuu48000, eg) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_ltEs21(xuu47001, xuu48001, ty_Double) -> new_ltEs9(xuu47001, xuu48001) new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_compare8(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_Maybe, bhc)) -> new_esEs7(xuu40000, xuu3000, bhc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_lt13(xuu47001, xuu48001, app(ty_[], dbc)) -> new_lt15(xuu47001, xuu48001, dbc) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs6(xuu40000, xuu3000, dfa, dfb, dfc) new_compare28(xuu47000, xuu48000, True) -> EQ new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_Either, eb), ec)) -> new_ltEs4(xuu47000, xuu48000, eb, ec) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, cea), ceb)) -> new_esEs4(xuu40001, xuu3001, cea, ceb) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, deg), chf) -> new_esEs17(xuu40000, xuu3000, deg) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_[], ca), cb) -> new_ltEs5(xuu47000, xuu48000, ca) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dd), cb) -> new_ltEs15(xuu47000, xuu48000, dd) new_ltEs6(GT, EQ) -> False new_primCmpNat1(Succ(xuu47000), Zero) -> GT new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Ratio, dga)) -> new_esEs17(xuu40000, xuu3000, dga) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) new_compare111(xuu47000, xuu48000, False, gd, ge, gf) -> GT new_lt13(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt5(xuu47001, xuu48001, dca, dcb, dcc) new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) new_primCompAux1(xuu47000, xuu48000, xuu207, bac) -> new_primCompAux0(xuu207, new_compare9(xuu47000, xuu48000, bac)) new_ltEs20(xuu47002, xuu48002, app(app(ty_Either, dda), ddb)) -> new_ltEs4(xuu47002, xuu48002, dda, ddb) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_[], df)) -> new_ltEs5(xuu47000, xuu48000, df) new_esEs12(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_compare19(xuu47000, xuu48000, bbf) -> new_compare210(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, bbf), bbf) new_ltEs21(xuu47001, xuu48001, ty_@0) -> new_ltEs16(xuu47001, xuu48001) new_ltEs18(xuu4700, xuu4800, app(app(ty_@2, bdg), bdh)) -> new_ltEs7(xuu4700, xuu4800, bdg, bdh) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_asAs(True, xuu175) -> xuu175 new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), chh) -> new_asAs(new_esEs26(xuu40000, xuu3000, chh), new_esEs27(xuu40001, xuu3001, chh)) new_compare113(xuu47000, xuu48000, True) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(xuu40001, xuu3001, bhd, bhe, bhf) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare7(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) new_lt13(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_lt8(xuu47001, xuu48001, dbg, dbh) new_lt14(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_esEs29(xuu19, xuu14, app(ty_[], chb)) -> new_esEs16(xuu19, xuu14, chb) new_lt14(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs18(False, False) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs19(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare15(xuu4700, xuu4800)) new_esEs29(xuu19, xuu14, app(app(ty_Either, cgf), cgg)) -> new_esEs5(xuu19, xuu14, cgf, cgg) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_lt12(xuu47000, xuu48000, cga, cgb) -> new_esEs8(new_compare13(xuu47000, xuu48000, cga, cgb), LT) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, ced)) -> new_esEs17(xuu40001, xuu3001, ced) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_@0) -> new_compare26(xuu47000, xuu48000) new_compare10(xuu47000, xuu48000, False) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(ty_[], chg)) -> new_esEs16(xuu4000, xuu300, chg) new_esEs24(xuu47001, xuu48001, app(ty_[], dbc)) -> new_esEs16(xuu47001, xuu48001, dbc) new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Ratio, fd)) -> new_ltEs8(xuu47000, xuu48000, fd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(xuu4700, xuu4800) -> new_fsEs(new_compare5(xuu4700, xuu4800)) new_lt13(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_lt18(xuu47001, xuu48001, dcd) new_ltEs21(xuu47001, xuu48001, app(ty_Ratio, eab)) -> new_ltEs8(xuu47001, xuu48001, eab) new_esEs31(xuu4000, xuu300, app(ty_Maybe, bab)) -> new_esEs7(xuu4000, xuu300, bab) new_ltEs6(EQ, LT) -> False new_compare12(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) new_ltEs18(xuu4700, xuu4800, app(app(ty_Either, de), cb)) -> new_ltEs4(xuu4700, xuu4800, de, cb) new_ltEs13(False, True) -> True new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs9(xuu19, xuu14) new_ltEs13(False, False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_Either, dfd), dfe)) -> new_esEs5(xuu40000, xuu3000, dfd, dfe) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bfg, bfh, bga) -> new_asAs(new_esEs11(xuu40000, xuu3000, bfg), new_asAs(new_esEs12(xuu40001, xuu3001, bfh), new_esEs13(xuu40002, xuu3002, bga))) new_esEs9(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_lt14(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu40002, xuu3002, caf, cag, cah) new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCompAux0(xuu220, EQ) -> xuu220 new_lt14(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Double) -> new_compare15(xuu47000, xuu48000) new_esEs15(@0, @0) -> True new_compare9(xuu47000, xuu48000, ty_Char) -> new_compare8(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs20(xuu36, xuu31) new_lt13(xuu47001, xuu48001, ty_Ordering) -> new_lt9(xuu47001, xuu48001) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_compare([], [], bac) -> EQ new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cdc)) -> new_esEs7(xuu40000, xuu3000, cdc) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs32(xuu36, xuu31, app(app(ty_@2, bcf), bcg)) -> new_esEs4(xuu36, xuu31, bcf, bcg) new_compare24(xuu47000, xuu48000, True) -> EQ new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_Either, cf), cg), cb) -> new_ltEs4(xuu47000, xuu48000, cf, cg) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, dgh), dha)) -> new_esEs5(xuu40000, xuu3000, dgh, dha) new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_ltEs7(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bdg, bdh) -> new_pePe(new_lt20(xuu47000, xuu48000, bdg), new_asAs(new_esEs28(xuu47000, xuu48000, bdg), new_ltEs21(xuu47001, xuu48001, bdh))) new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_esEs31(xuu4000, xuu300, app(ty_[], hh)) -> new_esEs16(xuu4000, xuu300, hh) new_lt10(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) new_esEs32(xuu36, xuu31, app(ty_Maybe, bdb)) -> new_esEs7(xuu36, xuu31, bdb) new_esEs31(xuu4000, xuu300, app(app(ty_Either, hd), he)) -> new_esEs5(xuu4000, xuu300, hd, he) new_esEs25(xuu40000, xuu3000, app(ty_[], dhd)) -> new_esEs16(xuu40000, xuu3000, dhd) new_lt14(xuu47000, xuu48000, app(ty_[], daa)) -> new_lt15(xuu47000, xuu48000, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_lt8(xuu47000, xuu48000, dae, daf) new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_Either, ff), fg)) -> new_ltEs4(xuu47000, xuu48000, ff, fg) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ddg), ddh), dea), chf) -> new_esEs6(xuu40000, xuu3000, ddg, ddh, dea) new_compare24(xuu47000, xuu48000, False) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000)) new_ltEs21(xuu47001, xuu48001, app(app(ty_Either, eac), ead)) -> new_ltEs4(xuu47001, xuu48001, eac, ead) new_compare112(xuu180, xuu181, False, bbg, bbh) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, deh), chf) -> new_esEs7(xuu40000, xuu3000, deh) new_ltEs19(xuu4700, xuu4800, app(ty_Ratio, beh)) -> new_ltEs8(xuu4700, xuu4800, beh) new_esEs31(xuu4000, xuu300, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu4000, xuu300, hf, hg) new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(ty_[], cbe)) -> new_esEs16(xuu40002, xuu3002, cbe) new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_not(False) -> True new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_@0) -> new_esEs15(xuu40002, xuu3002) new_lt7(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) new_ltEs15(Nothing, Just(xuu48000), eh) -> True new_lt18(xuu47000, xuu48000, bbf) -> new_esEs8(new_compare19(xuu47000, xuu48000, bbf), LT) new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs9(xuu36, xuu31) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(xuu36, xuu31, app(ty_Ratio, bda)) -> new_esEs17(xuu36, xuu31, bda) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs11(xuu47000, xuu48000, fh, ga, gb) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) new_esEs5(Left(xuu40000), Right(xuu3000), che, chf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), che, chf) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) new_compare27(xuu470, xuu480, True, bde, bdf) -> EQ new_esEs13(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) new_ltEs4(Left(xuu47000), Right(xuu48000), de, cb) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, chf) -> new_esEs10(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, app(ty_[], bac)) -> new_ltEs5(xuu4700, xuu4800, bac) new_esEs13(xuu40002, xuu3002, ty_Double) -> new_esEs20(xuu40002, xuu3002) new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs6(xuu4000, xuu300, bfg, bfh, bga) new_ltEs21(xuu47001, xuu48001, app(ty_[], dhg)) -> new_ltEs5(xuu47001, xuu48001, dhg) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Bool, cb) -> new_ltEs13(xuu47000, xuu48000) new_esEs30(xuu4000, xuu300, app(app(ty_Either, che), chf)) -> new_esEs5(xuu4000, xuu300, che, chf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_ltEs21(xuu47001, xuu48001, ty_Bool) -> new_ltEs13(xuu47001, xuu48001) new_primPlusNat0(Succ(xuu1400), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1400, xuu300000))) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_compare11(xuu187, xuu188, True, gg, gh) -> LT new_lt5(xuu47000, xuu48000, gd, ge, gf) -> new_esEs8(new_compare6(xuu47000, xuu48000, gd, ge, gf), LT) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs14(xuu40000, xuu3000) new_lt14(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_lt16(xuu47000, xuu48000, dad) new_esEs12(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_primCmpNat1(Zero, Succ(xuu48000)) -> LT new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs19(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, ty_Int) -> new_esEs10(xuu47001, xuu48001) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_compare9(xuu47000, xuu48000, app(ty_Maybe, bbe)) -> new_compare19(xuu47000, xuu48000, bbe) new_compare10(xuu47000, xuu48000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare29(xuu47000, xuu48000, False, cga, cgb) -> new_compare114(xuu47000, xuu48000, new_ltEs7(xuu47000, xuu48000, cga, cgb), cga, cgb) new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_Float) -> new_esEs14(xuu40002, xuu3002) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(xuu4700, xuu4800, bea) -> new_fsEs(new_compare14(xuu4700, xuu4800, bea)) new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_Float) -> new_lt4(xuu47001, xuu48001) new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_ltEs13(True, False) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Integer, cb) -> new_ltEs12(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(ty_[], cda)) -> new_esEs16(xuu40000, xuu3000, cda) new_ltEs21(xuu47001, xuu48001, ty_Float) -> new_ltEs17(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_esEs17(xuu47000, xuu48000, dgd) new_esEs30(xuu4000, xuu300, app(ty_Maybe, cef)) -> new_esEs7(xuu4000, xuu300, cef) new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt4(xuu47000, xuu48000) -> new_esEs8(new_compare5(xuu47000, xuu48000), LT) new_lt13(xuu47001, xuu48001, ty_Bool) -> new_lt10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(app(ty_Either, bfa), bfb)) -> new_ltEs4(xuu4700, xuu4800, bfa, bfb) new_compare17(xuu47000, xuu48000) -> new_compare28(xuu47000, xuu48000, new_esEs18(xuu47000, xuu48000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare6(xuu47000, xuu48000, gd, ge, gf) -> new_compare25(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_esEs28(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_esEs4(xuu47000, xuu48000, cga, cgb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_@2, cc), cd), cb) -> new_ltEs7(xuu47000, xuu48000, cc, cd) new_compare29(xuu47000, xuu48000, True, cga, cgb) -> EQ new_ltEs21(xuu47001, xuu48001, ty_Int) -> new_ltEs14(xuu47001, xuu48001) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_[], fa)) -> new_ltEs5(xuu47000, xuu48000, fa) new_lt20(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_lt18(xuu47000, xuu48000, bbf) new_ltEs20(xuu47002, xuu48002, ty_Ordering) -> new_ltEs6(xuu47002, xuu48002) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Float) -> new_compare5(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Ratio, ce), cb) -> new_ltEs8(xuu47000, xuu48000, ce) new_esEs16(:(xuu40000, xuu40001), [], chg) -> False new_esEs16([], :(xuu3000, xuu3001), chg) -> False new_ltEs20(xuu47002, xuu48002, ty_Char) -> new_ltEs10(xuu47002, xuu48002) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs23(xuu47000, xuu48000, app(ty_[], daa)) -> new_esEs16(xuu47000, xuu48000, daa) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu19, xuu14, app(app(ty_@2, cgh), cha)) -> new_esEs4(xuu19, xuu14, cgh, cha) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs11(xuu47000, xuu48000, ed, ee, ef) new_esEs24(xuu47001, xuu48001, ty_Bool) -> new_esEs18(xuu47001, xuu48001) new_compare9(xuu47000, xuu48000, app(ty_Ratio, bag)) -> new_compare14(xuu47000, xuu48000, bag) new_primEqNat0(Zero, Zero) -> True new_esEs24(xuu47001, xuu48001, ty_@0) -> new_esEs15(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_esEs5(xuu47000, xuu48000, bdc, bdd) new_ltEs11(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), beb, bec, bed) -> new_pePe(new_lt14(xuu47000, xuu48000, beb), new_asAs(new_esEs23(xuu47000, xuu48000, beb), new_pePe(new_lt13(xuu47001, xuu48001, bec), new_asAs(new_esEs24(xuu47001, xuu48001, bec), new_ltEs20(xuu47002, xuu48002, bed))))) new_ltEs21(xuu47001, xuu48001, app(app(app(ty_@3, eae), eaf), eag)) -> new_ltEs11(xuu47001, xuu48001, eae, eaf, eag) new_ltEs21(xuu47001, xuu48001, ty_Ordering) -> new_ltEs6(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(ty_[], dce)) -> new_ltEs5(xuu47002, xuu48002, dce) new_esEs28(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(xuu47000, xuu48000, gd, ge, gf) new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_compare110(xuu47000, xuu48000, True, bbf) -> LT new_esEs12(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, chf) -> new_esEs18(xuu40000, xuu3000) new_esEs29(xuu19, xuu14, app(ty_Ratio, chc)) -> new_esEs17(xuu19, xuu14, chc) new_esEs24(xuu47001, xuu48001, ty_Double) -> new_esEs20(xuu47001, xuu48001) new_esEs22(xuu40001, xuu3001, app(ty_[], cec)) -> new_esEs16(xuu40001, xuu3001, cec) new_asAs(False, xuu175) -> False new_ltEs21(xuu47001, xuu48001, ty_Char) -> new_ltEs10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Float) -> new_ltEs17(xuu47002, xuu48002) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_@2, dg), dh)) -> new_ltEs7(xuu47000, xuu48000, dg, dh) new_esEs30(xuu4000, xuu300, app(ty_Ratio, chh)) -> new_esEs17(xuu4000, xuu300, chh) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, chf) -> new_esEs15(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), bac) -> new_primCompAux1(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, bac), bac) new_lt13(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_lt16(xuu47001, xuu48001, dbf) new_esEs29(xuu19, xuu14, app(ty_Maybe, chd)) -> new_esEs7(xuu19, xuu14, chd) new_esEs13(xuu40002, xuu3002, ty_Bool) -> new_esEs18(xuu40002, xuu3002) new_ltEs4(Right(xuu47000), Left(xuu48000), de, cb) -> False new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt5(xuu47000, xuu48000, gd, ge, gf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_[], bha)) -> new_esEs16(xuu40000, xuu3000, bha) new_ltEs6(GT, LT) -> False new_ltEs19(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Int) -> new_ltEs14(xuu47002, xuu48002) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_compare9(x0, x1, app(ty_[], x2)) new_esEs8(EQ, EQ) new_compare9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_@0) new_lt8(x0, x1, x2, x3) new_compare27(Left(x0), Left(x1), False, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare19(x0, x1, x2) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat1(Zero, Zero) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(LT, LT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(True, True) new_compare18(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare11(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, LT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt14(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_pePe(False, x0) new_ltEs20(x0, x1, ty_Float) new_compare28(x0, x1, True) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare9(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_lt16(x0, x1, x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Float) new_compare10(x0, x1, True) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_@0) new_compare(:(x0, x1), [], x2) new_compare210(x0, x1, True, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs12(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, ty_Float) new_ltEs15(Nothing, Just(x0), x1) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs16([], :(x0, x1), x2) new_compare113(x0, x1, True) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_@0) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Char) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1, x2) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare9(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs12(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_compare24(x0, x1, False) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_lt5(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs11(x0, x1, ty_Char) new_sr(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare9(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Float) new_compare9(x0, x1, ty_Double) new_esEs21(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_Integer) new_esEs15(@0, @0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_lt10(x0, x1) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs18(False, True) new_esEs18(True, False) new_lt20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Int) new_lt14(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_@0) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs19(Char(x0), Char(x1)) new_esEs8(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, ty_Int) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpNat2(x0, Zero) new_primPlusNat0(Succ(x0), x1) new_compare([], :(x0, x1), x2) new_esEs8(LT, LT) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt17(x0, x1) new_esEs24(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt13(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare111(x0, x1, False, x2, x3, x4) new_compare16(x0, x1, x2, x3) new_esEs27(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_compare210(x0, x1, False, x2) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs14(x0, x1) new_asAs(True, x0) new_esEs11(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare110(x0, x1, False, x2) new_esEs29(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(True, True) new_compare114(x0, x1, True, x2, x3) new_lt14(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_compare112(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs13(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_compare9(x0, x1, app(ty_Maybe, x2)) new_ltEs6(EQ, EQ) new_esEs22(x0, x1, ty_Ordering) new_compare29(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Integer) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_compare9(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat1(Zero, Succ(x0)) new_lt14(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_not(True) new_lt7(x0, x1) new_esEs11(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_compare114(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs13(False, False) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare12(x0, x1) new_esEs13(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Char) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3, x4) new_esEs10(x0, x1) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare26(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_primCompAux0(x0, GT) new_esEs13(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs18(False, False) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_compare7(Integer(x0), Integer(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_compare29(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_esEs7(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, EQ) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_lt9(x0, x1) new_esEs11(x0, x1, ty_Int) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs13(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, ty_Bool) new_esEs16(:(x0, x1), [], x2) new_compare10(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux1(x0, x1, x2, x3) new_primMulInt(Pos(x0), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt14(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_fsEs(x0) new_ltEs20(x0, x1, ty_@0) new_compare9(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_compare111(x0, x1, True, x2, x3, x4) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Int) new_sr0(x0, x1) new_esEs31(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Double) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_compare27(Right(x0), Right(x1), False, x2, x3) new_primEqNat0(Zero, Zero) new_lt14(x0, x1, ty_Integer) new_compare113(x0, x1, False) new_compare13(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(x0, Succ(x1)) new_not(False) new_esEs30(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_@0) new_lt14(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt14(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(Left(x0), Right(x1), False, x2, x3) new_compare27(Right(x0), Left(x1), False, x2, x3) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs21(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Double) new_ltEs9(x0, x1) new_esEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare24(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Integer) new_compare17(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Ordering) new_compare28(x0, x1, False) new_lt13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_@0) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_lt14(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_compare6(x0, x1, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (25) Complex Obligation (AND) ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT new_ltEs21(xuu47001, xuu48001, ty_Integer) -> new_ltEs12(xuu47001, xuu48001) new_compare27(Left(xuu4700), Right(xuu4800), False, bde, bdf) -> LT new_pePe(True, xuu206) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, chf) -> new_esEs8(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs6(xuu40000, xuu3000, dge, dgf, dgg) new_ltEs20(xuu47002, xuu48002, app(ty_Maybe, ddf)) -> new_ltEs15(xuu47002, xuu48002, ddf) new_compare111(xuu47000, xuu48000, True, gd, ge, gf) -> LT new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_[], dfh)) -> new_esEs16(xuu40000, xuu3000, dfh) new_esEs14(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_ltEs6(GT, GT) -> True new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs12(xuu40001, xuu3001, app(ty_[], cac)) -> new_esEs16(xuu40001, xuu3001, cac) new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs18(True, True) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, chf) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(app(ty_@2, cbh), cca)) -> new_esEs4(xuu4000, xuu300, cbh, cca) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, chf) -> new_esEs20(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), [], bac) -> GT new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu47000, xuu48000, False, bbf) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_esEs24(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(ty_[], bee)) -> new_ltEs5(xuu4700, xuu4800, bee) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfh)) -> new_esEs7(xuu40000, xuu3000, cfh) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Char, cb) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, app(ty_Ratio, bea)) -> new_ltEs8(xuu4700, xuu4800, bea) new_esEs13(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs28(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_esEs7(xuu47000, xuu48000, bbf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_ltEs6(EQ, GT) -> True new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs14(xuu19, xuu14) new_compare113(xuu47000, xuu48000, False) -> GT new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs19(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_primCompAux0(xuu220, GT) -> GT new_esEs23(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_esEs5(xuu47000, xuu48000, dae, daf) new_esEs13(xuu40002, xuu3002, app(ty_Maybe, cbg)) -> new_esEs7(xuu40002, xuu3002, cbg) new_esEs24(xuu47001, xuu48001, ty_Char) -> new_esEs19(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs11(xuu47002, xuu48002, ddc, ddd, dde) new_compare27(Left(xuu4700), Left(xuu4800), False, bde, bdf) -> new_compare112(xuu4700, xuu4800, new_ltEs18(xuu4700, xuu4800, bde), bde, bdf) new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_ltEs21(xuu47001, xuu48001, app(app(ty_@2, dhh), eaa)) -> new_ltEs7(xuu47001, xuu48001, dhh, eaa) new_fsEs(xuu190) -> new_not(new_esEs8(xuu190, GT)) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, dhe)) -> new_esEs17(xuu40000, xuu3000, dhe) new_lt15(xuu47000, xuu48000, dgc) -> new_esEs8(new_compare(xuu47000, xuu48000, dgc), LT) new_esEs31(xuu4000, xuu300, app(ty_Ratio, baa)) -> new_esEs17(xuu4000, xuu300, baa) new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs6(xuu19, xuu14, cgc, cgd, cge) new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) new_esEs24(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_esEs4(xuu47001, xuu48001, dbd, dbe) new_ltEs13(True, True) -> True new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_lt13(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_lt12(xuu47001, xuu48001, dbd, dbe) new_compare9(xuu47000, xuu48000, app(app(ty_@2, bae), baf)) -> new_compare13(xuu47000, xuu48000, bae, baf) new_esEs8(EQ, EQ) -> True new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_@2, dff), dfg)) -> new_esEs4(xuu40000, xuu3000, dff, dfg) new_primCompAux0(xuu220, LT) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_@0) -> new_lt19(xuu47001, xuu48001) new_esEs12(xuu40001, xuu3001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(xuu40001, xuu3001, bhg, bhh) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], def), chf) -> new_esEs16(xuu40000, xuu3000, def) new_not(True) -> False new_compare9(xuu47000, xuu48000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare6(xuu47000, xuu48000, bbb, bbc, bbd) new_ltEs19(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_ltEs5(xuu4700, xuu4800, bac) -> new_fsEs(new_compare(xuu4700, xuu4800, bac)) new_lt13(xuu47001, xuu48001, ty_Double) -> new_lt11(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs6(xuu40000, xuu3000, ccb, ccc, ccd) new_ltEs18(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, cdb)) -> new_esEs17(xuu40000, xuu3000, cdb) new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs24(xuu47001, xuu48001, ty_Float) -> new_esEs14(xuu47001, xuu48001) new_ltEs6(LT, GT) -> True new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Double, cb) -> new_ltEs9(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, chf) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu47000, xuu48000, False) -> new_compare113(xuu47000, xuu48000, new_ltEs13(xuu47000, xuu48000)) new_esEs13(xuu40002, xuu3002, app(app(ty_Either, cba), cbb)) -> new_esEs5(xuu40002, xuu3002, cba, cbb) new_esEs32(xuu36, xuu31, app(ty_[], bch)) -> new_esEs16(xuu36, xuu31, bch) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs11(xuu47000, xuu48000, da, db, dc) new_compare25(xuu47000, xuu48000, False, gd, ge, gf) -> new_compare111(xuu47000, xuu48000, new_ltEs11(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs12(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs11(xuu4700, xuu4800, bfc, bfd, bfe) new_lt14(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_lt12(xuu47000, xuu48000, dab, dac) new_lt14(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_ltEs20(xuu47002, xuu48002, app(ty_Ratio, dch)) -> new_ltEs8(xuu47002, xuu48002, dch) new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs15(xuu36, xuu31) new_lt20(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_lt12(xuu47000, xuu48000, cga, cgb) new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) new_lt8(xuu47000, xuu48000, bdc, bdd) -> new_esEs8(new_compare16(xuu47000, xuu48000, bdc, bdd), LT) new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt9(xuu47000, xuu48000) -> new_esEs8(new_compare12(xuu47000, xuu48000), LT) new_ltEs18(xuu4700, xuu4800, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs11(xuu4700, xuu4800, beb, bec, bed) new_ltEs20(xuu47002, xuu48002, ty_Bool) -> new_ltEs13(xuu47002, xuu48002) new_ltEs18(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) new_lt14(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT new_esEs28(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_@0, cb) -> new_ltEs16(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_compare13(xuu47000, xuu48000, cga, cgb) -> new_compare29(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cga, cgb), cga, cgb) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_Either, bah), bba)) -> new_compare16(xuu47000, xuu48000, bah, bba) new_lt16(xuu47000, xuu48000, dgd) -> new_esEs8(new_compare14(xuu47000, xuu48000, dgd), LT) new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_esEs28(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_lt8(xuu47000, xuu48000, bdc, bdd) new_ltEs19(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_lt19(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_primPlusNat1(Succ(xuu50200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat1(xuu50200, xuu13100))) new_ltEs20(xuu47002, xuu48002, ty_Integer) -> new_ltEs12(xuu47002, xuu48002) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu4000, xuu300, ha, hb, hc) new_compare9(xuu47000, xuu48000, ty_Integer) -> new_compare7(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(ty_[], dgc)) -> new_lt15(xuu47000, xuu48000, dgc) new_compare27(Right(xuu4700), Left(xuu4800), False, bde, bdf) -> GT new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) new_compare9(xuu47000, xuu48000, ty_Ordering) -> new_compare12(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Maybe, dgb)) -> new_esEs7(xuu40000, xuu3000, dgb) new_sr(Integer(xuu470000), Integer(xuu480010)) -> Integer(new_primMulInt(xuu470000, xuu480010)) new_esEs28(xuu47000, xuu48000, app(ty_[], dgc)) -> new_esEs16(xuu47000, xuu48000, dgc) new_lt13(xuu47001, xuu48001, ty_Integer) -> new_lt6(xuu47001, xuu48001) new_pePe(False, xuu206) -> xuu206 new_esEs7(Nothing, Just(xuu3000), cef) -> False new_esEs7(Just(xuu40000), Nothing, cef) -> False new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, ty_Double) -> new_ltEs9(xuu47002, xuu48002) new_lt14(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_lt5(xuu47000, xuu48000, dag, dah, dba) new_compare210(xuu47000, xuu48000, True, bbf) -> EQ new_esEs20(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare114(xuu47000, xuu48000, True, cga, cgb) -> LT new_compare112(xuu180, xuu181, True, bbg, bbh) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) new_lt20(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_lt16(xuu47000, xuu48000, dgd) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Ordering, cb) -> new_ltEs6(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs18(xuu36, xuu31) new_ltEs6(LT, LT) -> True new_compare7(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu187, xuu188, False, gg, gh) -> GT new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ded), dee), chf) -> new_esEs4(xuu40000, xuu3000, ded, dee) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, ccg), cch)) -> new_esEs4(xuu40000, xuu3000, ccg, cch) new_esEs32(xuu36, xuu31, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(xuu36, xuu31, bca, bcb, bcc) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, cef) -> True new_lt13(xuu47001, xuu48001, ty_Char) -> new_lt17(xuu47001, xuu48001) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Bool) -> new_compare17(xuu47000, xuu48000) new_lt17(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, dhb), dhc)) -> new_esEs4(xuu40000, xuu3000, dhb, dhc) new_compare26(@0, @0) -> EQ new_ltEs15(Nothing, Nothing, eh) -> True new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs13(xuu40002, xuu3002, app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu40002, xuu3002, cbc, cbd) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs15(Just(xuu47000), Nothing, eh) -> False new_esEs24(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_esEs5(xuu47001, xuu48001, dbg, dbh) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare25(xuu47000, xuu48000, True, gd, ge, gf) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs28(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare114(xuu47000, xuu48000, False, cga, cgb) -> GT new_ltEs20(xuu47002, xuu48002, ty_@0) -> new_ltEs16(xuu47002, xuu48002) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Float, cb) -> new_ltEs17(xuu47000, xuu48000) new_ltEs10(xuu4700, xuu4800) -> new_fsEs(new_compare8(xuu4700, xuu4800)) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, dhf)) -> new_esEs7(xuu40000, xuu3000, dhf) new_lt13(xuu47001, xuu48001, ty_Int) -> new_lt7(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, app(app(ty_Either, bcd), bce)) -> new_esEs5(xuu36, xuu31, bcd, bce) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs6(xuu47001, xuu48001, dca, dcb, dcc) new_esEs11(xuu40000, xuu3000, app(ty_Ratio, bhb)) -> new_esEs17(xuu40000, xuu3000, bhb) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_ltEs21(xuu47001, xuu48001, app(ty_Maybe, eah)) -> new_ltEs15(xuu47001, xuu48001, eah) new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare15(xuu47000, xuu48000), LT) new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_esEs24(xuu47001, xuu48001, ty_Integer) -> new_esEs9(xuu47001, xuu48001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(xuu40000, xuu3000, ceg, ceh, cfa) new_ltEs6(LT, EQ) -> True new_compare9(xuu47000, xuu48000, app(ty_[], bad)) -> new_compare(xuu47000, xuu48000, bad) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, chf) -> new_esEs9(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(ty_Maybe, cee)) -> new_esEs7(xuu40001, xuu3001, cee) new_esEs13(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs23(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_esEs7(xuu47000, xuu48000, dbb) new_lt14(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_lt18(xuu47000, xuu48000, dbb) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, deb), dec), chf) -> new_esEs5(xuu40000, xuu3000, deb, dec) new_primCmpNat0(Zero, xuu4700) -> LT new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cbh, cca) -> new_asAs(new_esEs21(xuu40000, xuu3000, cbh), new_esEs22(xuu40001, xuu3001, cca)) new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs10(xuu36, xuu31) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, cce), ccf)) -> new_esEs5(xuu40000, xuu3000, cce, ccf) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs18(xuu4700, xuu4800, app(ty_Maybe, eh)) -> new_ltEs15(xuu4700, xuu4800, eh) new_esEs11(xuu40000, xuu3000, app(app(ty_@2, bgg), bgh)) -> new_esEs4(xuu40000, xuu3000, bgg, bgh) new_compare27(Right(xuu4700), Right(xuu4800), False, bde, bdf) -> new_compare11(xuu4700, xuu4800, new_ltEs19(xuu4700, xuu4800, bdf), bde, bdf) new_esEs8(LT, LT) -> True new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), chg) -> new_asAs(new_esEs25(xuu40000, xuu3000, chg), new_esEs16(xuu40001, xuu3001, chg)) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs16(xuu4700, xuu4800) -> new_fsEs(new_compare26(xuu4700, xuu4800)) new_esEs13(xuu40002, xuu3002, ty_Integer) -> new_esEs9(xuu40002, xuu3002) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs6(xuu40001, xuu3001, cdd, cde, cdf) new_esEs23(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_esEs17(xuu47000, xuu48000, dad) new_primPlusNat1(Succ(xuu50200), Zero) -> Succ(xuu50200) new_primPlusNat1(Zero, Succ(xuu13100)) -> Succ(xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cfd), cfe)) -> new_esEs4(xuu40000, xuu3000, cfd, cfe) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) new_ltEs19(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_esEs12(xuu40001, xuu3001, app(app(ty_@2, caa), cab)) -> new_esEs4(xuu40001, xuu3001, caa, cab) new_esEs13(xuu40002, xuu3002, app(ty_Ratio, cbf)) -> new_esEs17(xuu40002, xuu3002, cbf) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs18(xuu19, xuu14) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_esEs7(xuu47001, xuu48001, dcd) new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs20(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_esEs17(xuu47001, xuu48001, dbf) new_ltEs20(xuu47002, xuu48002, app(app(ty_@2, dcf), dcg)) -> new_ltEs7(xuu47002, xuu48002, dcf, dcg) new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs6(xuu47000, xuu48000, dag, dah, dba) new_esEs16([], [], chg) -> True new_esEs12(xuu40001, xuu3001, app(ty_Ratio, cad)) -> new_esEs17(xuu40001, xuu3001, cad) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs19(xuu36, xuu31) new_lt14(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare([], :(xuu48000, xuu48001), bac) -> LT new_esEs11(xuu40000, xuu3000, app(app(ty_Either, bge), bgf)) -> new_esEs5(xuu40000, xuu3000, bge, bgf) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs14(xuu36, xuu31) new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs15(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(app(ty_@2, bef), beg)) -> new_ltEs7(xuu4700, xuu4800, bef, beg) new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(ty_Maybe, bff)) -> new_ltEs15(xuu4700, xuu4800, bff) new_esEs12(xuu40001, xuu3001, app(ty_Maybe, cae)) -> new_esEs7(xuu40001, xuu3001, cae) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Ratio, ea)) -> new_ltEs8(xuu47000, xuu48000, ea) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_@2, fb), fc)) -> new_ltEs7(xuu47000, xuu48000, fb, fc) new_compare210(xuu47000, xuu48000, False, bbf) -> new_compare110(xuu47000, xuu48000, new_ltEs15(xuu47000, xuu48000, bbf), bbf) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, cdg), cdh)) -> new_esEs5(xuu40001, xuu3001, cdg, cdh) new_primCmpNat2(xuu4700, Zero) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfg)) -> new_esEs17(xuu40000, xuu3000, cfg) new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare16(xuu47000, xuu48000, bdc, bdd) -> new_compare27(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, bdc, bdd), bdc, bdd) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Maybe, gc)) -> new_ltEs15(xuu47000, xuu48000, gc) new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(xuu40000, xuu3000, bgb, bgc, bgd) new_esEs23(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_esEs4(xuu47000, xuu48000, dab, dac) new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Int, cb) -> new_ltEs14(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Maybe, eg)) -> new_ltEs15(xuu47000, xuu48000, eg) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_ltEs21(xuu47001, xuu48001, ty_Double) -> new_ltEs9(xuu47001, xuu48001) new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_compare8(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_Maybe, bhc)) -> new_esEs7(xuu40000, xuu3000, bhc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_lt13(xuu47001, xuu48001, app(ty_[], dbc)) -> new_lt15(xuu47001, xuu48001, dbc) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs6(xuu40000, xuu3000, dfa, dfb, dfc) new_compare28(xuu47000, xuu48000, True) -> EQ new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_Either, eb), ec)) -> new_ltEs4(xuu47000, xuu48000, eb, ec) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, cea), ceb)) -> new_esEs4(xuu40001, xuu3001, cea, ceb) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, deg), chf) -> new_esEs17(xuu40000, xuu3000, deg) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_[], ca), cb) -> new_ltEs5(xuu47000, xuu48000, ca) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dd), cb) -> new_ltEs15(xuu47000, xuu48000, dd) new_ltEs6(GT, EQ) -> False new_primCmpNat1(Succ(xuu47000), Zero) -> GT new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Ratio, dga)) -> new_esEs17(xuu40000, xuu3000, dga) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) new_compare111(xuu47000, xuu48000, False, gd, ge, gf) -> GT new_lt13(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt5(xuu47001, xuu48001, dca, dcb, dcc) new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) new_primCompAux1(xuu47000, xuu48000, xuu207, bac) -> new_primCompAux0(xuu207, new_compare9(xuu47000, xuu48000, bac)) new_ltEs20(xuu47002, xuu48002, app(app(ty_Either, dda), ddb)) -> new_ltEs4(xuu47002, xuu48002, dda, ddb) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_[], df)) -> new_ltEs5(xuu47000, xuu48000, df) new_esEs12(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_compare19(xuu47000, xuu48000, bbf) -> new_compare210(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, bbf), bbf) new_ltEs21(xuu47001, xuu48001, ty_@0) -> new_ltEs16(xuu47001, xuu48001) new_ltEs18(xuu4700, xuu4800, app(app(ty_@2, bdg), bdh)) -> new_ltEs7(xuu4700, xuu4800, bdg, bdh) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_asAs(True, xuu175) -> xuu175 new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), chh) -> new_asAs(new_esEs26(xuu40000, xuu3000, chh), new_esEs27(xuu40001, xuu3001, chh)) new_compare113(xuu47000, xuu48000, True) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(xuu40001, xuu3001, bhd, bhe, bhf) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare7(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) new_lt13(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_lt8(xuu47001, xuu48001, dbg, dbh) new_lt14(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_esEs29(xuu19, xuu14, app(ty_[], chb)) -> new_esEs16(xuu19, xuu14, chb) new_lt14(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs18(False, False) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs19(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare15(xuu4700, xuu4800)) new_esEs29(xuu19, xuu14, app(app(ty_Either, cgf), cgg)) -> new_esEs5(xuu19, xuu14, cgf, cgg) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_lt12(xuu47000, xuu48000, cga, cgb) -> new_esEs8(new_compare13(xuu47000, xuu48000, cga, cgb), LT) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, ced)) -> new_esEs17(xuu40001, xuu3001, ced) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_@0) -> new_compare26(xuu47000, xuu48000) new_compare10(xuu47000, xuu48000, False) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(ty_[], chg)) -> new_esEs16(xuu4000, xuu300, chg) new_esEs24(xuu47001, xuu48001, app(ty_[], dbc)) -> new_esEs16(xuu47001, xuu48001, dbc) new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Ratio, fd)) -> new_ltEs8(xuu47000, xuu48000, fd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(xuu4700, xuu4800) -> new_fsEs(new_compare5(xuu4700, xuu4800)) new_lt13(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_lt18(xuu47001, xuu48001, dcd) new_ltEs21(xuu47001, xuu48001, app(ty_Ratio, eab)) -> new_ltEs8(xuu47001, xuu48001, eab) new_esEs31(xuu4000, xuu300, app(ty_Maybe, bab)) -> new_esEs7(xuu4000, xuu300, bab) new_ltEs6(EQ, LT) -> False new_compare12(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) new_ltEs18(xuu4700, xuu4800, app(app(ty_Either, de), cb)) -> new_ltEs4(xuu4700, xuu4800, de, cb) new_ltEs13(False, True) -> True new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs9(xuu19, xuu14) new_ltEs13(False, False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_Either, dfd), dfe)) -> new_esEs5(xuu40000, xuu3000, dfd, dfe) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bfg, bfh, bga) -> new_asAs(new_esEs11(xuu40000, xuu3000, bfg), new_asAs(new_esEs12(xuu40001, xuu3001, bfh), new_esEs13(xuu40002, xuu3002, bga))) new_esEs9(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_lt14(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu40002, xuu3002, caf, cag, cah) new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCompAux0(xuu220, EQ) -> xuu220 new_lt14(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Double) -> new_compare15(xuu47000, xuu48000) new_esEs15(@0, @0) -> True new_compare9(xuu47000, xuu48000, ty_Char) -> new_compare8(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs20(xuu36, xuu31) new_lt13(xuu47001, xuu48001, ty_Ordering) -> new_lt9(xuu47001, xuu48001) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_compare([], [], bac) -> EQ new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cdc)) -> new_esEs7(xuu40000, xuu3000, cdc) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs32(xuu36, xuu31, app(app(ty_@2, bcf), bcg)) -> new_esEs4(xuu36, xuu31, bcf, bcg) new_compare24(xuu47000, xuu48000, True) -> EQ new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_Either, cf), cg), cb) -> new_ltEs4(xuu47000, xuu48000, cf, cg) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, dgh), dha)) -> new_esEs5(xuu40000, xuu3000, dgh, dha) new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_ltEs7(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bdg, bdh) -> new_pePe(new_lt20(xuu47000, xuu48000, bdg), new_asAs(new_esEs28(xuu47000, xuu48000, bdg), new_ltEs21(xuu47001, xuu48001, bdh))) new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_esEs31(xuu4000, xuu300, app(ty_[], hh)) -> new_esEs16(xuu4000, xuu300, hh) new_lt10(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) new_esEs32(xuu36, xuu31, app(ty_Maybe, bdb)) -> new_esEs7(xuu36, xuu31, bdb) new_esEs31(xuu4000, xuu300, app(app(ty_Either, hd), he)) -> new_esEs5(xuu4000, xuu300, hd, he) new_esEs25(xuu40000, xuu3000, app(ty_[], dhd)) -> new_esEs16(xuu40000, xuu3000, dhd) new_lt14(xuu47000, xuu48000, app(ty_[], daa)) -> new_lt15(xuu47000, xuu48000, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_lt8(xuu47000, xuu48000, dae, daf) new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_Either, ff), fg)) -> new_ltEs4(xuu47000, xuu48000, ff, fg) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ddg), ddh), dea), chf) -> new_esEs6(xuu40000, xuu3000, ddg, ddh, dea) new_compare24(xuu47000, xuu48000, False) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000)) new_ltEs21(xuu47001, xuu48001, app(app(ty_Either, eac), ead)) -> new_ltEs4(xuu47001, xuu48001, eac, ead) new_compare112(xuu180, xuu181, False, bbg, bbh) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, deh), chf) -> new_esEs7(xuu40000, xuu3000, deh) new_ltEs19(xuu4700, xuu4800, app(ty_Ratio, beh)) -> new_ltEs8(xuu4700, xuu4800, beh) new_esEs31(xuu4000, xuu300, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu4000, xuu300, hf, hg) new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(ty_[], cbe)) -> new_esEs16(xuu40002, xuu3002, cbe) new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_not(False) -> True new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_@0) -> new_esEs15(xuu40002, xuu3002) new_lt7(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) new_ltEs15(Nothing, Just(xuu48000), eh) -> True new_lt18(xuu47000, xuu48000, bbf) -> new_esEs8(new_compare19(xuu47000, xuu48000, bbf), LT) new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs9(xuu36, xuu31) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(xuu36, xuu31, app(ty_Ratio, bda)) -> new_esEs17(xuu36, xuu31, bda) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs11(xuu47000, xuu48000, fh, ga, gb) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) new_esEs5(Left(xuu40000), Right(xuu3000), che, chf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), che, chf) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) new_compare27(xuu470, xuu480, True, bde, bdf) -> EQ new_esEs13(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) new_ltEs4(Left(xuu47000), Right(xuu48000), de, cb) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, chf) -> new_esEs10(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, app(ty_[], bac)) -> new_ltEs5(xuu4700, xuu4800, bac) new_esEs13(xuu40002, xuu3002, ty_Double) -> new_esEs20(xuu40002, xuu3002) new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs6(xuu4000, xuu300, bfg, bfh, bga) new_ltEs21(xuu47001, xuu48001, app(ty_[], dhg)) -> new_ltEs5(xuu47001, xuu48001, dhg) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Bool, cb) -> new_ltEs13(xuu47000, xuu48000) new_esEs30(xuu4000, xuu300, app(app(ty_Either, che), chf)) -> new_esEs5(xuu4000, xuu300, che, chf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_ltEs21(xuu47001, xuu48001, ty_Bool) -> new_ltEs13(xuu47001, xuu48001) new_primPlusNat0(Succ(xuu1400), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1400, xuu300000))) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_compare11(xuu187, xuu188, True, gg, gh) -> LT new_lt5(xuu47000, xuu48000, gd, ge, gf) -> new_esEs8(new_compare6(xuu47000, xuu48000, gd, ge, gf), LT) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs14(xuu40000, xuu3000) new_lt14(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_lt16(xuu47000, xuu48000, dad) new_esEs12(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_primCmpNat1(Zero, Succ(xuu48000)) -> LT new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs19(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, ty_Int) -> new_esEs10(xuu47001, xuu48001) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_compare9(xuu47000, xuu48000, app(ty_Maybe, bbe)) -> new_compare19(xuu47000, xuu48000, bbe) new_compare10(xuu47000, xuu48000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare29(xuu47000, xuu48000, False, cga, cgb) -> new_compare114(xuu47000, xuu48000, new_ltEs7(xuu47000, xuu48000, cga, cgb), cga, cgb) new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_Float) -> new_esEs14(xuu40002, xuu3002) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(xuu4700, xuu4800, bea) -> new_fsEs(new_compare14(xuu4700, xuu4800, bea)) new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_Float) -> new_lt4(xuu47001, xuu48001) new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_ltEs13(True, False) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Integer, cb) -> new_ltEs12(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(ty_[], cda)) -> new_esEs16(xuu40000, xuu3000, cda) new_ltEs21(xuu47001, xuu48001, ty_Float) -> new_ltEs17(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_esEs17(xuu47000, xuu48000, dgd) new_esEs30(xuu4000, xuu300, app(ty_Maybe, cef)) -> new_esEs7(xuu4000, xuu300, cef) new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt4(xuu47000, xuu48000) -> new_esEs8(new_compare5(xuu47000, xuu48000), LT) new_lt13(xuu47001, xuu48001, ty_Bool) -> new_lt10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(app(ty_Either, bfa), bfb)) -> new_ltEs4(xuu4700, xuu4800, bfa, bfb) new_compare17(xuu47000, xuu48000) -> new_compare28(xuu47000, xuu48000, new_esEs18(xuu47000, xuu48000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare6(xuu47000, xuu48000, gd, ge, gf) -> new_compare25(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_esEs28(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_esEs4(xuu47000, xuu48000, cga, cgb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_@2, cc), cd), cb) -> new_ltEs7(xuu47000, xuu48000, cc, cd) new_compare29(xuu47000, xuu48000, True, cga, cgb) -> EQ new_ltEs21(xuu47001, xuu48001, ty_Int) -> new_ltEs14(xuu47001, xuu48001) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_[], fa)) -> new_ltEs5(xuu47000, xuu48000, fa) new_lt20(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_lt18(xuu47000, xuu48000, bbf) new_ltEs20(xuu47002, xuu48002, ty_Ordering) -> new_ltEs6(xuu47002, xuu48002) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Float) -> new_compare5(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Ratio, ce), cb) -> new_ltEs8(xuu47000, xuu48000, ce) new_esEs16(:(xuu40000, xuu40001), [], chg) -> False new_esEs16([], :(xuu3000, xuu3001), chg) -> False new_ltEs20(xuu47002, xuu48002, ty_Char) -> new_ltEs10(xuu47002, xuu48002) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs23(xuu47000, xuu48000, app(ty_[], daa)) -> new_esEs16(xuu47000, xuu48000, daa) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu19, xuu14, app(app(ty_@2, cgh), cha)) -> new_esEs4(xuu19, xuu14, cgh, cha) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs11(xuu47000, xuu48000, ed, ee, ef) new_esEs24(xuu47001, xuu48001, ty_Bool) -> new_esEs18(xuu47001, xuu48001) new_compare9(xuu47000, xuu48000, app(ty_Ratio, bag)) -> new_compare14(xuu47000, xuu48000, bag) new_primEqNat0(Zero, Zero) -> True new_esEs24(xuu47001, xuu48001, ty_@0) -> new_esEs15(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_esEs5(xuu47000, xuu48000, bdc, bdd) new_ltEs11(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), beb, bec, bed) -> new_pePe(new_lt14(xuu47000, xuu48000, beb), new_asAs(new_esEs23(xuu47000, xuu48000, beb), new_pePe(new_lt13(xuu47001, xuu48001, bec), new_asAs(new_esEs24(xuu47001, xuu48001, bec), new_ltEs20(xuu47002, xuu48002, bed))))) new_ltEs21(xuu47001, xuu48001, app(app(app(ty_@3, eae), eaf), eag)) -> new_ltEs11(xuu47001, xuu48001, eae, eaf, eag) new_ltEs21(xuu47001, xuu48001, ty_Ordering) -> new_ltEs6(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(ty_[], dce)) -> new_ltEs5(xuu47002, xuu48002, dce) new_esEs28(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(xuu47000, xuu48000, gd, ge, gf) new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_compare110(xuu47000, xuu48000, True, bbf) -> LT new_esEs12(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, chf) -> new_esEs18(xuu40000, xuu3000) new_esEs29(xuu19, xuu14, app(ty_Ratio, chc)) -> new_esEs17(xuu19, xuu14, chc) new_esEs24(xuu47001, xuu48001, ty_Double) -> new_esEs20(xuu47001, xuu48001) new_esEs22(xuu40001, xuu3001, app(ty_[], cec)) -> new_esEs16(xuu40001, xuu3001, cec) new_asAs(False, xuu175) -> False new_ltEs21(xuu47001, xuu48001, ty_Char) -> new_ltEs10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Float) -> new_ltEs17(xuu47002, xuu48002) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_@2, dg), dh)) -> new_ltEs7(xuu47000, xuu48000, dg, dh) new_esEs30(xuu4000, xuu300, app(ty_Ratio, chh)) -> new_esEs17(xuu4000, xuu300, chh) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, chf) -> new_esEs15(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), bac) -> new_primCompAux1(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, bac), bac) new_lt13(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_lt16(xuu47001, xuu48001, dbf) new_esEs29(xuu19, xuu14, app(ty_Maybe, chd)) -> new_esEs7(xuu19, xuu14, chd) new_esEs13(xuu40002, xuu3002, ty_Bool) -> new_esEs18(xuu40002, xuu3002) new_ltEs4(Right(xuu47000), Left(xuu48000), de, cb) -> False new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt5(xuu47000, xuu48000, gd, ge, gf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_[], bha)) -> new_esEs16(xuu40000, xuu3000, bha) new_ltEs6(GT, LT) -> False new_ltEs19(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Int) -> new_ltEs14(xuu47002, xuu48002) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_compare9(x0, x1, app(ty_[], x2)) new_esEs8(EQ, EQ) new_compare9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_@0) new_lt8(x0, x1, x2, x3) new_compare27(Left(x0), Left(x1), False, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare19(x0, x1, x2) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat1(Zero, Zero) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(LT, LT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(True, True) new_compare18(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare11(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, LT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt14(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_pePe(False, x0) new_ltEs20(x0, x1, ty_Float) new_compare28(x0, x1, True) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare9(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_lt16(x0, x1, x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Float) new_compare10(x0, x1, True) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_@0) new_compare(:(x0, x1), [], x2) new_compare210(x0, x1, True, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs12(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, ty_Float) new_ltEs15(Nothing, Just(x0), x1) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs16([], :(x0, x1), x2) new_compare113(x0, x1, True) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_@0) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Char) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1, x2) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare9(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs12(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_compare24(x0, x1, False) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_lt5(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs11(x0, x1, ty_Char) new_sr(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare9(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Float) new_compare9(x0, x1, ty_Double) new_esEs21(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_Integer) new_esEs15(@0, @0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_lt10(x0, x1) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs18(False, True) new_esEs18(True, False) new_lt20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Int) new_lt14(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_@0) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs19(Char(x0), Char(x1)) new_esEs8(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, ty_Int) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpNat2(x0, Zero) new_primPlusNat0(Succ(x0), x1) new_compare([], :(x0, x1), x2) new_esEs8(LT, LT) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt17(x0, x1) new_esEs24(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt13(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare111(x0, x1, False, x2, x3, x4) new_compare16(x0, x1, x2, x3) new_esEs27(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_compare210(x0, x1, False, x2) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs14(x0, x1) new_asAs(True, x0) new_esEs11(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare110(x0, x1, False, x2) new_esEs29(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(True, True) new_compare114(x0, x1, True, x2, x3) new_lt14(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_compare112(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs13(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_compare9(x0, x1, app(ty_Maybe, x2)) new_ltEs6(EQ, EQ) new_esEs22(x0, x1, ty_Ordering) new_compare29(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Integer) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_compare9(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat1(Zero, Succ(x0)) new_lt14(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_not(True) new_lt7(x0, x1) new_esEs11(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_compare114(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs13(False, False) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare12(x0, x1) new_esEs13(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Char) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3, x4) new_esEs10(x0, x1) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare26(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_primCompAux0(x0, GT) new_esEs13(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs18(False, False) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_compare7(Integer(x0), Integer(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_compare29(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_esEs7(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, EQ) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_lt9(x0, x1) new_esEs11(x0, x1, ty_Int) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs13(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, ty_Bool) new_esEs16(:(x0, x1), [], x2) new_compare10(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux1(x0, x1, x2, x3) new_primMulInt(Pos(x0), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt14(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_fsEs(x0) new_ltEs20(x0, x1, ty_@0) new_compare9(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_compare111(x0, x1, True, x2, x3, x4) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Int) new_sr0(x0, x1) new_esEs31(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Double) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_compare27(Right(x0), Right(x1), False, x2, x3) new_primEqNat0(Zero, Zero) new_lt14(x0, x1, ty_Integer) new_compare113(x0, x1, False) new_compare13(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(x0, Succ(x1)) new_not(False) new_esEs30(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_@0) new_lt14(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt14(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(Left(x0), Right(x1), False, x2, x3) new_compare27(Right(x0), Left(x1), False, x2, x3) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs21(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Double) new_ltEs9(x0, x1) new_esEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare24(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Integer) new_compare17(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Ordering) new_compare28(x0, x1, False) new_lt13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_@0) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_lt14(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_compare6(x0, x1, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT new_ltEs21(xuu47001, xuu48001, ty_Integer) -> new_ltEs12(xuu47001, xuu48001) new_compare27(Left(xuu4700), Right(xuu4800), False, bde, bdf) -> LT new_pePe(True, xuu206) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, chf) -> new_esEs8(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs6(xuu40000, xuu3000, dge, dgf, dgg) new_ltEs20(xuu47002, xuu48002, app(ty_Maybe, ddf)) -> new_ltEs15(xuu47002, xuu48002, ddf) new_compare111(xuu47000, xuu48000, True, gd, ge, gf) -> LT new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_[], dfh)) -> new_esEs16(xuu40000, xuu3000, dfh) new_esEs14(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_ltEs6(GT, GT) -> True new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs12(xuu40001, xuu3001, app(ty_[], cac)) -> new_esEs16(xuu40001, xuu3001, cac) new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs18(True, True) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, chf) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(app(ty_@2, cbh), cca)) -> new_esEs4(xuu4000, xuu300, cbh, cca) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, chf) -> new_esEs20(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), [], bac) -> GT new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu47000, xuu48000, False, bbf) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_esEs24(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(ty_[], bee)) -> new_ltEs5(xuu4700, xuu4800, bee) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfh)) -> new_esEs7(xuu40000, xuu3000, cfh) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Char, cb) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, app(ty_Ratio, bea)) -> new_ltEs8(xuu4700, xuu4800, bea) new_esEs13(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs28(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_esEs7(xuu47000, xuu48000, bbf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_ltEs6(EQ, GT) -> True new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs14(xuu19, xuu14) new_compare113(xuu47000, xuu48000, False) -> GT new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs19(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_primCompAux0(xuu220, GT) -> GT new_esEs23(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_esEs5(xuu47000, xuu48000, dae, daf) new_esEs13(xuu40002, xuu3002, app(ty_Maybe, cbg)) -> new_esEs7(xuu40002, xuu3002, cbg) new_esEs24(xuu47001, xuu48001, ty_Char) -> new_esEs19(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs11(xuu47002, xuu48002, ddc, ddd, dde) new_compare27(Left(xuu4700), Left(xuu4800), False, bde, bdf) -> new_compare112(xuu4700, xuu4800, new_ltEs18(xuu4700, xuu4800, bde), bde, bdf) new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_ltEs21(xuu47001, xuu48001, app(app(ty_@2, dhh), eaa)) -> new_ltEs7(xuu47001, xuu48001, dhh, eaa) new_fsEs(xuu190) -> new_not(new_esEs8(xuu190, GT)) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, dhe)) -> new_esEs17(xuu40000, xuu3000, dhe) new_lt15(xuu47000, xuu48000, dgc) -> new_esEs8(new_compare(xuu47000, xuu48000, dgc), LT) new_esEs31(xuu4000, xuu300, app(ty_Ratio, baa)) -> new_esEs17(xuu4000, xuu300, baa) new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs6(xuu19, xuu14, cgc, cgd, cge) new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) new_esEs24(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_esEs4(xuu47001, xuu48001, dbd, dbe) new_ltEs13(True, True) -> True new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_lt13(xuu47001, xuu48001, app(app(ty_@2, dbd), dbe)) -> new_lt12(xuu47001, xuu48001, dbd, dbe) new_compare9(xuu47000, xuu48000, app(app(ty_@2, bae), baf)) -> new_compare13(xuu47000, xuu48000, bae, baf) new_esEs8(EQ, EQ) -> True new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_@2, dff), dfg)) -> new_esEs4(xuu40000, xuu3000, dff, dfg) new_primCompAux0(xuu220, LT) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_@0) -> new_lt19(xuu47001, xuu48001) new_esEs12(xuu40001, xuu3001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(xuu40001, xuu3001, bhg, bhh) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], def), chf) -> new_esEs16(xuu40000, xuu3000, def) new_not(True) -> False new_compare9(xuu47000, xuu48000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare6(xuu47000, xuu48000, bbb, bbc, bbd) new_ltEs19(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_ltEs5(xuu4700, xuu4800, bac) -> new_fsEs(new_compare(xuu4700, xuu4800, bac)) new_lt13(xuu47001, xuu48001, ty_Double) -> new_lt11(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs6(xuu40000, xuu3000, ccb, ccc, ccd) new_ltEs18(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, cdb)) -> new_esEs17(xuu40000, xuu3000, cdb) new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs24(xuu47001, xuu48001, ty_Float) -> new_esEs14(xuu47001, xuu48001) new_ltEs6(LT, GT) -> True new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Double, cb) -> new_ltEs9(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, chf) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu47000, xuu48000, False) -> new_compare113(xuu47000, xuu48000, new_ltEs13(xuu47000, xuu48000)) new_esEs13(xuu40002, xuu3002, app(app(ty_Either, cba), cbb)) -> new_esEs5(xuu40002, xuu3002, cba, cbb) new_esEs32(xuu36, xuu31, app(ty_[], bch)) -> new_esEs16(xuu36, xuu31, bch) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs11(xuu47000, xuu48000, da, db, dc) new_compare25(xuu47000, xuu48000, False, gd, ge, gf) -> new_compare111(xuu47000, xuu48000, new_ltEs11(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs12(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs11(xuu4700, xuu4800, bfc, bfd, bfe) new_lt14(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_lt12(xuu47000, xuu48000, dab, dac) new_lt14(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_ltEs20(xuu47002, xuu48002, app(ty_Ratio, dch)) -> new_ltEs8(xuu47002, xuu48002, dch) new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs15(xuu36, xuu31) new_lt20(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_lt12(xuu47000, xuu48000, cga, cgb) new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) new_lt8(xuu47000, xuu48000, bdc, bdd) -> new_esEs8(new_compare16(xuu47000, xuu48000, bdc, bdd), LT) new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt9(xuu47000, xuu48000) -> new_esEs8(new_compare12(xuu47000, xuu48000), LT) new_ltEs18(xuu4700, xuu4800, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs11(xuu4700, xuu4800, beb, bec, bed) new_ltEs20(xuu47002, xuu48002, ty_Bool) -> new_ltEs13(xuu47002, xuu48002) new_ltEs18(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) new_lt14(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT new_esEs28(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_@0, cb) -> new_ltEs16(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_compare13(xuu47000, xuu48000, cga, cgb) -> new_compare29(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, cga, cgb), cga, cgb) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_Either, bah), bba)) -> new_compare16(xuu47000, xuu48000, bah, bba) new_lt16(xuu47000, xuu48000, dgd) -> new_esEs8(new_compare14(xuu47000, xuu48000, dgd), LT) new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_esEs28(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_lt8(xuu47000, xuu48000, bdc, bdd) new_ltEs19(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_lt19(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_primPlusNat1(Succ(xuu50200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat1(xuu50200, xuu13100))) new_ltEs20(xuu47002, xuu48002, ty_Integer) -> new_ltEs12(xuu47002, xuu48002) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu4000, xuu300, ha, hb, hc) new_compare9(xuu47000, xuu48000, ty_Integer) -> new_compare7(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(ty_[], dgc)) -> new_lt15(xuu47000, xuu48000, dgc) new_compare27(Right(xuu4700), Left(xuu4800), False, bde, bdf) -> GT new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) new_compare9(xuu47000, xuu48000, ty_Ordering) -> new_compare12(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Maybe, dgb)) -> new_esEs7(xuu40000, xuu3000, dgb) new_sr(Integer(xuu470000), Integer(xuu480010)) -> Integer(new_primMulInt(xuu470000, xuu480010)) new_esEs28(xuu47000, xuu48000, app(ty_[], dgc)) -> new_esEs16(xuu47000, xuu48000, dgc) new_lt13(xuu47001, xuu48001, ty_Integer) -> new_lt6(xuu47001, xuu48001) new_pePe(False, xuu206) -> xuu206 new_esEs7(Nothing, Just(xuu3000), cef) -> False new_esEs7(Just(xuu40000), Nothing, cef) -> False new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, ty_Double) -> new_ltEs9(xuu47002, xuu48002) new_lt14(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_lt5(xuu47000, xuu48000, dag, dah, dba) new_compare210(xuu47000, xuu48000, True, bbf) -> EQ new_esEs20(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare114(xuu47000, xuu48000, True, cga, cgb) -> LT new_compare112(xuu180, xuu181, True, bbg, bbh) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) new_lt20(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_lt16(xuu47000, xuu48000, dgd) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Ordering, cb) -> new_ltEs6(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs18(xuu36, xuu31) new_ltEs6(LT, LT) -> True new_compare7(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu187, xuu188, False, gg, gh) -> GT new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ded), dee), chf) -> new_esEs4(xuu40000, xuu3000, ded, dee) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, ccg), cch)) -> new_esEs4(xuu40000, xuu3000, ccg, cch) new_esEs32(xuu36, xuu31, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(xuu36, xuu31, bca, bcb, bcc) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, cef) -> True new_lt13(xuu47001, xuu48001, ty_Char) -> new_lt17(xuu47001, xuu48001) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Bool) -> new_compare17(xuu47000, xuu48000) new_lt17(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, dhb), dhc)) -> new_esEs4(xuu40000, xuu3000, dhb, dhc) new_compare26(@0, @0) -> EQ new_ltEs15(Nothing, Nothing, eh) -> True new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs13(xuu40002, xuu3002, app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu40002, xuu3002, cbc, cbd) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs15(Just(xuu47000), Nothing, eh) -> False new_esEs24(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_esEs5(xuu47001, xuu48001, dbg, dbh) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare25(xuu47000, xuu48000, True, gd, ge, gf) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs28(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare114(xuu47000, xuu48000, False, cga, cgb) -> GT new_ltEs20(xuu47002, xuu48002, ty_@0) -> new_ltEs16(xuu47002, xuu48002) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Float, cb) -> new_ltEs17(xuu47000, xuu48000) new_ltEs10(xuu4700, xuu4800) -> new_fsEs(new_compare8(xuu4700, xuu4800)) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, dhf)) -> new_esEs7(xuu40000, xuu3000, dhf) new_lt13(xuu47001, xuu48001, ty_Int) -> new_lt7(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, app(app(ty_Either, bcd), bce)) -> new_esEs5(xuu36, xuu31, bcd, bce) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs6(xuu47001, xuu48001, dca, dcb, dcc) new_esEs11(xuu40000, xuu3000, app(ty_Ratio, bhb)) -> new_esEs17(xuu40000, xuu3000, bhb) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_ltEs21(xuu47001, xuu48001, app(ty_Maybe, eah)) -> new_ltEs15(xuu47001, xuu48001, eah) new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare15(xuu47000, xuu48000), LT) new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_esEs24(xuu47001, xuu48001, ty_Integer) -> new_esEs9(xuu47001, xuu48001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(xuu40000, xuu3000, ceg, ceh, cfa) new_ltEs6(LT, EQ) -> True new_compare9(xuu47000, xuu48000, app(ty_[], bad)) -> new_compare(xuu47000, xuu48000, bad) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, chf) -> new_esEs9(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(ty_Maybe, cee)) -> new_esEs7(xuu40001, xuu3001, cee) new_esEs13(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs23(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_esEs7(xuu47000, xuu48000, dbb) new_lt14(xuu47000, xuu48000, app(ty_Maybe, dbb)) -> new_lt18(xuu47000, xuu48000, dbb) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, deb), dec), chf) -> new_esEs5(xuu40000, xuu3000, deb, dec) new_primCmpNat0(Zero, xuu4700) -> LT new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cbh, cca) -> new_asAs(new_esEs21(xuu40000, xuu3000, cbh), new_esEs22(xuu40001, xuu3001, cca)) new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs10(xuu36, xuu31) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, cce), ccf)) -> new_esEs5(xuu40000, xuu3000, cce, ccf) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs18(xuu4700, xuu4800, app(ty_Maybe, eh)) -> new_ltEs15(xuu4700, xuu4800, eh) new_esEs11(xuu40000, xuu3000, app(app(ty_@2, bgg), bgh)) -> new_esEs4(xuu40000, xuu3000, bgg, bgh) new_compare27(Right(xuu4700), Right(xuu4800), False, bde, bdf) -> new_compare11(xuu4700, xuu4800, new_ltEs19(xuu4700, xuu4800, bdf), bde, bdf) new_esEs8(LT, LT) -> True new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), chg) -> new_asAs(new_esEs25(xuu40000, xuu3000, chg), new_esEs16(xuu40001, xuu3001, chg)) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs16(xuu4700, xuu4800) -> new_fsEs(new_compare26(xuu4700, xuu4800)) new_esEs13(xuu40002, xuu3002, ty_Integer) -> new_esEs9(xuu40002, xuu3002) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs6(xuu40001, xuu3001, cdd, cde, cdf) new_esEs23(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_esEs17(xuu47000, xuu48000, dad) new_primPlusNat1(Succ(xuu50200), Zero) -> Succ(xuu50200) new_primPlusNat1(Zero, Succ(xuu13100)) -> Succ(xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cfd), cfe)) -> new_esEs4(xuu40000, xuu3000, cfd, cfe) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) new_ltEs19(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_esEs12(xuu40001, xuu3001, app(app(ty_@2, caa), cab)) -> new_esEs4(xuu40001, xuu3001, caa, cab) new_esEs13(xuu40002, xuu3002, app(ty_Ratio, cbf)) -> new_esEs17(xuu40002, xuu3002, cbf) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs18(xuu19, xuu14) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_esEs7(xuu47001, xuu48001, dcd) new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs20(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_esEs17(xuu47001, xuu48001, dbf) new_ltEs20(xuu47002, xuu48002, app(app(ty_@2, dcf), dcg)) -> new_ltEs7(xuu47002, xuu48002, dcf, dcg) new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs6(xuu47000, xuu48000, dag, dah, dba) new_esEs16([], [], chg) -> True new_esEs12(xuu40001, xuu3001, app(ty_Ratio, cad)) -> new_esEs17(xuu40001, xuu3001, cad) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs19(xuu36, xuu31) new_lt14(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare([], :(xuu48000, xuu48001), bac) -> LT new_esEs11(xuu40000, xuu3000, app(app(ty_Either, bge), bgf)) -> new_esEs5(xuu40000, xuu3000, bge, bgf) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs14(xuu36, xuu31) new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs15(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(app(ty_@2, bef), beg)) -> new_ltEs7(xuu4700, xuu4800, bef, beg) new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(ty_Maybe, bff)) -> new_ltEs15(xuu4700, xuu4800, bff) new_esEs12(xuu40001, xuu3001, app(ty_Maybe, cae)) -> new_esEs7(xuu40001, xuu3001, cae) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Ratio, ea)) -> new_ltEs8(xuu47000, xuu48000, ea) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_@2, fb), fc)) -> new_ltEs7(xuu47000, xuu48000, fb, fc) new_compare210(xuu47000, xuu48000, False, bbf) -> new_compare110(xuu47000, xuu48000, new_ltEs15(xuu47000, xuu48000, bbf), bbf) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, cdg), cdh)) -> new_esEs5(xuu40001, xuu3001, cdg, cdh) new_primCmpNat2(xuu4700, Zero) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfg)) -> new_esEs17(xuu40000, xuu3000, cfg) new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare16(xuu47000, xuu48000, bdc, bdd) -> new_compare27(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, bdc, bdd), bdc, bdd) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Maybe, gc)) -> new_ltEs15(xuu47000, xuu48000, gc) new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(xuu40000, xuu3000, bgb, bgc, bgd) new_esEs23(xuu47000, xuu48000, app(app(ty_@2, dab), dac)) -> new_esEs4(xuu47000, xuu48000, dab, dac) new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Int, cb) -> new_ltEs14(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_Maybe, eg)) -> new_ltEs15(xuu47000, xuu48000, eg) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_ltEs21(xuu47001, xuu48001, ty_Double) -> new_ltEs9(xuu47001, xuu48001) new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_compare8(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_Maybe, bhc)) -> new_esEs7(xuu40000, xuu3000, bhc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_lt13(xuu47001, xuu48001, app(ty_[], dbc)) -> new_lt15(xuu47001, xuu48001, dbc) new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs6(xuu40000, xuu3000, dfa, dfb, dfc) new_compare28(xuu47000, xuu48000, True) -> EQ new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_Either, eb), ec)) -> new_ltEs4(xuu47000, xuu48000, eb, ec) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, cea), ceb)) -> new_esEs4(xuu40001, xuu3001, cea, ceb) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, deg), chf) -> new_esEs17(xuu40000, xuu3000, deg) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_[], ca), cb) -> new_ltEs5(xuu47000, xuu48000, ca) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dd), cb) -> new_ltEs15(xuu47000, xuu48000, dd) new_ltEs6(GT, EQ) -> False new_primCmpNat1(Succ(xuu47000), Zero) -> GT new_esEs5(Right(xuu40000), Right(xuu3000), che, app(ty_Ratio, dga)) -> new_esEs17(xuu40000, xuu3000, dga) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) new_compare111(xuu47000, xuu48000, False, gd, ge, gf) -> GT new_lt13(xuu47001, xuu48001, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt5(xuu47001, xuu48001, dca, dcb, dcc) new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) new_primCompAux1(xuu47000, xuu48000, xuu207, bac) -> new_primCompAux0(xuu207, new_compare9(xuu47000, xuu48000, bac)) new_ltEs20(xuu47002, xuu48002, app(app(ty_Either, dda), ddb)) -> new_ltEs4(xuu47002, xuu48002, dda, ddb) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(ty_[], df)) -> new_ltEs5(xuu47000, xuu48000, df) new_esEs12(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_compare19(xuu47000, xuu48000, bbf) -> new_compare210(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, bbf), bbf) new_ltEs21(xuu47001, xuu48001, ty_@0) -> new_ltEs16(xuu47001, xuu48001) new_ltEs18(xuu4700, xuu4800, app(app(ty_@2, bdg), bdh)) -> new_ltEs7(xuu4700, xuu4800, bdg, bdh) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_asAs(True, xuu175) -> xuu175 new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), chh) -> new_asAs(new_esEs26(xuu40000, xuu3000, chh), new_esEs27(xuu40001, xuu3001, chh)) new_compare113(xuu47000, xuu48000, True) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(xuu40001, xuu3001, bhd, bhe, bhf) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare7(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) new_lt13(xuu47001, xuu48001, app(app(ty_Either, dbg), dbh)) -> new_lt8(xuu47001, xuu48001, dbg, dbh) new_lt14(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_esEs29(xuu19, xuu14, app(ty_[], chb)) -> new_esEs16(xuu19, xuu14, chb) new_lt14(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs18(False, False) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs19(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare15(xuu4700, xuu4800)) new_esEs29(xuu19, xuu14, app(app(ty_Either, cgf), cgg)) -> new_esEs5(xuu19, xuu14, cgf, cgg) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_lt12(xuu47000, xuu48000, cga, cgb) -> new_esEs8(new_compare13(xuu47000, xuu48000, cga, cgb), LT) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, ced)) -> new_esEs17(xuu40001, xuu3001, ced) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_@0) -> new_compare26(xuu47000, xuu48000) new_compare10(xuu47000, xuu48000, False) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(ty_[], chg)) -> new_esEs16(xuu4000, xuu300, chg) new_esEs24(xuu47001, xuu48001, app(ty_[], dbc)) -> new_esEs16(xuu47001, xuu48001, dbc) new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Ratio, fd)) -> new_ltEs8(xuu47000, xuu48000, fd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(xuu4700, xuu4800) -> new_fsEs(new_compare5(xuu4700, xuu4800)) new_lt13(xuu47001, xuu48001, app(ty_Maybe, dcd)) -> new_lt18(xuu47001, xuu48001, dcd) new_ltEs21(xuu47001, xuu48001, app(ty_Ratio, eab)) -> new_ltEs8(xuu47001, xuu48001, eab) new_esEs31(xuu4000, xuu300, app(ty_Maybe, bab)) -> new_esEs7(xuu4000, xuu300, bab) new_ltEs6(EQ, LT) -> False new_compare12(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) new_ltEs18(xuu4700, xuu4800, app(app(ty_Either, de), cb)) -> new_ltEs4(xuu4700, xuu4800, de, cb) new_ltEs13(False, True) -> True new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs9(xuu19, xuu14) new_ltEs13(False, False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), che, app(app(ty_Either, dfd), dfe)) -> new_esEs5(xuu40000, xuu3000, dfd, dfe) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bfg, bfh, bga) -> new_asAs(new_esEs11(xuu40000, xuu3000, bfg), new_asAs(new_esEs12(xuu40001, xuu3001, bfh), new_esEs13(xuu40002, xuu3002, bga))) new_esEs9(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_lt14(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu40002, xuu3002, caf, cag, cah) new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCompAux0(xuu220, EQ) -> xuu220 new_lt14(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Double) -> new_compare15(xuu47000, xuu48000) new_esEs15(@0, @0) -> True new_compare9(xuu47000, xuu48000, ty_Char) -> new_compare8(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs20(xuu36, xuu31) new_lt13(xuu47001, xuu48001, ty_Ordering) -> new_lt9(xuu47001, xuu48001) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_compare([], [], bac) -> EQ new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cdc)) -> new_esEs7(xuu40000, xuu3000, cdc) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs32(xuu36, xuu31, app(app(ty_@2, bcf), bcg)) -> new_esEs4(xuu36, xuu31, bcf, bcg) new_compare24(xuu47000, xuu48000, True) -> EQ new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_Either, cf), cg), cb) -> new_ltEs4(xuu47000, xuu48000, cf, cg) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, dgh), dha)) -> new_esEs5(xuu40000, xuu3000, dgh, dha) new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_ltEs7(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bdg, bdh) -> new_pePe(new_lt20(xuu47000, xuu48000, bdg), new_asAs(new_esEs28(xuu47000, xuu48000, bdg), new_ltEs21(xuu47001, xuu48001, bdh))) new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_esEs31(xuu4000, xuu300, app(ty_[], hh)) -> new_esEs16(xuu4000, xuu300, hh) new_lt10(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) new_esEs32(xuu36, xuu31, app(ty_Maybe, bdb)) -> new_esEs7(xuu36, xuu31, bdb) new_esEs31(xuu4000, xuu300, app(app(ty_Either, hd), he)) -> new_esEs5(xuu4000, xuu300, hd, he) new_esEs25(xuu40000, xuu3000, app(ty_[], dhd)) -> new_esEs16(xuu40000, xuu3000, dhd) new_lt14(xuu47000, xuu48000, app(ty_[], daa)) -> new_lt15(xuu47000, xuu48000, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, app(app(ty_Either, dae), daf)) -> new_lt8(xuu47000, xuu48000, dae, daf) new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_Either, ff), fg)) -> new_ltEs4(xuu47000, xuu48000, ff, fg) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ddg), ddh), dea), chf) -> new_esEs6(xuu40000, xuu3000, ddg, ddh, dea) new_compare24(xuu47000, xuu48000, False) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000)) new_ltEs21(xuu47001, xuu48001, app(app(ty_Either, eac), ead)) -> new_ltEs4(xuu47001, xuu48001, eac, ead) new_compare112(xuu180, xuu181, False, bbg, bbh) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, deh), chf) -> new_esEs7(xuu40000, xuu3000, deh) new_ltEs19(xuu4700, xuu4800, app(ty_Ratio, beh)) -> new_ltEs8(xuu4700, xuu4800, beh) new_esEs31(xuu4000, xuu300, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu4000, xuu300, hf, hg) new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs13(xuu40002, xuu3002, app(ty_[], cbe)) -> new_esEs16(xuu40002, xuu3002, cbe) new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_not(False) -> True new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), che, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_@0) -> new_esEs15(xuu40002, xuu3002) new_lt7(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) new_ltEs15(Nothing, Just(xuu48000), eh) -> True new_lt18(xuu47000, xuu48000, bbf) -> new_esEs8(new_compare19(xuu47000, xuu48000, bbf), LT) new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs9(xuu36, xuu31) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(xuu36, xuu31, app(ty_Ratio, bda)) -> new_esEs17(xuu36, xuu31, bda) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs11(xuu47000, xuu48000, fh, ga, gb) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) new_esEs5(Left(xuu40000), Right(xuu3000), che, chf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), che, chf) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) new_compare27(xuu470, xuu480, True, bde, bdf) -> EQ new_esEs13(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) new_ltEs4(Left(xuu47000), Right(xuu48000), de, cb) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, chf) -> new_esEs10(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, app(ty_[], bac)) -> new_ltEs5(xuu4700, xuu4800, bac) new_esEs13(xuu40002, xuu3002, ty_Double) -> new_esEs20(xuu40002, xuu3002) new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs6(xuu4000, xuu300, bfg, bfh, bga) new_ltEs21(xuu47001, xuu48001, app(ty_[], dhg)) -> new_ltEs5(xuu47001, xuu48001, dhg) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Bool, cb) -> new_ltEs13(xuu47000, xuu48000) new_esEs30(xuu4000, xuu300, app(app(ty_Either, che), chf)) -> new_esEs5(xuu4000, xuu300, che, chf) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_ltEs21(xuu47001, xuu48001, ty_Bool) -> new_ltEs13(xuu47001, xuu48001) new_primPlusNat0(Succ(xuu1400), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1400, xuu300000))) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_compare11(xuu187, xuu188, True, gg, gh) -> LT new_lt5(xuu47000, xuu48000, gd, ge, gf) -> new_esEs8(new_compare6(xuu47000, xuu48000, gd, ge, gf), LT) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs14(xuu40000, xuu3000) new_lt14(xuu47000, xuu48000, app(ty_Ratio, dad)) -> new_lt16(xuu47000, xuu48000, dad) new_esEs12(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_primCmpNat1(Zero, Succ(xuu48000)) -> LT new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs19(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, ty_Int) -> new_esEs10(xuu47001, xuu48001) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_compare9(xuu47000, xuu48000, app(ty_Maybe, bbe)) -> new_compare19(xuu47000, xuu48000, bbe) new_compare10(xuu47000, xuu48000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare29(xuu47000, xuu48000, False, cga, cgb) -> new_compare114(xuu47000, xuu48000, new_ltEs7(xuu47000, xuu48000, cga, cgb), cga, cgb) new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_Float) -> new_esEs14(xuu40002, xuu3002) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(xuu4700, xuu4800, bea) -> new_fsEs(new_compare14(xuu4700, xuu4800, bea)) new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_Float) -> new_lt4(xuu47001, xuu48001) new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_ltEs13(True, False) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Integer, cb) -> new_ltEs12(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(ty_[], cda)) -> new_esEs16(xuu40000, xuu3000, cda) new_ltEs21(xuu47001, xuu48001, ty_Float) -> new_ltEs17(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(ty_Ratio, dgd)) -> new_esEs17(xuu47000, xuu48000, dgd) new_esEs30(xuu4000, xuu300, app(ty_Maybe, cef)) -> new_esEs7(xuu4000, xuu300, cef) new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt4(xuu47000, xuu48000) -> new_esEs8(new_compare5(xuu47000, xuu48000), LT) new_lt13(xuu47001, xuu48001, ty_Bool) -> new_lt10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(app(ty_Either, bfa), bfb)) -> new_ltEs4(xuu4700, xuu4800, bfa, bfb) new_compare17(xuu47000, xuu48000) -> new_compare28(xuu47000, xuu48000, new_esEs18(xuu47000, xuu48000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare6(xuu47000, xuu48000, gd, ge, gf) -> new_compare25(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, gd, ge, gf), gd, ge, gf) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_esEs28(xuu47000, xuu48000, app(app(ty_@2, cga), cgb)) -> new_esEs4(xuu47000, xuu48000, cga, cgb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_@2, cc), cd), cb) -> new_ltEs7(xuu47000, xuu48000, cc, cd) new_compare29(xuu47000, xuu48000, True, cga, cgb) -> EQ new_ltEs21(xuu47001, xuu48001, ty_Int) -> new_ltEs14(xuu47001, xuu48001) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_[], fa)) -> new_ltEs5(xuu47000, xuu48000, fa) new_lt20(xuu47000, xuu48000, app(ty_Maybe, bbf)) -> new_lt18(xuu47000, xuu48000, bbf) new_ltEs20(xuu47002, xuu48002, ty_Ordering) -> new_ltEs6(xuu47002, xuu48002) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Float) -> new_compare5(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Ratio, ce), cb) -> new_ltEs8(xuu47000, xuu48000, ce) new_esEs16(:(xuu40000, xuu40001), [], chg) -> False new_esEs16([], :(xuu3000, xuu3001), chg) -> False new_ltEs20(xuu47002, xuu48002, ty_Char) -> new_ltEs10(xuu47002, xuu48002) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs23(xuu47000, xuu48000, app(ty_[], daa)) -> new_esEs16(xuu47000, xuu48000, daa) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu19, xuu14, app(app(ty_@2, cgh), cha)) -> new_esEs4(xuu19, xuu14, cgh, cha) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs11(xuu47000, xuu48000, ed, ee, ef) new_esEs24(xuu47001, xuu48001, ty_Bool) -> new_esEs18(xuu47001, xuu48001) new_compare9(xuu47000, xuu48000, app(ty_Ratio, bag)) -> new_compare14(xuu47000, xuu48000, bag) new_primEqNat0(Zero, Zero) -> True new_esEs24(xuu47001, xuu48001, ty_@0) -> new_esEs15(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(app(ty_Either, bdc), bdd)) -> new_esEs5(xuu47000, xuu48000, bdc, bdd) new_ltEs11(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), beb, bec, bed) -> new_pePe(new_lt14(xuu47000, xuu48000, beb), new_asAs(new_esEs23(xuu47000, xuu48000, beb), new_pePe(new_lt13(xuu47001, xuu48001, bec), new_asAs(new_esEs24(xuu47001, xuu48001, bec), new_ltEs20(xuu47002, xuu48002, bed))))) new_ltEs21(xuu47001, xuu48001, app(app(app(ty_@3, eae), eaf), eag)) -> new_ltEs11(xuu47001, xuu48001, eae, eaf, eag) new_ltEs21(xuu47001, xuu48001, ty_Ordering) -> new_ltEs6(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(ty_[], dce)) -> new_ltEs5(xuu47002, xuu48002, dce) new_esEs28(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(xuu47000, xuu48000, gd, ge, gf) new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_compare110(xuu47000, xuu48000, True, bbf) -> LT new_esEs12(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), de, ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, chf) -> new_esEs18(xuu40000, xuu3000) new_esEs29(xuu19, xuu14, app(ty_Ratio, chc)) -> new_esEs17(xuu19, xuu14, chc) new_esEs24(xuu47001, xuu48001, ty_Double) -> new_esEs20(xuu47001, xuu48001) new_esEs22(xuu40001, xuu3001, app(ty_[], cec)) -> new_esEs16(xuu40001, xuu3001, cec) new_asAs(False, xuu175) -> False new_ltEs21(xuu47001, xuu48001, ty_Char) -> new_ltEs10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Float) -> new_ltEs17(xuu47002, xuu48002) new_ltEs4(Right(xuu47000), Right(xuu48000), de, app(app(ty_@2, dg), dh)) -> new_ltEs7(xuu47000, xuu48000, dg, dh) new_esEs30(xuu4000, xuu300, app(ty_Ratio, chh)) -> new_esEs17(xuu4000, xuu300, chh) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, chf) -> new_esEs15(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), bac) -> new_primCompAux1(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, bac), bac) new_lt13(xuu47001, xuu48001, app(ty_Ratio, dbf)) -> new_lt16(xuu47001, xuu48001, dbf) new_esEs29(xuu19, xuu14, app(ty_Maybe, chd)) -> new_esEs7(xuu19, xuu14, chd) new_esEs13(xuu40002, xuu3002, ty_Bool) -> new_esEs18(xuu40002, xuu3002) new_ltEs4(Right(xuu47000), Left(xuu48000), de, cb) -> False new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt5(xuu47000, xuu48000, gd, ge, gf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_[], bha)) -> new_esEs16(xuu40000, xuu3000, bha) new_ltEs6(GT, LT) -> False new_ltEs19(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs20(xuu47002, xuu48002, ty_Int) -> new_ltEs14(xuu47002, xuu48002) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_compare9(x0, x1, app(ty_[], x2)) new_esEs8(EQ, EQ) new_compare9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_@0) new_lt8(x0, x1, x2, x3) new_compare27(Left(x0), Left(x1), False, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare19(x0, x1, x2) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat1(Zero, Zero) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(LT, LT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(True, True) new_compare18(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare11(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, LT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt14(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_pePe(False, x0) new_ltEs20(x0, x1, ty_Float) new_compare28(x0, x1, True) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare9(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_lt16(x0, x1, x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Float) new_compare10(x0, x1, True) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_@0) new_compare(:(x0, x1), [], x2) new_compare210(x0, x1, True, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs12(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, ty_Float) new_ltEs15(Nothing, Just(x0), x1) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs16([], :(x0, x1), x2) new_compare113(x0, x1, True) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_@0) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Char) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1, x2) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare9(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs12(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_compare24(x0, x1, False) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_lt5(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs11(x0, x1, ty_Char) new_sr(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare9(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Float) new_compare9(x0, x1, ty_Double) new_esEs21(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_Integer) new_esEs15(@0, @0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_lt10(x0, x1) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs18(False, True) new_esEs18(True, False) new_lt20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Int) new_lt14(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_@0) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs19(Char(x0), Char(x1)) new_esEs8(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(x0, x1, ty_Int) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpNat2(x0, Zero) new_primPlusNat0(Succ(x0), x1) new_compare([], :(x0, x1), x2) new_esEs8(LT, LT) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt17(x0, x1) new_esEs24(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt13(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare111(x0, x1, False, x2, x3, x4) new_compare16(x0, x1, x2, x3) new_esEs27(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_compare210(x0, x1, False, x2) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs14(x0, x1) new_asAs(True, x0) new_esEs11(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare110(x0, x1, False, x2) new_esEs29(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(True, True) new_compare114(x0, x1, True, x2, x3) new_lt14(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_compare112(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs13(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_compare9(x0, x1, app(ty_Maybe, x2)) new_ltEs6(EQ, EQ) new_esEs22(x0, x1, ty_Ordering) new_compare29(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Integer) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_compare9(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat1(Zero, Succ(x0)) new_lt14(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_not(True) new_lt7(x0, x1) new_esEs11(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_compare114(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs13(False, False) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare12(x0, x1) new_esEs13(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Char) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3, x4) new_esEs10(x0, x1) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare26(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_primCompAux0(x0, GT) new_esEs13(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs18(False, False) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_compare7(Integer(x0), Integer(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_compare29(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_esEs7(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, EQ) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_lt9(x0, x1) new_esEs11(x0, x1, ty_Int) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs13(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, ty_Bool) new_esEs16(:(x0, x1), [], x2) new_compare10(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux1(x0, x1, x2, x3) new_primMulInt(Pos(x0), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt14(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_fsEs(x0) new_ltEs20(x0, x1, ty_@0) new_compare9(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_compare111(x0, x1, True, x2, x3, x4) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Int) new_sr0(x0, x1) new_esEs31(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Double) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_compare27(Right(x0), Right(x1), False, x2, x3) new_primEqNat0(Zero, Zero) new_lt14(x0, x1, ty_Integer) new_compare113(x0, x1, False) new_compare13(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(x0, Succ(x1)) new_not(False) new_esEs30(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_@0) new_lt14(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt14(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(Left(x0), Right(x1), False, x2, x3) new_compare27(Right(x0), Left(x1), False, x2, x3) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs21(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Double) new_ltEs9(x0, x1) new_esEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare24(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Integer) new_compare17(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Ordering) new_compare28(x0, x1, False) new_lt13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_@0) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_lt14(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_compare6(x0, x1, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ff), fg), fb) -> new_esEs1(xuu40000, xuu3000, ff, fg) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, bg), bh), bc, bd) -> new_esEs1(xuu40000, xuu3000, bg, bh) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs(xuu40001, xuu3001, bag, bah, bba) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bda) -> new_esEs2(xuu40001, xuu3001, bda) new_esEs3(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bde), bdf)) -> new_esEs0(xuu40000, xuu3000, bde, bdf) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(ty_Either, bbb), bbc)) -> new_esEs0(xuu40001, xuu3001, bbb, bbc) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu40002, xuu3002, df, dg, dh) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, hh), baa), hg) -> new_esEs0(xuu40000, xuu3000, hh, baa) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(ty_@2, ec), ed)) -> new_esEs1(xuu40002, xuu3002, ec, ed) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xuu40000, xuu3000, bbh, bca, bcb) new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs0(xuu40000, xuu3000, gf, gg) new_esEs3(Just(xuu40000), Just(xuu3000), app(ty_Maybe, beb)) -> new_esEs3(xuu40000, xuu3000, beb) new_esEs3(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu40000, xuu3000, bdb, bdc, bdd) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], ca), bc, bd) -> new_esEs2(xuu40000, xuu3000, ca) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(ty_[], dd), bd) -> new_esEs2(xuu40001, xuu3001, dd) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu40001, xuu3001, cd, ce, cf) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(ty_[], ee)) -> new_esEs2(xuu40002, xuu3002, ee) new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], fh), fb) -> new_esEs2(xuu40000, xuu3000, fh) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(ty_@2, db), dc), bd) -> new_esEs1(xuu40001, xuu3001, db, dc) new_esEs3(Just(xuu40000), Just(xuu3000), app(ty_[], bea)) -> new_esEs2(xuu40000, xuu3000, bea) new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(ty_Maybe, hc)) -> new_esEs3(xuu40000, xuu3000, hc) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, be), bf), bc, bd) -> new_esEs0(xuu40000, xuu3000, be, bf) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, fc), fd), fb) -> new_esEs0(xuu40000, xuu3000, fc, fd) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu40001, xuu3001, bbg) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcc, bcd) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(ty_Either, cg), da), bd) -> new_esEs0(xuu40001, xuu3001, cg, da) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bch)) -> new_esEs3(xuu40000, xuu3000, bch) new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs(xuu40000, xuu3000, gc, gd, ge) new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(ty_@2, gh), ha)) -> new_esEs1(xuu40000, xuu3000, gh, ha) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu40000, xuu3000, h, ba, bb) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bae), hg) -> new_esEs3(xuu40000, xuu3000, bae) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(ty_[], bbf)) -> new_esEs2(xuu40001, xuu3001, bbf) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, hd), he), hf), hg) -> new_esEs(xuu40000, xuu3000, hd, he, hf) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bab), bac), hg) -> new_esEs1(xuu40000, xuu3000, bab, bac) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(ty_[], hb)) -> new_esEs2(xuu40000, xuu3000, hb) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bad), hg) -> new_esEs2(xuu40000, xuu3000, bad) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(ty_Maybe, ef)) -> new_esEs3(xuu40002, xuu3002, ef) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(ty_Maybe, de), bd) -> new_esEs3(xuu40001, xuu3001, de) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(ty_Either, ea), eb)) -> new_esEs0(xuu40002, xuu3002, ea, eb) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, eg), eh), fa), fb) -> new_esEs(xuu40000, xuu3000, eg, eh, fa) new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(ty_@2, bbd), bbe)) -> new_esEs1(xuu40001, xuu3001, bbd, bbe) new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, cb), bc, bd) -> new_esEs3(xuu40000, xuu3000, cb) new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ga), fb) -> new_esEs3(xuu40000, xuu3000, ga) new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) new_esEs3(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bdg), bdh)) -> new_esEs1(xuu40000, xuu3000, bdg, bdh) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xuu40000, xuu3000, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bch)) -> new_esEs3(xuu40000, xuu3000, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bde), bdf)) -> new_esEs0(xuu40000, xuu3000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu40000, xuu3000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bdg), bdh)) -> new_esEs1(xuu40000, xuu3000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(xuu40000), Just(xuu3000), app(ty_[], bea)) -> new_esEs2(xuu40000, xuu3000, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(xuu40000), Just(xuu3000), app(ty_Maybe, beb)) -> new_esEs3(xuu40000, xuu3000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(ty_Either, bbb), bbc)) -> new_esEs0(xuu40001, xuu3001, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, hh), baa), hg) -> new_esEs0(xuu40000, xuu3000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs(xuu40001, xuu3001, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, hd), he), hf), hg) -> new_esEs(xuu40000, xuu3000, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bab), bac), hg) -> new_esEs1(xuu40000, xuu3000, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(app(ty_@2, bbd), bbe)) -> new_esEs1(xuu40001, xuu3001, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(ty_[], bbf)) -> new_esEs2(xuu40001, xuu3001, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bad), hg) -> new_esEs2(xuu40000, xuu3000, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu40001, xuu3001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bae), hg) -> new_esEs3(xuu40000, xuu3000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, be), bf), bc, bd) -> new_esEs0(xuu40000, xuu3000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(ty_Either, cg), da), bd) -> new_esEs0(xuu40001, xuu3001, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(ty_Either, ea), eb)) -> new_esEs0(xuu40002, xuu3002, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs0(xuu40000, xuu3000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, fc), fd), fb) -> new_esEs0(xuu40000, xuu3000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu40002, xuu3002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu40001, xuu3001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu40000, xuu3000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs(xuu40000, xuu3000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, eg), eh), fa), fb) -> new_esEs(xuu40000, xuu3000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, bg), bh), bc, bd) -> new_esEs1(xuu40000, xuu3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(app(ty_@2, ec), ed)) -> new_esEs1(xuu40002, xuu3002, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(app(ty_@2, db), dc), bd) -> new_esEs1(xuu40001, xuu3001, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], ca), bc, bd) -> new_esEs2(xuu40000, xuu3000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(ty_[], dd), bd) -> new_esEs2(xuu40001, xuu3001, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(ty_[], ee)) -> new_esEs2(xuu40002, xuu3002, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, bc, app(ty_Maybe, ef)) -> new_esEs3(xuu40002, xuu3002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cc, app(ty_Maybe, de), bd) -> new_esEs3(xuu40001, xuu3001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, cb), bc, bd) -> new_esEs3(xuu40000, xuu3000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ff), fg), fb) -> new_esEs1(xuu40000, xuu3000, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(app(ty_@2, gh), ha)) -> new_esEs1(xuu40000, xuu3000, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bda) -> new_esEs2(xuu40001, xuu3001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], fh), fb) -> new_esEs2(xuu40000, xuu3000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(ty_[], hb)) -> new_esEs2(xuu40000, xuu3000, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Right(xuu40000), Right(xuu3000), gb, app(ty_Maybe, hc)) -> new_esEs3(xuu40000, xuu3000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ga), fb) -> new_esEs3(xuu40000, xuu3000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu4000100), Succ(xuu300000)) -> new_primMulNat(xuu4000100, Succ(xuu300000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu4000100), Succ(xuu300000)) -> new_primMulNat(xuu4000100, Succ(xuu300000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu3, :(xuu40, xuu41), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba, bb), xuu41, h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT new_ltEs21(xuu47001, xuu48001, ty_Integer) -> new_ltEs12(xuu47001, xuu48001) new_compare27(Left(xuu4700), Right(xuu4800), False, daf, dag) -> LT new_pePe(True, xuu206) -> True new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu40000, xuu3000, cch, cda, cdb) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, dc) -> new_esEs8(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, app(ty_Maybe, ccd)) -> new_ltEs15(xuu47002, xuu48002, ccd) new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_compare111(xuu47000, xuu48000, True, fc, fd, ff) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) new_esEs14(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_esEs5(Right(xuu40000), Right(xuu3000), db, app(ty_[], dhe)) -> new_esEs16(xuu40000, xuu3000, dhe) new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_ltEs6(GT, GT) -> True new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs12(xuu40001, xuu3001, app(ty_[], bca)) -> new_esEs16(xuu40001, xuu3001, bca) new_esEs18(True, True) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, dc) -> new_esEs19(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(app(ty_@2, dd), de)) -> new_esEs4(xuu4000, xuu300, dd, de) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, dc) -> new_esEs20(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), [], hg) -> GT new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu47000, xuu48000, False, hf) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_mkBalBranch6MkBalBranch30(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Right(xuu300), xuu31, xuu42, xuu34, app(app(ty_Either, h), ba), bb) new_esEs24(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(ty_[], dbc)) -> new_ltEs5(xuu4700, xuu4800, dbc) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, ddg)) -> new_esEs7(xuu40000, xuu3000, ddg) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Char, cec) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, app(ty_Ratio, dbb)) -> new_ltEs8(xuu4700, xuu4800, dbb) new_esEs13(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs28(xuu47000, xuu48000, app(ty_Maybe, hf)) -> new_esEs7(xuu47000, xuu48000, hf) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_ltEs6(EQ, GT) -> True new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs14(xuu19, xuu14) new_compare113(xuu47000, xuu48000, False) -> GT new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch0(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Left(xuu4000), xuu401, h, ba, bb), h, ba, bb) new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs19(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_addToFM_C13(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Right(xuu4000), xuu401, h, ba, bb), h, ba, bb) new_primCompAux0(xuu220, GT) -> GT new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bhc), bhd)) -> new_esEs5(xuu47000, xuu48000, bhc, bhd) new_esEs13(xuu40002, xuu3002, app(ty_Maybe, bde)) -> new_esEs7(xuu40002, xuu3002, bde) new_esEs24(xuu47001, xuu48001, ty_Char) -> new_esEs19(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs11(xuu47002, xuu48002, cca, ccb, ccc) new_compare27(Left(xuu4700), Left(xuu4800), False, daf, dag) -> new_compare112(xuu4700, xuu4800, new_ltEs18(xuu4700, xuu4800, daf), daf, dag) new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_ltEs21(xuu47001, xuu48001, app(app(ty_@2, eab), eac)) -> new_ltEs7(xuu47001, xuu48001, eab, eac) new_fsEs(xuu190) -> new_not(new_esEs8(xuu190, GT)) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, cdh)) -> new_esEs17(xuu40000, xuu3000, cdh) new_addToFM_C0(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C23(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, h), h, ba), LT), h, ba, bb) new_lt15(xuu47000, xuu48000, dhh) -> new_esEs8(new_compare(xuu47000, xuu48000, dhh), LT) new_esEs31(xuu4000, xuu300, app(ty_Ratio, fa)) -> new_esEs17(xuu4000, xuu300, fa) new_esEs29(xuu19, xuu14, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs6(xuu19, xuu14, deb, dec, ded) new_esEs24(xuu47001, xuu48001, app(app(ty_@2, cab), cac)) -> new_esEs4(xuu47001, xuu48001, cab, cac) new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) new_ltEs13(True, True) -> True new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_lt13(xuu47001, xuu48001, app(app(ty_@2, cab), cac)) -> new_lt12(xuu47001, xuu48001, cab, cac) new_esEs8(EQ, EQ) -> True new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_@2, chc), chd)) -> new_compare13(xuu47000, xuu48000, chc, chd) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_mkBranch(xuu259, xuu260, xuu261, xuu262, xuu263, fg, fh) -> Branch(xuu260, xuu261, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu262, fg, fh)), new_sizeFM(xuu263, fg, fh)), xuu262, xuu263) new_esEs5(Right(xuu40000), Right(xuu3000), db, app(app(ty_@2, dhc), dhd)) -> new_esEs4(xuu40000, xuu3000, dhc, dhd) new_primCompAux0(xuu220, LT) -> LT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_@0) -> new_lt19(xuu47001, xuu48001) new_esEs12(xuu40001, xuu3001, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40001, xuu3001, bbe, bbf) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], dgc), dc) -> new_esEs16(xuu40000, xuu3000, dgc) new_not(True) -> False new_compare9(xuu47000, xuu48000, app(app(app(ty_@3, chh), daa), dab)) -> new_compare6(xuu47000, xuu48000, chh, daa, dab) new_ltEs19(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_ltEs5(xuu4700, xuu4800, hg) -> new_fsEs(new_compare(xuu4700, xuu4800, hg)) new_lt13(xuu47001, xuu48001, ty_Double) -> new_lt11(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Integer) -> new_esEs9(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs6(xuu40000, xuu3000, bdf, bdg, bdh) new_ltEs18(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs18(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Integer) -> new_ltEs12(xuu47000, xuu48000) new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_sizeFM0(xuu34, h, ba, bb) new_gt(xuu124, xuu123) -> new_esEs8(new_compare18(xuu124, xuu123), GT) new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, bef)) -> new_esEs17(xuu40000, xuu3000, bef) new_esEs24(xuu47001, xuu48001, ty_Float) -> new_esEs14(xuu47001, xuu48001) new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Right(xuu300), xuu31, xuu42, xuu3433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_ltEs6(LT, GT) -> True new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Double, cec) -> new_ltEs9(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, dc) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu47000, xuu48000, False) -> new_compare113(xuu47000, xuu48000, new_ltEs13(xuu47000, xuu48000)) new_mkBalBranch6MkBalBranch30(xuu300, xuu31, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu34, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, xuu424, xuu34, new_lt7(new_sizeFM0(xuu424, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu423, h, ba, bb))), h, ba, bb) new_mkBalBranch(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, new_esEs8(new_primCmpInt0(xuu50, xuu300, xuu31, xuu34, h, ba, bb), LT), h, ba, bb) new_esEs13(xuu40002, xuu3002, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu40002, xuu3002, bcg, bch) new_esEs32(xuu36, xuu31, app(ty_[], hc)) -> new_esEs16(xuu36, xuu31, hc) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, cfa), cfb), cfc), cec) -> new_ltEs11(xuu47000, xuu48000, cfa, cfb, cfc) new_compare25(xuu47000, xuu48000, False, fc, fd, ff) -> new_compare111(xuu47000, xuu48000, new_ltEs11(xuu47000, xuu48000, fc, fd, ff), fc, fd, ff) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs12(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_ltEs19(xuu4700, xuu4800, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs11(xuu4700, xuu4800, dca, dcb, dcc) new_lt14(xuu47000, xuu48000, app(app(ty_@2, bgh), bha)) -> new_lt12(xuu47000, xuu48000, bgh, bha) new_lt14(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_ltEs20(xuu47002, xuu48002, app(ty_Ratio, cbf)) -> new_ltEs8(xuu47002, xuu48002, cbf) new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs15(xuu36, xuu31) new_lt20(xuu47000, xuu48000, app(app(ty_@2, bgb), bgc)) -> new_lt12(xuu47000, xuu48000, bgb, bgc) new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt11(xuu47000, xuu48000) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) new_primMinusNat0(Succ(xuu50200), Zero) -> Pos(Succ(xuu50200)) new_lt8(xuu47000, xuu48000, cce, ccf) -> new_esEs8(new_compare16(xuu47000, xuu48000, cce, ccf), LT) new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt9(xuu47000, xuu48000) -> new_esEs8(new_compare12(xuu47000, xuu48000), LT) new_ltEs18(xuu4700, xuu4800, app(app(app(ty_@3, bgd), bge), bgf)) -> new_ltEs11(xuu4700, xuu4800, bgd, bge, bgf) new_ltEs20(xuu47002, xuu48002, ty_Bool) -> new_ltEs13(xuu47002, xuu48002) new_ltEs18(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) new_lt14(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT new_esEs28(xuu47000, xuu48000, ty_Int) -> new_esEs10(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_@0) -> new_lt19(xuu47000, xuu48000) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_@0, cec) -> new_ltEs16(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_compare13(xuu47000, xuu48000, bgb, bgc) -> new_compare29(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, bgb, bgc), bgb, bgc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, app(app(ty_Either, chf), chg)) -> new_compare16(xuu47000, xuu48000, chf, chg) new_lt16(xuu47000, xuu48000, ccg) -> new_esEs8(new_compare14(xuu47000, xuu48000, ccg), LT) new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt4(xuu47000, xuu48000) new_mkBalBranch6MkBalBranch30(xuu300, xuu31, EmptyFM, xuu34, True, h, ba, bb) -> error([]) new_esEs28(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(app(ty_Either, cce), ccf)) -> new_lt8(xuu47000, xuu48000, cce, ccf) new_sizeFM0(EmptyFM, h, ba, bb) -> Pos(Zero) new_ltEs19(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_lt19(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu50, xuu34, new_gt(new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu300, xuu31, xuu50, xuu34, h, ba, bb))), h, ba, bb) new_primPlusNat1(Succ(xuu50200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat1(xuu50200, xuu13100))) new_ltEs20(xuu47002, xuu48002, ty_Integer) -> new_ltEs12(xuu47002, xuu48002) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu4000, xuu300, ea, eb, ec) new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, ddh, dea, dce) -> new_mkBalBranch(xuu14, xuu15, xuu17, new_addToFM_C0(xuu18, Left(xuu19), xuu20, ddh, dea, dce), ddh, dea, dce) new_compare9(xuu47000, xuu48000, ty_Integer) -> new_compare7(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, app(ty_[], dhh)) -> new_lt15(xuu47000, xuu48000, dhh) new_compare27(Right(xuu4700), Left(xuu4800), False, daf, dag) -> GT new_addToFM_C25(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch(xuu300, xuu31, new_addToFM_C0(xuu33, Right(xuu4000), xuu401, h, ba, bb), xuu34, h, ba, bb) new_sizeFM(EmptyFM, fg, fh) -> Pos(Zero) new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch30(xuu300, xuu31, xuu42, xuu34, new_gt(new_mkBalBranch6Size_l(xuu300, xuu31, xuu42, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb))), h, ba, bb) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_compare9(xuu47000, xuu48000, ty_Ordering) -> new_compare12(xuu47000, xuu48000) new_esEs5(Right(xuu40000), Right(xuu3000), db, app(ty_Maybe, dhg)) -> new_esEs7(xuu40000, xuu3000, dhg) new_sr(Integer(xuu470000), Integer(xuu480010)) -> Integer(new_primMulInt(xuu470000, xuu480010)) new_esEs28(xuu47000, xuu48000, app(ty_[], dhh)) -> new_esEs16(xuu47000, xuu48000, dhh) new_lt13(xuu47001, xuu48001, ty_Integer) -> new_lt6(xuu47001, xuu48001) new_pePe(False, xuu206) -> xuu206 new_esEs7(Nothing, Just(xuu3000), dh) -> False new_esEs7(Just(xuu40000), Nothing, dh) -> False new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu47002, xuu48002, ty_Double) -> new_ltEs9(xuu47002, xuu48002) new_lt14(xuu47000, xuu48000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_lt5(xuu47000, xuu48000, bhe, bhf, bhg) new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu42, xuu34, new_gt(new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu300, xuu31, xuu42, xuu34, h, ba, bb))), h, ba, bb) new_compare210(xuu47000, xuu48000, True, hf) -> EQ new_esEs20(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare114(xuu47000, xuu48000, True, bgb, bgc) -> LT new_compare112(xuu180, xuu181, True, dad, dae) -> LT new_primMinusNat0(Succ(xuu50200), Succ(xuu13100)) -> new_primMinusNat0(xuu50200, xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dda), ddb)) -> new_esEs5(xuu40000, xuu3000, dda, ddb) new_lt20(xuu47000, xuu48000, app(ty_Ratio, ccg)) -> new_lt16(xuu47000, xuu48000, ccg) new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu50, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt7(new_sizeFM0(xuu343, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba, bb))), h, ba, bb) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Bool) -> new_ltEs13(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs18(xuu36, xuu31) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Ordering, cec) -> new_ltEs6(xuu47000, xuu48000) new_ltEs6(LT, LT) -> True new_compare7(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu187, xuu188, False, cgh, cha) -> GT new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dga), dgb), dc) -> new_esEs4(xuu40000, xuu3000, dga, dgb) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bec), bed)) -> new_esEs4(xuu40000, xuu3000, bec, bed) new_esEs32(xuu36, xuu31, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(xuu36, xuu31, gd, ge, gf) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_lt13(xuu47001, xuu48001, ty_Char) -> new_lt17(xuu47001, xuu48001) new_esEs7(Nothing, Nothing, dh) -> True new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_lt17(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) new_compare9(xuu47000, xuu48000, ty_Bool) -> new_compare17(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, cde), cdf)) -> new_esEs4(xuu40000, xuu3000, cde, cdf) new_compare26(@0, @0) -> EQ new_ltEs15(Nothing, Nothing, bc) -> True new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_mkBalBranch0(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, new_esEs8(new_primCmpInt1(xuu42, xuu300, xuu31, xuu34, h, ba, bb), LT), h, ba, bb) new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_ltEs18(xuu4700, xuu4800, ty_Bool) -> new_ltEs13(xuu4700, xuu4800) new_esEs13(xuu40002, xuu3002, app(app(ty_@2, bda), bdb)) -> new_esEs4(xuu40002, xuu3002, bda, bdb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_ltEs15(Just(xuu47000), Nothing, bc) -> False new_esEs24(xuu47001, xuu48001, app(app(ty_Either, cae), caf)) -> new_esEs5(xuu47001, xuu48001, cae, caf) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare25(xuu47000, xuu48000, True, fc, fd, ff) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs28(xuu47000, xuu48000, ty_Bool) -> new_esEs18(xuu47000, xuu48000) new_emptyFM(h, ba, bb) -> EmptyFM new_compare114(xuu47000, xuu48000, False, bgb, bgc) -> GT new_ltEs20(xuu47002, xuu48002, ty_@0) -> new_ltEs16(xuu47002, xuu48002) new_ltEs10(xuu4700, xuu4800) -> new_fsEs(new_compare8(xuu4700, xuu4800)) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Float, cec) -> new_ltEs17(xuu47000, xuu48000) new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu50, EmptyFM, True, h, ba, bb) -> error([]) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, cea)) -> new_esEs7(xuu40000, xuu3000, cea) new_lt13(xuu47001, xuu48001, ty_Int) -> new_lt7(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, app(app(ty_Either, gg), gh)) -> new_esEs5(xuu36, xuu31, gg, gh) new_addToFM_C25(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> new_addToFM_C13(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, h, ba), GT), h, ba, bb) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_ltEs18(xuu4700, xuu4800, ty_Integer) -> new_ltEs12(xuu4700, xuu4800) new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs6(xuu47001, xuu48001, cag, cah, cba) new_esEs11(xuu40000, xuu3000, app(ty_Ratio, bah)) -> new_esEs17(xuu40000, xuu3000, bah) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_ltEs21(xuu47001, xuu48001, app(ty_Maybe, ebb)) -> new_ltEs15(xuu47001, xuu48001, ebb) new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare15(xuu47000, xuu48000), LT) new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_esEs24(xuu47001, xuu48001, ty_Integer) -> new_esEs9(xuu47001, xuu48001) new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> Branch(Left(xuu4000), new_addListToFM0(xuu31, xuu401, bb), xuu32, xuu33, xuu34) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(xuu40000, xuu3000, dcf, dcg, dch) new_ltEs6(LT, EQ) -> True new_compare9(xuu47000, xuu48000, app(ty_[], chb)) -> new_compare(xuu47000, xuu48000, chb) new_primPlusInt(Pos(xuu5020), Pos(xuu1310)) -> Pos(new_primPlusNat1(xuu5020, xuu1310)) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, dc) -> new_esEs9(xuu40000, xuu3000) new_esEs28(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bga)) -> new_esEs7(xuu40001, xuu3001, bga) new_esEs13(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs20(xuu4000, xuu300) new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bhh)) -> new_esEs7(xuu47000, xuu48000, bhh) new_primCmpInt1(EmptyFM, xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu300, xuu31, EmptyFM, xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_lt14(xuu47000, xuu48000, app(ty_Maybe, bhh)) -> new_lt18(xuu47000, xuu48000, bhh) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, dfg), dfh), dc) -> new_esEs5(xuu40000, xuu3000, dfg, dfh) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dd, de) -> new_asAs(new_esEs21(xuu40000, xuu3000, dd), new_esEs22(xuu40001, xuu3001, de)) new_primCmpNat0(Zero, xuu4700) -> LT new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs10(xuu36, xuu31) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bea), beb)) -> new_esEs5(xuu40000, xuu3000, bea, beb) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs18(xuu4700, xuu4800, app(ty_Maybe, bc)) -> new_ltEs15(xuu4700, xuu4800, bc) new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(xuu300, xuu31, xuu50, xuu34, new_gt(new_mkBalBranch6Size_l0(xuu300, xuu31, xuu50, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb))), h, ba, bb) new_esEs11(xuu40000, xuu3000, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu40000, xuu3000, bae, baf) new_compare27(Right(xuu4700), Right(xuu4800), False, daf, dag) -> new_compare11(xuu4700, xuu4800, new_ltEs19(xuu4700, xuu4800, dag), daf, dag) new_esEs8(LT, LT) -> True new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), df) -> new_asAs(new_esEs25(xuu40000, xuu3000, df), new_esEs16(xuu40001, xuu3001, df)) new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, EmptyFM, xuu34, False, h, ba, bb) -> error([]) new_primCmpInt0(EmptyFM, xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu300, xuu31, EmptyFM, xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs16(xuu4700, xuu4800) -> new_fsEs(new_compare26(xuu4700, xuu4800)) new_esEs13(xuu40002, xuu3002, ty_Integer) -> new_esEs9(xuu40002, xuu3002) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs6(xuu40001, xuu3001, beh, bfa, bfb) new_esEs23(xuu47000, xuu48000, app(ty_Ratio, bhb)) -> new_esEs17(xuu47000, xuu48000, bhb) new_primPlusNat1(Succ(xuu50200), Zero) -> Succ(xuu50200) new_primPlusNat1(Zero, Succ(xuu13100)) -> Succ(xuu13100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu40000, xuu3000, ddc, ddd) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) new_esEs12(xuu40001, xuu3001, app(app(ty_@2, bbg), bbh)) -> new_esEs4(xuu40001, xuu3001, bbg, bbh) new_ltEs19(xuu4700, xuu4800, ty_Double) -> new_ltEs9(xuu4700, xuu4800) new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, xuu424, xuu34, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu420, xuu421, xuu423, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Right(xuu300), xuu31, xuu424, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs13(xuu40002, xuu3002, app(ty_Ratio, bdd)) -> new_esEs17(xuu40002, xuu3002, bdd) new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, ddh, dea, dce) -> Branch(Left(xuu19), new_addListToFM0(xuu15, xuu20, dce), xuu16, xuu17, xuu18) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs14(xuu4000, xuu300) new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs18(xuu19, xuu14) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_Maybe, cbb)) -> new_esEs7(xuu47001, xuu48001, cbb) new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_sizeFM0(xuu34, h, ba, bb) new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare15(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs20(xuu19, xuu14) new_esEs24(xuu47001, xuu48001, app(ty_Ratio, cad)) -> new_esEs17(xuu47001, xuu48001, cad) new_ltEs20(xuu47002, xuu48002, app(app(ty_@2, cbd), cbe)) -> new_ltEs7(xuu47002, xuu48002, cbd, cbe) new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs6(xuu47000, xuu48000, bhe, bhf, bhg) new_esEs16([], [], df) -> True new_esEs12(xuu40001, xuu3001, app(ty_Ratio, bcb)) -> new_esEs17(xuu40001, xuu3001, bcb) new_mkBalBranch6MkBalBranch3(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Left(xuu300), xuu31, xuu50, xuu34, app(app(ty_Either, h), ba), bb) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs19(xuu36, xuu31) new_addListToFM0(xuu15, xuu20, dce) -> xuu20 new_lt14(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_compare([], :(xuu48000, xuu48001), hg) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu40000, xuu3000, bac, bad) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs14(xuu36, xuu31) new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Right(xuu300), xuu31, xuu42, xuu343, app(app(ty_Either, h), ba), bb), xuu344, app(app(ty_Either, h), ba), bb) new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs15(xuu19, xuu14) new_esEs12(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_primCmpInt1(Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu422, new_mkBalBranch6Size_r0(xuu300, xuu31, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs15(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(app(ty_@2, dbd), dbe)) -> new_ltEs7(xuu4700, xuu4800, dbd, dbe) new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_ltEs19(xuu4700, xuu4800, app(ty_Maybe, dcd)) -> new_ltEs15(xuu4700, xuu4800, dcd) new_esEs12(xuu40001, xuu3001, app(ty_Maybe, bcc)) -> new_esEs7(xuu40001, xuu3001, bcc) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(ty_Ratio, cga)) -> new_ltEs8(xuu47000, xuu48000, cga) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_@2, be), bf)) -> new_ltEs7(xuu47000, xuu48000, be, bf) new_compare210(xuu47000, xuu48000, False, hf) -> new_compare110(xuu47000, xuu48000, new_ltEs15(xuu47000, xuu48000, hf), hf) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfc), bfd)) -> new_esEs5(xuu40001, xuu3001, bfc, bfd) new_primCmpNat2(xuu4700, Zero) -> GT new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, ddf)) -> new_esEs17(xuu40000, xuu3000, ddf) new_compare16(xuu47000, xuu48000, cce, ccf) -> new_compare27(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, cce, ccf), cce, ccf) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Maybe, ce)) -> new_ltEs15(xuu47000, xuu48000, ce) new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs6(xuu40000, xuu3000, hh, baa, bab) new_esEs23(xuu47000, xuu48000, app(app(ty_@2, bgh), bha)) -> new_esEs4(xuu47000, xuu48000, bgh, bha) new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Int, cec) -> new_ltEs14(xuu47000, xuu48000) new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(ty_Maybe, cgg)) -> new_ltEs15(xuu47000, xuu48000, cgg) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_ltEs21(xuu47001, xuu48001, ty_Double) -> new_ltEs9(xuu47001, xuu48001) new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt17(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_compare8(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_esEs11(xuu40000, xuu3000, app(ty_Maybe, bba)) -> new_esEs7(xuu40000, xuu3000, bba) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba, bb) -> error([]) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_compare15(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_lt13(xuu47001, xuu48001, app(ty_[], caa)) -> new_lt15(xuu47001, xuu48001, caa) new_esEs5(Right(xuu40000), Right(xuu3000), db, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs6(xuu40000, xuu3000, dgf, dgg, dgh) new_compare28(xuu47000, xuu48000, True) -> EQ new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfe), bff)) -> new_esEs4(xuu40001, xuu3001, bfe, bff) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(app(ty_Either, cgb), cgc)) -> new_ltEs4(xuu47000, xuu48000, cgb, cgc) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, dgd), dc) -> new_esEs17(xuu40000, xuu3000, dgd) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_[], ceb), cec) -> new_ltEs5(xuu47000, xuu48000, ceb) new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Maybe, cfd), cec) -> new_ltEs15(xuu47000, xuu48000, cfd) new_ltEs6(GT, EQ) -> False new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, ddh, dea, dce) -> new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, ddh), ddh, dea), GT), ddh, dea, dce) new_primCmpNat1(Succ(xuu47000), Zero) -> GT new_esEs5(Right(xuu40000), Right(xuu3000), db, app(ty_Ratio, dhf)) -> new_esEs17(xuu40000, xuu3000, dhf) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_compare9(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) new_primPlusInt(Neg(xuu5020), Neg(xuu1310)) -> Neg(new_primPlusNat1(xuu5020, xuu1310)) new_compare111(xuu47000, xuu48000, False, fc, fd, ff) -> GT new_lt13(xuu47001, xuu48001, app(app(app(ty_@3, cag), cah), cba)) -> new_lt5(xuu47001, xuu48001, cag, cah, cba) new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) new_primCompAux1(xuu47000, xuu48000, xuu207, hg) -> new_primCompAux0(xuu207, new_compare9(xuu47000, xuu48000, hg)) new_ltEs20(xuu47002, xuu48002, app(app(ty_Either, cbg), cbh)) -> new_ltEs4(xuu47002, xuu48002, cbg, cbh) new_esEs12(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(ty_[], cff)) -> new_ltEs5(xuu47000, xuu48000, cff) new_compare19(xuu47000, xuu48000, hf) -> new_compare210(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, hf), hf) new_ltEs21(xuu47001, xuu48001, ty_@0) -> new_ltEs16(xuu47001, xuu48001) new_ltEs18(xuu4700, xuu4800, app(app(ty_@2, dah), dba)) -> new_ltEs7(xuu4700, xuu4800, dah, dba) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs18(xuu4000, xuu300) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_asAs(True, xuu175) -> xuu175 new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), dg) -> new_asAs(new_esEs26(xuu40000, xuu3000, dg), new_esEs27(xuu40001, xuu3001, dg)) new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, Branch(xuu5040, xuu5041, xuu5042, xuu5043, xuu5044), xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu5040, xuu5041, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu500, xuu501, xuu503, xuu5043, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Left(xuu300), xuu31, xuu5044, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_compare113(xuu47000, xuu48000, True) -> LT new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba, bb) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs6(xuu40001, xuu3001, bbb, bbc, bbd) new_lt13(xuu47001, xuu48001, app(app(ty_Either, cae), caf)) -> new_lt8(xuu47001, xuu48001, cae, caf) new_compare14(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare7(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt14(xuu47000, xuu48000, ty_Integer) -> new_lt6(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, ty_Bool) -> new_lt10(xuu47000, xuu48000) new_esEs29(xuu19, xuu14, app(ty_[], dfa)) -> new_esEs16(xuu19, xuu14, dfa) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Double) -> new_ltEs9(xuu47000, xuu48000) new_esEs18(False, False) -> True new_primPlusInt(Pos(xuu5020), Neg(xuu1310)) -> new_primMinusNat0(xuu5020, xuu1310) new_primPlusInt(Neg(xuu5020), Pos(xuu1310)) -> new_primMinusNat0(xuu1310, xuu5020) new_addToFM_C0(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C26(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, ba), h, ba), LT), h, ba, bb) new_addToFM_C26(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, ga, gb, gc) -> new_mkBalBranch0(xuu31, xuu32, new_addToFM_C0(xuu34, Right(xuu36), xuu37, ga, gb, gc), xuu35, ga, gb, gc) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs19(xuu4700, xuu4800, ty_Ordering) -> new_ltEs6(xuu4700, xuu4800) new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare15(xuu4700, xuu4800)) new_addToFM_C0(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C25(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, h, ba), LT), h, ba, bb) new_esEs29(xuu19, xuu14, app(app(ty_Either, dee), def)) -> new_esEs5(xuu19, xuu14, dee, def) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_ltEs18(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_lt12(xuu47000, xuu48000, bgb, bgc) -> new_esEs8(new_compare13(xuu47000, xuu48000, bgb, bgc), LT) new_primCmpInt0(Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu502, new_mkBalBranch6Size_r(xuu300, xuu31, Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bfh)) -> new_esEs17(xuu40001, xuu3001, bfh) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_@0) -> new_compare26(xuu47000, xuu48000) new_compare10(xuu47000, xuu48000, False) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(ty_[], df)) -> new_esEs16(xuu4000, xuu300, df) new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, app(ty_[], caa)) -> new_esEs16(xuu47001, xuu48001, caa) new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, ddh, dea, dce) -> new_mkBalBranch(xuu14, xuu15, new_addToFM_C0(xuu17, Left(xuu19), xuu20, ddh, dea, dce), xuu18, ddh, dea, dce) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_Ratio, bg)) -> new_ltEs8(xuu47000, xuu48000, bg) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_@0) -> new_ltEs16(xuu47000, xuu48000) new_ltEs17(xuu4700, xuu4800) -> new_fsEs(new_compare5(xuu4700, xuu4800)) new_lt13(xuu47001, xuu48001, app(ty_Maybe, cbb)) -> new_lt18(xuu47001, xuu48001, cbb) new_ltEs21(xuu47001, xuu48001, app(ty_Ratio, ead)) -> new_ltEs8(xuu47001, xuu48001, ead) new_esEs31(xuu4000, xuu300, app(ty_Maybe, fb)) -> new_esEs7(xuu4000, xuu300, fb) new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, ga, gb, gc) -> new_mkBalBranch0(xuu31, xuu32, xuu34, new_addToFM_C0(xuu35, Right(xuu36), xuu37, ga, gb, gc), ga, gb, gc) new_ltEs6(EQ, LT) -> False new_compare12(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) new_ltEs18(xuu4700, xuu4800, app(app(ty_Either, cfe), cec)) -> new_ltEs4(xuu4700, xuu4800, cfe, cec) new_ltEs13(False, True) -> True new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs9(xuu19, xuu14) new_ltEs13(False, False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), db, app(app(ty_Either, dha), dhb)) -> new_esEs5(xuu40000, xuu3000, dha, dhb) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs14(xuu40001, xuu3001) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cf, cg, da) -> new_asAs(new_esEs11(xuu40000, xuu3000, cf), new_asAs(new_esEs12(xuu40001, xuu3001, cg), new_esEs13(xuu40002, xuu3002, da))) new_esEs9(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba, bb) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba, bb) new_esEs12(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) new_lt14(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_ltEs19(xuu4700, xuu4800, ty_@0) -> new_ltEs16(xuu4700, xuu4800) new_esEs13(xuu40002, xuu3002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs6(xuu40002, xuu3002, bcd, bce, bcf) new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCompAux0(xuu220, EQ) -> xuu220 new_lt14(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Double) -> new_compare15(xuu47000, xuu48000) new_esEs15(@0, @0) -> True new_compare9(xuu47000, xuu48000, ty_Char) -> new_compare8(xuu47000, xuu48000) new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, Branch(xuu4240, xuu4241, xuu4242, xuu4243, xuu4244), xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4240, xuu4241, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu420, xuu421, xuu423, xuu4243, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Right(xuu300), xuu31, xuu4244, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs20(xuu36, xuu31) new_lt13(xuu47001, xuu48001, ty_Ordering) -> new_lt9(xuu47001, xuu48001) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_mkBalBranch6Size_l0(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_sizeFM0(xuu50, h, ba, bb) new_compare([], [], hg) -> EQ new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beg)) -> new_esEs7(xuu40000, xuu3000, beg) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs32(xuu36, xuu31, app(app(ty_@2, ha), hb)) -> new_esEs4(xuu36, xuu31, ha, hb) new_compare24(xuu47000, xuu48000, True) -> EQ new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_Either, ceg), ceh), cec) -> new_ltEs4(xuu47000, xuu48000, ceg, ceh) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, cdc), cdd)) -> new_esEs5(xuu40000, xuu3000, cdc, cdd) new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs19(xuu47000, xuu48000) new_ltEs7(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), dah, dba) -> new_pePe(new_lt20(xuu47000, xuu48000, dah), new_asAs(new_esEs28(xuu47000, xuu48000, dah), new_ltEs21(xuu47001, xuu48001, dba))) new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt7(xuu47000, xuu48000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_esEs31(xuu4000, xuu300, app(ty_[], eh)) -> new_esEs16(xuu4000, xuu300, eh) new_lt10(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Left(xuu300), xuu31, xuu50, xuu3433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs32(xuu36, xuu31, app(ty_Maybe, he)) -> new_esEs7(xuu36, xuu31, he) new_esEs31(xuu4000, xuu300, app(app(ty_Either, ed), ee)) -> new_esEs5(xuu4000, xuu300, ed, ee) new_esEs25(xuu40000, xuu3000, app(ty_[], cdg)) -> new_esEs16(xuu40000, xuu3000, cdg) new_lt14(xuu47000, xuu48000, app(ty_[], bgg)) -> new_lt15(xuu47000, xuu48000, bgg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu47000, xuu48000, ty_Float) -> new_esEs14(xuu47000, xuu48000) new_lt14(xuu47000, xuu48000, app(app(ty_Either, bhc), bhd)) -> new_lt8(xuu47000, xuu48000, bhc, bhd) new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(ty_Either, bh), ca)) -> new_ltEs4(xuu47000, xuu48000, bh, ca) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dfd), dfe), dff), dc) -> new_esEs6(xuu40000, xuu3000, dfd, dfe, dff) new_compare24(xuu47000, xuu48000, False) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000)) new_ltEs21(xuu47001, xuu48001, app(app(ty_Either, eae), eaf)) -> new_ltEs4(xuu47001, xuu48001, eae, eaf) new_sizeFM(Branch(xuu2630, xuu2631, xuu2632, xuu2633, xuu2634), fg, fh) -> xuu2632 new_compare112(xuu180, xuu181, False, dad, dae) -> GT new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, dge), dc) -> new_esEs7(xuu40000, xuu3000, dge) new_ltEs19(xuu4700, xuu4800, app(ty_Ratio, dbf)) -> new_ltEs8(xuu4700, xuu4800, dbf) new_esEs31(xuu4000, xuu300, app(app(ty_@2, ef), eg)) -> new_esEs4(xuu4000, xuu300, ef, eg) new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs15(xuu47000, xuu48000) new_addToFM_C0(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, h, ba), LT), h, ba, bb) new_esEs13(xuu40002, xuu3002, app(ty_[], bdc)) -> new_esEs16(xuu40002, xuu3002, bdc) new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs20(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs18(xuu40000, xuu3000) new_not(False) -> True new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch0(xuu300, xuu31, new_addToFM_C0(xuu33, Left(xuu4000), xuu401, h, ba, bb), xuu34, h, ba, bb) new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), db, ty_Integer) -> new_esEs9(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_@0) -> new_esEs15(xuu40002, xuu3002) new_lt7(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, EmptyFM, xuu34, False, h, ba, bb) -> error([]) new_ltEs15(Nothing, Just(xuu48000), bc) -> True new_lt18(xuu47000, xuu48000, hf) -> new_esEs8(new_compare19(xuu47000, xuu48000, hf), LT) new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt9(xuu47000, xuu48000) new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs9(xuu36, xuu31) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(xuu36, xuu31, app(ty_Ratio, hd)) -> new_esEs17(xuu36, xuu31, hd) new_ltEs15(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, cb), cc), cd)) -> new_ltEs11(xuu47000, xuu48000, cb, cc, cd) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs9(xuu40001, xuu3001) new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) new_esEs5(Left(xuu40000), Right(xuu3000), db, dc) -> False new_esEs5(Right(xuu40000), Left(xuu3000), db, dc) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], dde)) -> new_esEs16(xuu40000, xuu3000, dde) new_compare27(xuu470, xuu480, True, daf, dag) -> EQ new_esEs13(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) new_ltEs4(Left(xuu47000), Right(xuu48000), cfe, cec) -> True new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, dc) -> new_esEs10(xuu40000, xuu3000) new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu4000, xuu300, cf, cg, da) new_esEs13(xuu40002, xuu3002, ty_Double) -> new_esEs20(xuu40002, xuu3002) new_ltEs18(xuu4700, xuu4800, app(ty_[], hg)) -> new_ltEs5(xuu4700, xuu4800, hg) new_ltEs21(xuu47001, xuu48001, app(ty_[], eaa)) -> new_ltEs5(xuu47001, xuu48001, eaa) new_esEs30(xuu4000, xuu300, app(app(ty_Either, db), dc)) -> new_esEs5(xuu4000, xuu300, db, dc) new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Bool, cec) -> new_ltEs13(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Ordering) -> new_ltEs6(xuu47000, xuu48000) new_ltEs21(xuu47001, xuu48001, ty_Bool) -> new_ltEs13(xuu47001, xuu48001) new_primPlusNat0(Succ(xuu1400), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1400, xuu300000))) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs10(xuu47000, xuu48000) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_compare11(xuu187, xuu188, True, cgh, cha) -> LT new_lt5(xuu47000, xuu48000, fc, fd, ff) -> new_esEs8(new_compare6(xuu47000, xuu48000, fc, fd, ff), LT) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs14(xuu40000, xuu3000) new_lt14(xuu47000, xuu48000, app(ty_Ratio, bhb)) -> new_lt16(xuu47000, xuu48000, bhb) new_esEs12(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_primCmpNat1(Zero, Succ(xuu48000)) -> LT new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_addToFM_C13(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> Branch(Right(xuu4000), new_addListToFM0(xuu31, xuu401, bb), xuu32, xuu33, xuu34) new_ltEs18(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_ltEs19(xuu4700, xuu4800, ty_Char) -> new_ltEs10(xuu4700, xuu4800) new_esEs24(xuu47001, xuu48001, ty_Int) -> new_esEs10(xuu47001, xuu48001) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_compare9(xuu47000, xuu48000, app(ty_Maybe, dac)) -> new_compare19(xuu47000, xuu48000, dac) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(xuu47000, xuu48000, True) -> LT new_compare29(xuu47000, xuu48000, False, bgb, bgc) -> new_compare114(xuu47000, xuu48000, new_ltEs7(xuu47000, xuu48000, bgb, bgc), bgb, bgc) new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_esEs13(xuu40002, xuu3002, ty_Float) -> new_esEs14(xuu40002, xuu3002) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(xuu4700, xuu4800, dbb) -> new_fsEs(new_compare14(xuu4700, xuu4800, dbb)) new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs20(xuu40000, xuu3000) new_lt13(xuu47001, xuu48001, ty_Float) -> new_lt4(xuu47001, xuu48001) new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs9(xuu4000, xuu300) new_ltEs13(True, False) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), ty_Integer, cec) -> new_ltEs12(xuu47000, xuu48000) new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, h, ba), GT), h, ba, bb) new_esEs21(xuu40000, xuu3000, app(ty_[], bee)) -> new_esEs16(xuu40000, xuu3000, bee) new_ltEs21(xuu47001, xuu48001, ty_Float) -> new_ltEs17(xuu47001, xuu48001) new_esEs28(xuu47000, xuu48000, app(ty_Ratio, ccg)) -> new_esEs17(xuu47000, xuu48000, ccg) new_mkBalBranch6MkBalBranch3(xuu300, xuu31, Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu34, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, xuu504, xuu34, new_lt7(new_sizeFM0(xuu504, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu503, h, ba, bb))), h, ba, bb) new_esEs30(xuu4000, xuu300, app(ty_Maybe, dh)) -> new_esEs7(xuu4000, xuu300, dh) new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_lt4(xuu47000, xuu48000) -> new_esEs8(new_compare5(xuu47000, xuu48000), LT) new_lt13(xuu47001, xuu48001, ty_Bool) -> new_lt10(xuu47001, xuu48001) new_ltEs19(xuu4700, xuu4800, app(app(ty_Either, dbg), dbh)) -> new_ltEs4(xuu4700, xuu4800, dbg, dbh) new_mkBalBranch6Size_l(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_sizeFM0(xuu42, h, ba, bb) new_compare17(xuu47000, xuu48000) -> new_compare28(xuu47000, xuu48000, new_esEs18(xuu47000, xuu48000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare6(xuu47000, xuu48000, fc, fd, ff) -> new_compare25(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fc, fd, ff), fc, fd, ff) new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba, bb) -> error([]) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_esEs28(xuu47000, xuu48000, app(app(ty_@2, bgb), bgc)) -> new_esEs4(xuu47000, xuu48000, bgb, bgc) new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu42, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt7(new_sizeFM0(xuu343, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba, bb))), h, ba, bb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs20(xuu40000, xuu3000) new_ltEs4(Left(xuu47000), Left(xuu48000), app(app(ty_@2, ced), cee), cec) -> new_ltEs7(xuu47000, xuu48000, ced, cee) new_sizeFM0(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba, bb) -> xuu342 new_compare29(xuu47000, xuu48000, True, bgb, bgc) -> EQ new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu42, EmptyFM, True, h, ba, bb) -> error([]) new_ltEs21(xuu47001, xuu48001, ty_Int) -> new_ltEs14(xuu47001, xuu48001) new_mkBalBranch6MkBalBranch3(xuu300, xuu31, EmptyFM, xuu34, True, h, ba, bb) -> error([]) new_ltEs15(Just(xuu47000), Just(xuu48000), app(ty_[], bd)) -> new_ltEs5(xuu47000, xuu48000, bd) new_lt20(xuu47000, xuu48000, app(ty_Maybe, hf)) -> new_lt18(xuu47000, xuu48000, hf) new_ltEs20(xuu47002, xuu48002, ty_Ordering) -> new_ltEs6(xuu47002, xuu48002) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primMinusNat0(Zero, Succ(xuu13100)) -> Neg(Succ(xuu13100)) new_esEs28(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) new_compare9(xuu47000, xuu48000, ty_Float) -> new_compare5(xuu47000, xuu48000) new_esEs16(:(xuu40000, xuu40001), [], df) -> False new_esEs16([], :(xuu3000, xuu3001), df) -> False new_ltEs4(Left(xuu47000), Left(xuu48000), app(ty_Ratio, cef), cec) -> new_ltEs8(xuu47000, xuu48000, cef) new_ltEs20(xuu47002, xuu48002, ty_Char) -> new_ltEs10(xuu47002, xuu48002) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) new_esEs23(xuu47000, xuu48000, app(ty_[], bgg)) -> new_esEs16(xuu47000, xuu48000, bgg) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Left(xuu300), xuu31, xuu50, xuu343, app(app(ty_Either, h), ba), bb), xuu344, app(app(ty_Either, h), ba), bb) new_esEs29(xuu19, xuu14, app(app(ty_@2, deg), deh)) -> new_esEs4(xuu19, xuu14, deg, deh) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs11(xuu47000, xuu48000, cgd, cge, cgf) new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, ga, gb, gc) -> Branch(Right(xuu36), new_addListToFM0(xuu32, xuu37, gc), xuu33, xuu34, xuu35) new_esEs24(xuu47001, xuu48001, ty_Bool) -> new_esEs18(xuu47001, xuu48001) new_addToFM_C26(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, ga, gb, gc) -> new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, gb), ga, gb), GT), ga, gb, gc) new_esEs24(xuu47001, xuu48001, ty_@0) -> new_esEs15(xuu47001, xuu48001) new_compare9(xuu47000, xuu48000, app(ty_Ratio, che)) -> new_compare14(xuu47000, xuu48000, che) new_primEqNat0(Zero, Zero) -> True new_esEs28(xuu47000, xuu48000, app(app(ty_Either, cce), ccf)) -> new_esEs5(xuu47000, xuu48000, cce, ccf) new_ltEs11(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), bgd, bge, bgf) -> new_pePe(new_lt14(xuu47000, xuu48000, bgd), new_asAs(new_esEs23(xuu47000, xuu48000, bgd), new_pePe(new_lt13(xuu47001, xuu48001, bge), new_asAs(new_esEs24(xuu47001, xuu48001, bge), new_ltEs20(xuu47002, xuu48002, bgf))))) new_ltEs21(xuu47001, xuu48001, app(app(app(ty_@3, eag), eah), eba)) -> new_ltEs11(xuu47001, xuu48001, eag, eah, eba) new_ltEs21(xuu47001, xuu48001, ty_Ordering) -> new_ltEs6(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, app(ty_[], cbc)) -> new_ltEs5(xuu47002, xuu48002, cbc) new_esEs28(xuu47000, xuu48000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs6(xuu47000, xuu48000, fc, fd, ff) new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_compare110(xuu47000, xuu48000, True, hf) -> LT new_esEs12(xuu40001, xuu3001, ty_@0) -> new_esEs15(xuu40001, xuu3001) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs14(xuu47000, xuu48000) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, dc) -> new_esEs18(xuu40000, xuu3000) new_esEs24(xuu47001, xuu48001, ty_Double) -> new_esEs20(xuu47001, xuu48001) new_esEs29(xuu19, xuu14, app(ty_Ratio, dfb)) -> new_esEs17(xuu19, xuu14, dfb) new_esEs22(xuu40001, xuu3001, app(ty_[], bfg)) -> new_esEs16(xuu40001, xuu3001, bfg) new_asAs(False, xuu175) -> False new_ltEs21(xuu47001, xuu48001, ty_Char) -> new_ltEs10(xuu47001, xuu48001) new_ltEs20(xuu47002, xuu48002, ty_Float) -> new_ltEs17(xuu47002, xuu48002) new_ltEs19(xuu4700, xuu4800, ty_Int) -> new_ltEs14(xuu4700, xuu4800) new_esEs30(xuu4000, xuu300, app(ty_Ratio, dg)) -> new_esEs17(xuu4000, xuu300, dg) new_compare5(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) new_compare5(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) new_ltEs4(Right(xuu47000), Right(xuu48000), cfe, app(app(ty_@2, cfg), cfh)) -> new_ltEs7(xuu47000, xuu48000, cfg, cfh) new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, xuu504, xuu34, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu500, xuu501, xuu503, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Left(xuu300), xuu31, xuu504, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, dc) -> new_esEs15(xuu40000, xuu3000) new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), hg) -> new_primCompAux1(xuu47000, xuu48000, new_compare(xuu47001, xuu48001, hg), hg) new_lt13(xuu47001, xuu48001, app(ty_Ratio, cad)) -> new_lt16(xuu47001, xuu48001, cad) new_esEs29(xuu19, xuu14, app(ty_Maybe, dfc)) -> new_esEs7(xuu19, xuu14, dfc) new_esEs13(xuu40002, xuu3002, ty_Bool) -> new_esEs18(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs4(Right(xuu47000), Left(xuu48000), cfe, cec) -> False new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, fc), fd), ff)) -> new_lt5(xuu47000, xuu48000, fc, fd, ff) new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs15(xuu40000, xuu3000) new_esEs12(xuu40001, xuu3001, ty_Double) -> new_esEs20(xuu40001, xuu3001) new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) new_ltEs15(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs17(xuu47000, xuu48000) new_esEs11(xuu40000, xuu3000, app(ty_[], bag)) -> new_esEs16(xuu40000, xuu3000, bag) new_ltEs6(GT, LT) -> False new_ltEs19(xuu4700, xuu4800, ty_Float) -> new_ltEs17(xuu4700, xuu4800) new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, True, h, ba, bb) -> new_mkBranch(Zero, Right(xuu300), xuu31, xuu42, xuu34, app(app(ty_Either, h), ba), bb) new_ltEs20(xuu47002, xuu48002, ty_Int) -> new_ltEs14(xuu47002, xuu48002) new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, True, h, ba, bb) -> new_mkBranch(Zero, Left(xuu300), xuu31, xuu50, xuu34, app(app(ty_Either, h), ba), bb) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs8(EQ, EQ) new_lt16(x0, x1, x2) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_compare9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt13(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, False, x2, x3) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_lt5(x0, x1, x2, x3, x4) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Float) new_esEs16([], :(x0, x1), x2) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Double) new_ltEs16(x0, x1) new_compare110(x0, x1, True, x2) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, ty_Char) new_primCmpNat1(Zero, Zero) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs6(LT, LT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, x2, x3) new_esEs18(True, True) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_primCompAux1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Integer) new_mkBalBranch6MkBalBranch40(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_compare9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_primMinusNat0(Zero, Zero) new_esEs22(x0, x1, ty_Float) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_primCompAux0(x0, LT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt14(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_pePe(False, x0) new_compare29(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Float) new_compare28(x0, x1, True) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare9(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Float) new_compare10(x0, x1, True) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs12(x0, x1) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5, x6) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_sIZE_RATIO new_esEs25(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt1(EmptyFM, x0, x1, x2, x3, x4, x5) new_compare113(x0, x1, True) new_esEs11(x0, x1, ty_@0) new_ltEs13(False, True) new_compare27(x0, x1, True, x2, x3) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch30(x0, x1, EmptyFM, x2, True, x3, x4, x5) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_esEs31(x0, x1, ty_Double) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_compare([], [], x0) new_compare27(Left(x0), Right(x1), False, x2, x3) new_compare27(Right(x0), Left(x1), False, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_compare24(x0, x1, False) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(Char(x0), Char(x1)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_compare9(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) new_lt20(x0, x1, ty_Int) new_compare27(Left(x0), Left(x1), False, x2, x3) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, x0) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) new_lt20(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) new_esEs25(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt11(x0, x1) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs11(x0, x1, ty_Char) new_sr(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare9(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs23(x0, x1, ty_Float) new_compare9(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_@0) new_lt13(x0, x1, ty_Integer) new_esEs15(@0, @0) new_mkBalBranch6MkBalBranch40(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt10(x0, x1) new_esEs25(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, x2) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_compare(:(x0, x1), [], x2) new_ltEs18(x0, x1, ty_Double) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_ltEs15(Nothing, Nothing, x0) new_sizeFM0(EmptyFM, x0, x1, x2) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_lt14(x0, x1, app(ty_Maybe, x2)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs18(False, True) new_esEs18(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, ty_Int) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt13(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs9(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs22(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Int) new_lt14(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_@0) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs19(Char(x0), Char(x1)) new_esEs8(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare114(x0, x1, True, x2, x3) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs12(x0, x1, ty_Int) new_esEs7(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(x0, Zero) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(LT, LT) new_ltEs6(LT, GT) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs6(GT, LT) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), x1) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3, x4) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt12(x0, x1, x2, x3) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt17(x0, x1) new_esEs24(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare11(x0, x1, False, x2, x3) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt13(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_compare29(x0, x1, True, x2, x3) new_esEs27(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpNat1(Succ(x0), Zero) new_compare110(x0, x1, False, x2) new_ltEs14(x0, x1) new_ltEs15(Nothing, Just(x0), x1) new_compare16(x0, x1, x2, x3) new_asAs(True, x0) new_esEs11(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_esEs29(x0, x1, ty_Int) new_compare210(x0, x1, False, x2) new_ltEs13(True, True) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_esEs16([], [], x0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, app(ty_Ratio, x2)) new_primPlusInt(Neg(x0), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs18(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primPlusNat0(Zero, x0) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, True, x2, x3) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_ltEs15(Just(x0), Nothing, x1) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs20(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, app(ty_[], x2)) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) new_esEs7(Just(x0), Nothing, x1) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_ltEs6(EQ, EQ) new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs22(x0, x1, ty_Ordering) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs32(x0, x1, ty_Integer) new_compare11(x0, x1, True, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMinusNat0(Succ(x0), Zero) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(x0, x1, ty_Ordering) new_compare19(x0, x1, x2) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpNat1(Zero, Succ(x0)) new_compare([], :(x0, x1), x2) new_lt14(x0, x1, ty_Float) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs31(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs7(Nothing, Just(x0), x1) new_not(True) new_lt7(x0, x1) new_mkBalBranch6MkBalBranch30(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) new_esEs11(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(False, False) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare210(x0, x1, True, x2) new_esEs25(x0, x1, ty_Char) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs21(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, GT) new_esEs13(x0, x1, ty_Char) new_esEs16(:(x0, x1), [], x2) new_compare111(x0, x1, True, x2, x3, x4) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs18(False, False) new_esEs13(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_compare7(Integer(x0), Integer(x1)) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs16(:(x0, x1), :(x2, x3), x4) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_compare25(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, False, x2, x3) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs13(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, EQ) new_lt20(x0, x1, app(ty_[], x2)) new_lt9(x0, x1) new_esEs11(x0, x1, ty_Int) new_pePe(True, x0) new_esEs28(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Char) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs13(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_compare13(x0, x1, x2, x3) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Bool) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_compare10(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_compare9(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, ty_Int) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_compare6(x0, x1, x2, x3, x4) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, ty_Char) new_addListToFM0(x0, x1, x2) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) new_compare25(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, ty_Ordering) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_fsEs(x0) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_compare9(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_gt(x0, x1) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt15(x0, x1, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs8(x0, x1, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, True, x4, x5, x6) new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Int) new_sr0(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_compare27(Right(x0), Right(x1), False, x2, x3) new_sizeFM(EmptyFM, x0, x1) new_esEs29(x0, x1, ty_Double) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Zero) new_lt14(x0, x1, ty_Integer) new_compare113(x0, x1, False) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_primCmpNat2(x0, Succ(x1)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_not(False) new_esEs30(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_lt14(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_compare9(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_emptyFM(x0, x1, x2) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_primMinusNat0(Zero, Succ(x0)) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, app(ty_[], x2)) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_lt13(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Double) new_ltEs9(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare24(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(x0, x1, ty_Integer) new_compare17(x0, x1) new_primPlusNat1(Succ(x0), Zero) new_esEs28(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_compare28(x0, x1, False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_@0) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs13(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4, x5) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu3, :(xuu40, xuu41), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba, bb), xuu41, h, ba, bb) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu50200), Succ(xuu13100)) -> new_primMinusNat(xuu50200, xuu13100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) 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(xuu50200), Succ(xuu13100)) -> new_primMinusNat(xuu50200, xuu13100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu50200), Succ(xuu13100)) -> new_primPlusNat(xuu50200, xuu13100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) 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(xuu50200), Succ(xuu13100)) -> new_primPlusNat(xuu50200, xuu13100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (49) YES