/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, 2 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) TransformationProof [EQUIVALENT, 1381 ms] (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 104 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] (33) YES (34) QDP (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] (36) YES (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] (39) YES (40) QDP (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] (42) YES (43) QDP (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] (45) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ 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 -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap 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 _ 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 b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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 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 a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 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; } ---------------------------------------- (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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (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 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 -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord 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 a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx 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 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 (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 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 -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_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"];2790[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 7[label="",style="solid", color="burlywood", weight=3]; 2791[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 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"];2792[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 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"];2793[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 15[label="",style="solid", color="burlywood", weight=3]; 2794[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 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"];2795[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];27 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 28[label="",style="solid", color="burlywood", weight=3]; 28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (xuu4000,xuu4001) xuu401 (compare2 (xuu4000,xuu4001) xuu30 ((xuu4000,xuu4001) == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];2796[label="xuu30/(xuu300,xuu301)",fontsize=10,color="white",style="solid",shape="box"];28 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 29[label="",style="solid", color="burlywood", weight=3]; 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300,xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000,xuu4001) xuu401 (compare2 (xuu4000,xuu4001) (xuu300,xuu301) ((xuu4000,xuu4001) == (xuu300,xuu301)) == LT)",fontsize=16,color="black",shape="box"];29 -> 30[label="",style="solid", color="black", weight=3]; 30 -> 115[label="",style="dashed", color="red", weight=0]; 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300,xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000,xuu4001) xuu401 (compare2 (xuu4000,xuu4001) (xuu300,xuu301) (xuu4000 == xuu300 && xuu4001 == xuu301) == LT)",fontsize=16,color="magenta"];30 -> 116[label="",style="dashed", color="magenta", weight=3]; 30 -> 117[label="",style="dashed", color="magenta", weight=3]; 30 -> 118[label="",style="dashed", color="magenta", weight=3]; 30 -> 119[label="",style="dashed", color="magenta", weight=3]; 30 -> 120[label="",style="dashed", color="magenta", weight=3]; 30 -> 121[label="",style="dashed", color="magenta", weight=3]; 30 -> 122[label="",style="dashed", color="magenta", weight=3]; 30 -> 123[label="",style="dashed", color="magenta", weight=3]; 30 -> 124[label="",style="dashed", color="magenta", weight=3]; 30 -> 125[label="",style="dashed", color="magenta", weight=3]; 116[label="xuu401",fontsize=16,color="green",shape="box"];117 -> 129[label="",style="dashed", color="red", weight=0]; 117[label="compare2 (xuu4000,xuu4001) (xuu300,xuu301) (xuu4000 == xuu300 && xuu4001 == xuu301) == LT",fontsize=16,color="magenta"];117 -> 130[label="",style="dashed", color="magenta", weight=3]; 117 -> 131[label="",style="dashed", color="magenta", weight=3]; 117 -> 132[label="",style="dashed", color="magenta", weight=3]; 117 -> 133[label="",style="dashed", color="magenta", weight=3]; 117 -> 134[label="",style="dashed", color="magenta", weight=3]; 118[label="xuu300",fontsize=16,color="green",shape="box"];119[label="xuu301",fontsize=16,color="green",shape="box"];120[label="xuu32",fontsize=16,color="green",shape="box"];121[label="xuu31",fontsize=16,color="green",shape="box"];122[label="xuu34",fontsize=16,color="green",shape="box"];123[label="xuu33",fontsize=16,color="green",shape="box"];124[label="xuu4000",fontsize=16,color="green",shape="box"];125[label="xuu4001",fontsize=16,color="green",shape="box"];115[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 xuu26",fontsize=16,color="burlywood",shape="triangle"];2797[label="xuu26/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 135[label="",style="solid", color="burlywood", weight=3]; 2798[label="xuu26/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 136[label="",style="solid", color="burlywood", weight=3]; 130[label="xuu4001",fontsize=16,color="green",shape="box"];131[label="xuu300",fontsize=16,color="green",shape="box"];132[label="xuu301",fontsize=16,color="green",shape="box"];133[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];2799[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 137[label="",style="solid", color="blue", weight=3]; 2800[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 138[label="",style="solid", color="blue", weight=3]; 2801[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 139[label="",style="solid", color="blue", weight=3]; 2802[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 140[label="",style="solid", color="blue", weight=3]; 2803[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 141[label="",style="solid", color="blue", weight=3]; 2804[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 142[label="",style="solid", color="blue", weight=3]; 2805[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 143[label="",style="solid", color="blue", weight=3]; 2806[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 144[label="",style="solid", color="blue", weight=3]; 2807[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 145[label="",style="solid", color="blue", weight=3]; 2808[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 146[label="",style="solid", color="blue", weight=3]; 2809[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 147[label="",style="solid", color="blue", weight=3]; 2810[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 148[label="",style="solid", color="blue", weight=3]; 2811[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 149[label="",style="solid", color="blue", weight=3]; 2812[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 150[label="",style="solid", color="blue", weight=3]; 134[label="xuu4000",fontsize=16,color="green",shape="box"];129[label="compare2 (xuu33,xuu34) (xuu35,xuu36) (xuu37 && xuu34 == xuu36) == LT",fontsize=16,color="burlywood",shape="triangle"];2813[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];129 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 151[label="",style="solid", color="burlywood", weight=3]; 2814[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];129 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 152[label="",style="solid", color="burlywood", weight=3]; 135[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 False",fontsize=16,color="black",shape="box"];135 -> 153[label="",style="solid", color="black", weight=3]; 136[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 True",fontsize=16,color="black",shape="box"];136 -> 154[label="",style="solid", color="black", weight=3]; 137[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];137 -> 155[label="",style="solid", color="black", weight=3]; 138[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2815[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];138 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 156[label="",style="solid", color="burlywood", weight=3]; 139[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];139 -> 157[label="",style="solid", color="black", weight=3]; 140[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2816[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];140 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 158[label="",style="solid", color="burlywood", weight=3]; 2817[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];140 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 159[label="",style="solid", color="burlywood", weight=3]; 141[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2818[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];141 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 160[label="",style="solid", color="burlywood", weight=3]; 142[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2819[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];142 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 161[label="",style="solid", color="burlywood", weight=3]; 2820[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];142 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 162[label="",style="solid", color="burlywood", weight=3]; 2821[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];142 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 163[label="",style="solid", color="burlywood", weight=3]; 143[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2822[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];143 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 164[label="",style="solid", color="burlywood", weight=3]; 144[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2823[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];144 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 165[label="",style="solid", color="burlywood", weight=3]; 2824[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];144 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 166[label="",style="solid", color="burlywood", weight=3]; 145[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2825[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];145 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 167[label="",style="solid", color="burlywood", weight=3]; 146[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2826[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];146 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 168[label="",style="solid", color="burlywood", weight=3]; 2827[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];146 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 169[label="",style="solid", color="burlywood", weight=3]; 147[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];147 -> 170[label="",style="solid", color="black", weight=3]; 148[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];148 -> 171[label="",style="solid", color="black", weight=3]; 149[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2828[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];149 -> 2828[label="",style="solid", color="burlywood", weight=9]; 2828 -> 172[label="",style="solid", color="burlywood", weight=3]; 2829[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];149 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 173[label="",style="solid", color="burlywood", weight=3]; 150[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];2830[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];150 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 174[label="",style="solid", color="burlywood", weight=3]; 151[label="compare2 (xuu33,xuu34) (xuu35,xuu36) (False && xuu34 == xuu36) == LT",fontsize=16,color="black",shape="box"];151 -> 175[label="",style="solid", color="black", weight=3]; 152[label="compare2 (xuu33,xuu34) (xuu35,xuu36) (True && xuu34 == xuu36) == LT",fontsize=16,color="black",shape="box"];152 -> 176[label="",style="solid", color="black", weight=3]; 153 -> 219[label="",style="dashed", color="red", weight=0]; 153[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 ((xuu22,xuu23) > (xuu16,xuu17))",fontsize=16,color="magenta"];153 -> 220[label="",style="dashed", color="magenta", weight=3]; 154 -> 178[label="",style="dashed", color="red", weight=0]; 154[label="FiniteMap.mkBalBranch (xuu16,xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22,xuu23) xuu24) xuu21",fontsize=16,color="magenta"];154 -> 179[label="",style="dashed", color="magenta", weight=3]; 155[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];2831[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];155 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 180[label="",style="solid", color="burlywood", weight=3]; 156[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];2832[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];156 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 181[label="",style="solid", color="burlywood", weight=3]; 157[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];2833[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 182[label="",style="solid", color="burlywood", weight=3]; 2834[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 183[label="",style="solid", color="burlywood", weight=3]; 158[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];2835[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2835[label="",style="solid", color="burlywood", weight=9]; 2835 -> 184[label="",style="solid", color="burlywood", weight=3]; 2836[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2836[label="",style="solid", color="burlywood", weight=9]; 2836 -> 185[label="",style="solid", color="burlywood", weight=3]; 159[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];2837[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2837[label="",style="solid", color="burlywood", weight=9]; 2837 -> 186[label="",style="solid", color="burlywood", weight=3]; 2838[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 187[label="",style="solid", color="burlywood", weight=3]; 160[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];2839[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];160 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 188[label="",style="solid", color="burlywood", weight=3]; 161[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];2840[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];161 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 189[label="",style="solid", color="burlywood", weight=3]; 2841[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];161 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 190[label="",style="solid", color="burlywood", weight=3]; 2842[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];161 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 191[label="",style="solid", color="burlywood", weight=3]; 162[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];2843[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 192[label="",style="solid", color="burlywood", weight=3]; 2844[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 193[label="",style="solid", color="burlywood", weight=3]; 2845[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 194[label="",style="solid", color="burlywood", weight=3]; 163[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];2846[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 195[label="",style="solid", color="burlywood", weight=3]; 2847[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];163 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 196[label="",style="solid", color="burlywood", weight=3]; 2848[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 197[label="",style="solid", color="burlywood", weight=3]; 164[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];2849[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];164 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 198[label="",style="solid", color="burlywood", weight=3]; 165[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];2850[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];165 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 199[label="",style="solid", color="burlywood", weight=3]; 2851[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];165 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 200[label="",style="solid", color="burlywood", weight=3]; 166[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];2852[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];166 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 201[label="",style="solid", color="burlywood", weight=3]; 2853[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];166 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 202[label="",style="solid", color="burlywood", weight=3]; 167[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];2854[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];167 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 203[label="",style="solid", color="burlywood", weight=3]; 168[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];2855[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];168 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 204[label="",style="solid", color="burlywood", weight=3]; 2856[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];168 -> 2856[label="",style="solid", color="burlywood", weight=9]; 2856 -> 205[label="",style="solid", color="burlywood", weight=3]; 169[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];2857[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];169 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 206[label="",style="solid", color="burlywood", weight=3]; 2858[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];169 -> 2858[label="",style="solid", color="burlywood", weight=9]; 2858 -> 207[label="",style="solid", color="burlywood", weight=3]; 170[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];2859[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];170 -> 2859[label="",style="solid", color="burlywood", weight=9]; 2859 -> 208[label="",style="solid", color="burlywood", weight=3]; 171[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];2860[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];171 -> 2860[label="",style="solid", color="burlywood", weight=9]; 2860 -> 209[label="",style="solid", color="burlywood", weight=3]; 172[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];2861[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];172 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 210[label="",style="solid", color="burlywood", weight=3]; 2862[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];172 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 211[label="",style="solid", color="burlywood", weight=3]; 173[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];2863[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];173 -> 2863[label="",style="solid", color="burlywood", weight=9]; 2863 -> 212[label="",style="solid", color="burlywood", weight=3]; 2864[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];173 -> 2864[label="",style="solid", color="burlywood", weight=9]; 2864 -> 213[label="",style="solid", color="burlywood", weight=3]; 174[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];2865[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];174 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 214[label="",style="solid", color="burlywood", weight=3]; 175 -> 142[label="",style="dashed", color="red", weight=0]; 175[label="compare2 (xuu33,xuu34) (xuu35,xuu36) False == LT",fontsize=16,color="magenta"];175 -> 215[label="",style="dashed", color="magenta", weight=3]; 175 -> 216[label="",style="dashed", color="magenta", weight=3]; 176 -> 142[label="",style="dashed", color="red", weight=0]; 176[label="compare2 (xuu33,xuu34) (xuu35,xuu36) (xuu34 == xuu36) == LT",fontsize=16,color="magenta"];176 -> 217[label="",style="dashed", color="magenta", weight=3]; 176 -> 218[label="",style="dashed", color="magenta", weight=3]; 220[label="(xuu22,xuu23) > (xuu16,xuu17)",fontsize=16,color="black",shape="box"];220 -> 222[label="",style="solid", color="black", weight=3]; 219[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 xuu39",fontsize=16,color="burlywood",shape="triangle"];2866[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];219 -> 2866[label="",style="solid", color="burlywood", weight=9]; 2866 -> 223[label="",style="solid", color="burlywood", weight=3]; 2867[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];219 -> 2867[label="",style="solid", color="burlywood", weight=9]; 2867 -> 224[label="",style="solid", color="burlywood", weight=3]; 179 -> 14[label="",style="dashed", color="red", weight=0]; 179[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22,xuu23) xuu24",fontsize=16,color="magenta"];179 -> 225[label="",style="dashed", color="magenta", weight=3]; 179 -> 226[label="",style="dashed", color="magenta", weight=3]; 179 -> 227[label="",style="dashed", color="magenta", weight=3]; 178[label="FiniteMap.mkBalBranch (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="triangle"];178 -> 228[label="",style="solid", color="black", weight=3]; 180[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];2868[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];180 -> 2868[label="",style="solid", color="burlywood", weight=9]; 2868 -> 229[label="",style="solid", color="burlywood", weight=3]; 181[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];181 -> 230[label="",style="solid", color="black", weight=3]; 182[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];2869[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];182 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 231[label="",style="solid", color="burlywood", weight=3]; 2870[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];182 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 232[label="",style="solid", color="burlywood", weight=3]; 183[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];2871[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];183 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 233[label="",style="solid", color="burlywood", weight=3]; 2872[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];183 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 234[label="",style="solid", color="burlywood", weight=3]; 184[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];184 -> 235[label="",style="solid", color="black", weight=3]; 185[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];185 -> 236[label="",style="solid", color="black", weight=3]; 186[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];186 -> 237[label="",style="solid", color="black", weight=3]; 187[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];187 -> 238[label="",style="solid", color="black", weight=3]; 188[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];188 -> 239[label="",style="solid", color="black", weight=3]; 189[label="LT == LT",fontsize=16,color="black",shape="box"];189 -> 240[label="",style="solid", color="black", weight=3]; 190[label="LT == EQ",fontsize=16,color="black",shape="box"];190 -> 241[label="",style="solid", color="black", weight=3]; 191[label="LT == GT",fontsize=16,color="black",shape="box"];191 -> 242[label="",style="solid", color="black", weight=3]; 192[label="EQ == LT",fontsize=16,color="black",shape="box"];192 -> 243[label="",style="solid", color="black", weight=3]; 193[label="EQ == EQ",fontsize=16,color="black",shape="box"];193 -> 244[label="",style="solid", color="black", weight=3]; 194[label="EQ == GT",fontsize=16,color="black",shape="box"];194 -> 245[label="",style="solid", color="black", weight=3]; 195[label="GT == LT",fontsize=16,color="black",shape="box"];195 -> 246[label="",style="solid", color="black", weight=3]; 196[label="GT == EQ",fontsize=16,color="black",shape="box"];196 -> 247[label="",style="solid", color="black", weight=3]; 197[label="GT == GT",fontsize=16,color="black",shape="box"];197 -> 248[label="",style="solid", color="black", weight=3]; 198[label="() == ()",fontsize=16,color="black",shape="box"];198 -> 249[label="",style="solid", color="black", weight=3]; 199[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];199 -> 250[label="",style="solid", color="black", weight=3]; 200[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];200 -> 251[label="",style="solid", color="black", weight=3]; 201[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];201 -> 252[label="",style="solid", color="black", weight=3]; 202[label="[] == []",fontsize=16,color="black",shape="box"];202 -> 253[label="",style="solid", color="black", weight=3]; 203[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];203 -> 254[label="",style="solid", color="black", weight=3]; 204[label="False == False",fontsize=16,color="black",shape="box"];204 -> 255[label="",style="solid", color="black", weight=3]; 205[label="False == True",fontsize=16,color="black",shape="box"];205 -> 256[label="",style="solid", color="black", weight=3]; 206[label="True == False",fontsize=16,color="black",shape="box"];206 -> 257[label="",style="solid", color="black", weight=3]; 207[label="True == True",fontsize=16,color="black",shape="box"];207 -> 258[label="",style="solid", color="black", weight=3]; 208[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];2873[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 259[label="",style="solid", color="burlywood", weight=3]; 209[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];2874[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];209 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 260[label="",style="solid", color="burlywood", weight=3]; 210[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];210 -> 261[label="",style="solid", color="black", weight=3]; 211[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];211 -> 262[label="",style="solid", color="black", weight=3]; 212[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];212 -> 263[label="",style="solid", color="black", weight=3]; 213[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];213 -> 264[label="",style="solid", color="black", weight=3]; 214[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];214 -> 265[label="",style="solid", color="black", weight=3]; 215[label="LT",fontsize=16,color="green",shape="box"];216 -> 1250[label="",style="dashed", color="red", weight=0]; 216[label="compare2 (xuu33,xuu34) (xuu35,xuu36) False",fontsize=16,color="magenta"];216 -> 1251[label="",style="dashed", color="magenta", weight=3]; 216 -> 1252[label="",style="dashed", color="magenta", weight=3]; 216 -> 1253[label="",style="dashed", color="magenta", weight=3]; 217[label="LT",fontsize=16,color="green",shape="box"];218 -> 1250[label="",style="dashed", color="red", weight=0]; 218[label="compare2 (xuu33,xuu34) (xuu35,xuu36) (xuu34 == xuu36)",fontsize=16,color="magenta"];218 -> 1254[label="",style="dashed", color="magenta", weight=3]; 218 -> 1255[label="",style="dashed", color="magenta", weight=3]; 218 -> 1256[label="",style="dashed", color="magenta", weight=3]; 222 -> 142[label="",style="dashed", color="red", weight=0]; 222[label="compare (xuu22,xuu23) (xuu16,xuu17) == GT",fontsize=16,color="magenta"];222 -> 278[label="",style="dashed", color="magenta", weight=3]; 222 -> 279[label="",style="dashed", color="magenta", weight=3]; 223[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 False",fontsize=16,color="black",shape="box"];223 -> 280[label="",style="solid", color="black", weight=3]; 224[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 True",fontsize=16,color="black",shape="box"];224 -> 281[label="",style="solid", color="black", weight=3]; 225[label="xuu20",fontsize=16,color="green",shape="box"];226[label="xuu24",fontsize=16,color="green",shape="box"];227[label="(xuu22,xuu23)",fontsize=16,color="green",shape="box"];228[label="FiniteMap.mkBalBranch6 (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="box"];228 -> 282[label="",style="solid", color="black", weight=3]; 229[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];229 -> 283[label="",style="solid", color="black", weight=3]; 230 -> 391[label="",style="dashed", color="red", weight=0]; 230[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];230 -> 392[label="",style="dashed", color="magenta", weight=3]; 230 -> 393[label="",style="dashed", color="magenta", weight=3]; 231[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];2875[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];231 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 290[label="",style="solid", color="burlywood", weight=3]; 2876[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];231 -> 2876[label="",style="solid", color="burlywood", weight=9]; 2876 -> 291[label="",style="solid", color="burlywood", weight=3]; 232[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];2877[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];232 -> 2877[label="",style="solid", color="burlywood", weight=9]; 2877 -> 292[label="",style="solid", color="burlywood", weight=3]; 2878[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];232 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 293[label="",style="solid", color="burlywood", weight=3]; 233[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];2879[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];233 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 294[label="",style="solid", color="burlywood", weight=3]; 2880[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];233 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 295[label="",style="solid", color="burlywood", weight=3]; 234[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];2881[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];234 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 296[label="",style="solid", color="burlywood", weight=3]; 2882[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];234 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 297[label="",style="solid", color="burlywood", weight=3]; 235[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2883[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 298[label="",style="solid", color="blue", weight=3]; 2884[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 299[label="",style="solid", color="blue", weight=3]; 2885[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 300[label="",style="solid", color="blue", weight=3]; 2886[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 301[label="",style="solid", color="blue", weight=3]; 2887[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 302[label="",style="solid", color="blue", weight=3]; 2888[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 303[label="",style="solid", color="blue", weight=3]; 2889[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 304[label="",style="solid", color="blue", weight=3]; 2890[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 305[label="",style="solid", color="blue", weight=3]; 2891[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 306[label="",style="solid", color="blue", weight=3]; 2892[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 307[label="",style="solid", color="blue", weight=3]; 2893[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 308[label="",style="solid", color="blue", weight=3]; 2894[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 309[label="",style="solid", color="blue", weight=3]; 2895[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 310[label="",style="solid", color="blue", weight=3]; 2896[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 311[label="",style="solid", color="blue", weight=3]; 236[label="False",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2897[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 312[label="",style="solid", color="blue", weight=3]; 2898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 313[label="",style="solid", color="blue", weight=3]; 2899[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 314[label="",style="solid", color="blue", weight=3]; 2900[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 315[label="",style="solid", color="blue", weight=3]; 2901[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 316[label="",style="solid", color="blue", weight=3]; 2902[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 317[label="",style="solid", color="blue", weight=3]; 2903[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 318[label="",style="solid", color="blue", weight=3]; 2904[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 319[label="",style="solid", color="blue", weight=3]; 2905[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 320[label="",style="solid", color="blue", weight=3]; 2906[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 321[label="",style="solid", color="blue", weight=3]; 2907[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 322[label="",style="solid", color="blue", weight=3]; 2908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 323[label="",style="solid", color="blue", weight=3]; 2909[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 324[label="",style="solid", color="blue", weight=3]; 2910[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 325[label="",style="solid", color="blue", weight=3]; 239 -> 391[label="",style="dashed", color="red", weight=0]; 239[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];239 -> 394[label="",style="dashed", color="magenta", weight=3]; 239 -> 395[label="",style="dashed", color="magenta", weight=3]; 240[label="True",fontsize=16,color="green",shape="box"];241[label="False",fontsize=16,color="green",shape="box"];242[label="False",fontsize=16,color="green",shape="box"];243[label="False",fontsize=16,color="green",shape="box"];244[label="True",fontsize=16,color="green",shape="box"];245[label="False",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="False",fontsize=16,color="green",shape="box"];248[label="True",fontsize=16,color="green",shape="box"];249[label="True",fontsize=16,color="green",shape="box"];250 -> 391[label="",style="dashed", color="red", weight=0]; 250[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];250 -> 396[label="",style="dashed", color="magenta", weight=3]; 250 -> 397[label="",style="dashed", color="magenta", weight=3]; 251[label="False",fontsize=16,color="green",shape="box"];252[label="False",fontsize=16,color="green",shape="box"];253[label="True",fontsize=16,color="green",shape="box"];254 -> 391[label="",style="dashed", color="red", weight=0]; 254[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];254 -> 398[label="",style="dashed", color="magenta", weight=3]; 254 -> 399[label="",style="dashed", color="magenta", weight=3]; 255[label="True",fontsize=16,color="green",shape="box"];256[label="False",fontsize=16,color="green",shape="box"];257[label="False",fontsize=16,color="green",shape="box"];258[label="True",fontsize=16,color="green",shape="box"];259[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];259 -> 336[label="",style="solid", color="black", weight=3]; 260[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];260 -> 337[label="",style="solid", color="black", weight=3]; 261[label="True",fontsize=16,color="green",shape="box"];262[label="False",fontsize=16,color="green",shape="box"];263[label="False",fontsize=16,color="green",shape="box"];264[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2911[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 338[label="",style="solid", color="blue", weight=3]; 2912[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 339[label="",style="solid", color="blue", weight=3]; 2913[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 340[label="",style="solid", color="blue", weight=3]; 2914[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 341[label="",style="solid", color="blue", weight=3]; 2915[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 342[label="",style="solid", color="blue", weight=3]; 2916[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 343[label="",style="solid", color="blue", weight=3]; 2917[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 344[label="",style="solid", color="blue", weight=3]; 2918[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 345[label="",style="solid", color="blue", weight=3]; 2919[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 346[label="",style="solid", color="blue", weight=3]; 2920[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 347[label="",style="solid", color="blue", weight=3]; 2921[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 348[label="",style="solid", color="blue", weight=3]; 2922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 349[label="",style="solid", color="blue", weight=3]; 2923[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 350[label="",style="solid", color="blue", weight=3]; 2924[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];264 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 351[label="",style="solid", color="blue", weight=3]; 265 -> 157[label="",style="dashed", color="red", weight=0]; 265[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];265 -> 352[label="",style="dashed", color="magenta", weight=3]; 265 -> 353[label="",style="dashed", color="magenta", weight=3]; 1251[label="(xuu35,xuu36)",fontsize=16,color="green",shape="box"];1252[label="False",fontsize=16,color="green",shape="box"];1253[label="(xuu33,xuu34)",fontsize=16,color="green",shape="box"];1250[label="compare2 xuu46 xuu48 xuu99",fontsize=16,color="burlywood",shape="triangle"];2925[label="xuu99/False",fontsize=10,color="white",style="solid",shape="box"];1250 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 1264[label="",style="solid", color="burlywood", weight=3]; 2926[label="xuu99/True",fontsize=10,color="white",style="solid",shape="box"];1250 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 1265[label="",style="solid", color="burlywood", weight=3]; 1254[label="(xuu35,xuu36)",fontsize=16,color="green",shape="box"];1255[label="xuu34 == xuu36",fontsize=16,color="blue",shape="box"];2927[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 1266[label="",style="solid", color="blue", weight=3]; 2928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 1267[label="",style="solid", color="blue", weight=3]; 2929[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 1268[label="",style="solid", color="blue", weight=3]; 2930[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 1269[label="",style="solid", color="blue", weight=3]; 2931[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 1270[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 1271[label="",style="solid", color="blue", weight=3]; 2933[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 1272[label="",style="solid", color="blue", weight=3]; 2934[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 1273[label="",style="solid", color="blue", weight=3]; 2935[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 1274[label="",style="solid", color="blue", weight=3]; 2936[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 1275[label="",style="solid", color="blue", weight=3]; 2937[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 1276[label="",style="solid", color="blue", weight=3]; 2938[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 1277[label="",style="solid", color="blue", weight=3]; 2939[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 1278[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 1279[label="",style="solid", color="blue", weight=3]; 1256[label="(xuu33,xuu34)",fontsize=16,color="green",shape="box"];278[label="GT",fontsize=16,color="green",shape="box"];279[label="compare (xuu22,xuu23) (xuu16,xuu17)",fontsize=16,color="black",shape="box"];279 -> 370[label="",style="solid", color="black", weight=3]; 280[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 otherwise",fontsize=16,color="black",shape="box"];280 -> 371[label="",style="solid", color="black", weight=3]; 281 -> 178[label="",style="dashed", color="red", weight=0]; 281[label="FiniteMap.mkBalBranch (xuu16,xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22,xuu23) xuu24)",fontsize=16,color="magenta"];281 -> 372[label="",style="dashed", color="magenta", weight=3]; 281 -> 373[label="",style="dashed", color="magenta", weight=3]; 282 -> 606[label="",style="dashed", color="red", weight=0]; 282[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 + FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];282 -> 607[label="",style="dashed", color="magenta", weight=3]; 283 -> 139[label="",style="dashed", color="red", weight=0]; 283[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];283 -> 375[label="",style="dashed", color="magenta", weight=3]; 283 -> 376[label="",style="dashed", color="magenta", weight=3]; 392[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2941[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 403[label="",style="solid", color="blue", weight=3]; 2942[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 404[label="",style="solid", color="blue", weight=3]; 2943[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 405[label="",style="solid", color="blue", weight=3]; 2944[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 406[label="",style="solid", color="blue", weight=3]; 2945[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 407[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 408[label="",style="solid", color="blue", weight=3]; 2947[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 409[label="",style="solid", color="blue", weight=3]; 2948[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 410[label="",style="solid", color="blue", weight=3]; 2949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 411[label="",style="solid", color="blue", weight=3]; 2950[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 412[label="",style="solid", color="blue", weight=3]; 2951[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 413[label="",style="solid", color="blue", weight=3]; 2952[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 414[label="",style="solid", color="blue", weight=3]; 2953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 415[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 416[label="",style="solid", color="blue", weight=3]; 393 -> 391[label="",style="dashed", color="red", weight=0]; 393[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];393 -> 417[label="",style="dashed", color="magenta", weight=3]; 393 -> 418[label="",style="dashed", color="magenta", weight=3]; 391[label="xuu57 && xuu69",fontsize=16,color="burlywood",shape="triangle"];2955[label="xuu57/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 419[label="",style="solid", color="burlywood", weight=3]; 2956[label="xuu57/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 420[label="",style="solid", color="burlywood", weight=3]; 290[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];2957[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];290 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 421[label="",style="solid", color="burlywood", weight=3]; 2958[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];290 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 422[label="",style="solid", color="burlywood", weight=3]; 291[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];291 -> 423[label="",style="solid", color="black", weight=3]; 292[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];2959[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];292 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 424[label="",style="solid", color="burlywood", weight=3]; 2960[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];292 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 425[label="",style="solid", color="burlywood", weight=3]; 293[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];2961[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];293 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 426[label="",style="solid", color="burlywood", weight=3]; 2962[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];293 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 427[label="",style="solid", color="burlywood", weight=3]; 294[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];294 -> 428[label="",style="solid", color="black", weight=3]; 295[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];2963[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];295 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 429[label="",style="solid", color="burlywood", weight=3]; 2964[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];295 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 430[label="",style="solid", color="burlywood", weight=3]; 296[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];2965[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];296 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 431[label="",style="solid", color="burlywood", weight=3]; 2966[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];296 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 432[label="",style="solid", color="burlywood", weight=3]; 297[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];2967[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];297 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 433[label="",style="solid", color="burlywood", weight=3]; 2968[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];297 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 434[label="",style="solid", color="burlywood", weight=3]; 298 -> 137[label="",style="dashed", color="red", weight=0]; 298[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];298 -> 435[label="",style="dashed", color="magenta", weight=3]; 298 -> 436[label="",style="dashed", color="magenta", weight=3]; 299 -> 138[label="",style="dashed", color="red", weight=0]; 299[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];299 -> 437[label="",style="dashed", color="magenta", weight=3]; 299 -> 438[label="",style="dashed", color="magenta", weight=3]; 300 -> 139[label="",style="dashed", color="red", weight=0]; 300[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];300 -> 439[label="",style="dashed", color="magenta", weight=3]; 300 -> 440[label="",style="dashed", color="magenta", weight=3]; 301 -> 140[label="",style="dashed", color="red", weight=0]; 301[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];301 -> 441[label="",style="dashed", color="magenta", weight=3]; 301 -> 442[label="",style="dashed", color="magenta", weight=3]; 302 -> 141[label="",style="dashed", color="red", weight=0]; 302[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];302 -> 443[label="",style="dashed", color="magenta", weight=3]; 302 -> 444[label="",style="dashed", color="magenta", weight=3]; 303 -> 142[label="",style="dashed", color="red", weight=0]; 303[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];303 -> 445[label="",style="dashed", color="magenta", weight=3]; 303 -> 446[label="",style="dashed", color="magenta", weight=3]; 304 -> 143[label="",style="dashed", color="red", weight=0]; 304[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];304 -> 447[label="",style="dashed", color="magenta", weight=3]; 304 -> 448[label="",style="dashed", color="magenta", weight=3]; 305 -> 144[label="",style="dashed", color="red", weight=0]; 305[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];305 -> 449[label="",style="dashed", color="magenta", weight=3]; 305 -> 450[label="",style="dashed", color="magenta", weight=3]; 306 -> 145[label="",style="dashed", color="red", weight=0]; 306[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];306 -> 451[label="",style="dashed", color="magenta", weight=3]; 306 -> 452[label="",style="dashed", color="magenta", weight=3]; 307 -> 146[label="",style="dashed", color="red", weight=0]; 307[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];307 -> 453[label="",style="dashed", color="magenta", weight=3]; 307 -> 454[label="",style="dashed", color="magenta", weight=3]; 308 -> 147[label="",style="dashed", color="red", weight=0]; 308[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];308 -> 455[label="",style="dashed", color="magenta", weight=3]; 308 -> 456[label="",style="dashed", color="magenta", weight=3]; 309 -> 148[label="",style="dashed", color="red", weight=0]; 309[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];309 -> 457[label="",style="dashed", color="magenta", weight=3]; 309 -> 458[label="",style="dashed", color="magenta", weight=3]; 310 -> 149[label="",style="dashed", color="red", weight=0]; 310[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];310 -> 459[label="",style="dashed", color="magenta", weight=3]; 310 -> 460[label="",style="dashed", color="magenta", weight=3]; 311 -> 150[label="",style="dashed", color="red", weight=0]; 311[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];311 -> 461[label="",style="dashed", color="magenta", weight=3]; 311 -> 462[label="",style="dashed", color="magenta", weight=3]; 312 -> 137[label="",style="dashed", color="red", weight=0]; 312[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];312 -> 463[label="",style="dashed", color="magenta", weight=3]; 312 -> 464[label="",style="dashed", color="magenta", weight=3]; 313 -> 138[label="",style="dashed", color="red", weight=0]; 313[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];313 -> 465[label="",style="dashed", color="magenta", weight=3]; 313 -> 466[label="",style="dashed", color="magenta", weight=3]; 314 -> 139[label="",style="dashed", color="red", weight=0]; 314[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];314 -> 467[label="",style="dashed", color="magenta", weight=3]; 314 -> 468[label="",style="dashed", color="magenta", weight=3]; 315 -> 140[label="",style="dashed", color="red", weight=0]; 315[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];315 -> 469[label="",style="dashed", color="magenta", weight=3]; 315 -> 470[label="",style="dashed", color="magenta", weight=3]; 316 -> 141[label="",style="dashed", color="red", weight=0]; 316[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];316 -> 471[label="",style="dashed", color="magenta", weight=3]; 316 -> 472[label="",style="dashed", color="magenta", weight=3]; 317 -> 142[label="",style="dashed", color="red", weight=0]; 317[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];317 -> 473[label="",style="dashed", color="magenta", weight=3]; 317 -> 474[label="",style="dashed", color="magenta", weight=3]; 318 -> 143[label="",style="dashed", color="red", weight=0]; 318[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];318 -> 475[label="",style="dashed", color="magenta", weight=3]; 318 -> 476[label="",style="dashed", color="magenta", weight=3]; 319 -> 144[label="",style="dashed", color="red", weight=0]; 319[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];319 -> 477[label="",style="dashed", color="magenta", weight=3]; 319 -> 478[label="",style="dashed", color="magenta", weight=3]; 320 -> 145[label="",style="dashed", color="red", weight=0]; 320[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];320 -> 479[label="",style="dashed", color="magenta", weight=3]; 320 -> 480[label="",style="dashed", color="magenta", weight=3]; 321 -> 146[label="",style="dashed", color="red", weight=0]; 321[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];321 -> 481[label="",style="dashed", color="magenta", weight=3]; 321 -> 482[label="",style="dashed", color="magenta", weight=3]; 322 -> 147[label="",style="dashed", color="red", weight=0]; 322[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];322 -> 483[label="",style="dashed", color="magenta", weight=3]; 322 -> 484[label="",style="dashed", color="magenta", weight=3]; 323 -> 148[label="",style="dashed", color="red", weight=0]; 323[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];323 -> 485[label="",style="dashed", color="magenta", weight=3]; 323 -> 486[label="",style="dashed", color="magenta", weight=3]; 324 -> 149[label="",style="dashed", color="red", weight=0]; 324[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];324 -> 487[label="",style="dashed", color="magenta", weight=3]; 324 -> 488[label="",style="dashed", color="magenta", weight=3]; 325 -> 150[label="",style="dashed", color="red", weight=0]; 325[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];325 -> 489[label="",style="dashed", color="magenta", weight=3]; 325 -> 490[label="",style="dashed", color="magenta", weight=3]; 394[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2969[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 491[label="",style="solid", color="blue", weight=3]; 2970[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 492[label="",style="solid", color="blue", weight=3]; 2971[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 493[label="",style="solid", color="blue", weight=3]; 2972[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 494[label="",style="solid", color="blue", weight=3]; 2973[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 495[label="",style="solid", color="blue", weight=3]; 2974[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 496[label="",style="solid", color="blue", weight=3]; 2975[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 497[label="",style="solid", color="blue", weight=3]; 2976[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 498[label="",style="solid", color="blue", weight=3]; 2977[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 499[label="",style="solid", color="blue", weight=3]; 2978[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 500[label="",style="solid", color="blue", weight=3]; 2979[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 501[label="",style="solid", color="blue", weight=3]; 2980[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 502[label="",style="solid", color="blue", weight=3]; 2981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 503[label="",style="solid", color="blue", weight=3]; 2982[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];394 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 504[label="",style="solid", color="blue", weight=3]; 395[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];2983[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 505[label="",style="solid", color="blue", weight=3]; 2984[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 506[label="",style="solid", color="blue", weight=3]; 2985[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 507[label="",style="solid", color="blue", weight=3]; 2986[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 508[label="",style="solid", color="blue", weight=3]; 2987[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 509[label="",style="solid", color="blue", weight=3]; 2988[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 510[label="",style="solid", color="blue", weight=3]; 2989[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 511[label="",style="solid", color="blue", weight=3]; 2990[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 512[label="",style="solid", color="blue", weight=3]; 2991[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 513[label="",style="solid", color="blue", weight=3]; 2992[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 514[label="",style="solid", color="blue", weight=3]; 2993[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 515[label="",style="solid", color="blue", weight=3]; 2994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 516[label="",style="solid", color="blue", weight=3]; 2995[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 517[label="",style="solid", color="blue", weight=3]; 2996[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];395 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 518[label="",style="solid", color="blue", weight=3]; 396[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];2997[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 519[label="",style="solid", color="blue", weight=3]; 2998[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 520[label="",style="solid", color="blue", weight=3]; 2999[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 521[label="",style="solid", color="blue", weight=3]; 3000[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 522[label="",style="solid", color="blue", weight=3]; 3001[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 523[label="",style="solid", color="blue", weight=3]; 3002[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 524[label="",style="solid", color="blue", weight=3]; 3003[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3003[label="",style="solid", color="blue", weight=9]; 3003 -> 525[label="",style="solid", color="blue", weight=3]; 3004[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 526[label="",style="solid", color="blue", weight=3]; 3005[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 527[label="",style="solid", color="blue", weight=3]; 3006[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 528[label="",style="solid", color="blue", weight=3]; 3007[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 529[label="",style="solid", color="blue", weight=3]; 3008[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 530[label="",style="solid", color="blue", weight=3]; 3009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 531[label="",style="solid", color="blue", weight=3]; 3010[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];396 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 532[label="",style="solid", color="blue", weight=3]; 397 -> 144[label="",style="dashed", color="red", weight=0]; 397[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];397 -> 533[label="",style="dashed", color="magenta", weight=3]; 397 -> 534[label="",style="dashed", color="magenta", weight=3]; 398[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3011[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 535[label="",style="solid", color="blue", weight=3]; 3012[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 536[label="",style="solid", color="blue", weight=3]; 399[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3013[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];399 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 537[label="",style="solid", color="blue", weight=3]; 3014[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];399 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 538[label="",style="solid", color="blue", weight=3]; 336[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3015[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];336 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 539[label="",style="solid", color="burlywood", weight=3]; 3016[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];336 -> 3016[label="",style="solid", color="burlywood", weight=9]; 3016 -> 540[label="",style="solid", color="burlywood", weight=3]; 337 -> 139[label="",style="dashed", color="red", weight=0]; 337[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];337 -> 541[label="",style="dashed", color="magenta", weight=3]; 337 -> 542[label="",style="dashed", color="magenta", weight=3]; 338 -> 137[label="",style="dashed", color="red", weight=0]; 338[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];338 -> 543[label="",style="dashed", color="magenta", weight=3]; 338 -> 544[label="",style="dashed", color="magenta", weight=3]; 339 -> 138[label="",style="dashed", color="red", weight=0]; 339[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];339 -> 545[label="",style="dashed", color="magenta", weight=3]; 339 -> 546[label="",style="dashed", color="magenta", weight=3]; 340 -> 139[label="",style="dashed", color="red", weight=0]; 340[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];340 -> 547[label="",style="dashed", color="magenta", weight=3]; 340 -> 548[label="",style="dashed", color="magenta", weight=3]; 341 -> 140[label="",style="dashed", color="red", weight=0]; 341[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];341 -> 549[label="",style="dashed", color="magenta", weight=3]; 341 -> 550[label="",style="dashed", color="magenta", weight=3]; 342 -> 141[label="",style="dashed", color="red", weight=0]; 342[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];342 -> 551[label="",style="dashed", color="magenta", weight=3]; 342 -> 552[label="",style="dashed", color="magenta", weight=3]; 343 -> 142[label="",style="dashed", color="red", weight=0]; 343[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];343 -> 553[label="",style="dashed", color="magenta", weight=3]; 343 -> 554[label="",style="dashed", color="magenta", weight=3]; 344 -> 143[label="",style="dashed", color="red", weight=0]; 344[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];344 -> 555[label="",style="dashed", color="magenta", weight=3]; 344 -> 556[label="",style="dashed", color="magenta", weight=3]; 345 -> 144[label="",style="dashed", color="red", weight=0]; 345[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];345 -> 557[label="",style="dashed", color="magenta", weight=3]; 345 -> 558[label="",style="dashed", color="magenta", weight=3]; 346 -> 145[label="",style="dashed", color="red", weight=0]; 346[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];346 -> 559[label="",style="dashed", color="magenta", weight=3]; 346 -> 560[label="",style="dashed", color="magenta", weight=3]; 347 -> 146[label="",style="dashed", color="red", weight=0]; 347[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];347 -> 561[label="",style="dashed", color="magenta", weight=3]; 347 -> 562[label="",style="dashed", color="magenta", weight=3]; 348 -> 147[label="",style="dashed", color="red", weight=0]; 348[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];348 -> 563[label="",style="dashed", color="magenta", weight=3]; 348 -> 564[label="",style="dashed", color="magenta", weight=3]; 349 -> 148[label="",style="dashed", color="red", weight=0]; 349[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];349 -> 565[label="",style="dashed", color="magenta", weight=3]; 349 -> 566[label="",style="dashed", color="magenta", weight=3]; 350 -> 149[label="",style="dashed", color="red", weight=0]; 350[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];350 -> 567[label="",style="dashed", color="magenta", weight=3]; 350 -> 568[label="",style="dashed", color="magenta", weight=3]; 351 -> 150[label="",style="dashed", color="red", weight=0]; 351[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];351 -> 569[label="",style="dashed", color="magenta", weight=3]; 351 -> 570[label="",style="dashed", color="magenta", weight=3]; 352[label="xuu3000",fontsize=16,color="green",shape="box"];353[label="xuu40000",fontsize=16,color="green",shape="box"];1264[label="compare2 xuu46 xuu48 False",fontsize=16,color="black",shape="box"];1264 -> 1288[label="",style="solid", color="black", weight=3]; 1265[label="compare2 xuu46 xuu48 True",fontsize=16,color="black",shape="box"];1265 -> 1289[label="",style="solid", color="black", weight=3]; 1266 -> 137[label="",style="dashed", color="red", weight=0]; 1266[label="xuu34 == xuu36",fontsize=16,color="magenta"];1266 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1267 -> 138[label="",style="dashed", color="red", weight=0]; 1267[label="xuu34 == xuu36",fontsize=16,color="magenta"];1267 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1268 -> 139[label="",style="dashed", color="red", weight=0]; 1268[label="xuu34 == xuu36",fontsize=16,color="magenta"];1268 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1269 -> 140[label="",style="dashed", color="red", weight=0]; 1269[label="xuu34 == xuu36",fontsize=16,color="magenta"];1269 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1270 -> 141[label="",style="dashed", color="red", weight=0]; 1270[label="xuu34 == xuu36",fontsize=16,color="magenta"];1270 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1271 -> 142[label="",style="dashed", color="red", weight=0]; 1271[label="xuu34 == xuu36",fontsize=16,color="magenta"];1271 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1272 -> 143[label="",style="dashed", color="red", weight=0]; 1272[label="xuu34 == xuu36",fontsize=16,color="magenta"];1272 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1273 -> 144[label="",style="dashed", color="red", weight=0]; 1273[label="xuu34 == xuu36",fontsize=16,color="magenta"];1273 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1274 -> 145[label="",style="dashed", color="red", weight=0]; 1274[label="xuu34 == xuu36",fontsize=16,color="magenta"];1274 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1275 -> 146[label="",style="dashed", color="red", weight=0]; 1275[label="xuu34 == xuu36",fontsize=16,color="magenta"];1275 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1276 -> 147[label="",style="dashed", color="red", weight=0]; 1276[label="xuu34 == xuu36",fontsize=16,color="magenta"];1276 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1277 -> 148[label="",style="dashed", color="red", weight=0]; 1277[label="xuu34 == xuu36",fontsize=16,color="magenta"];1277 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1278 -> 149[label="",style="dashed", color="red", weight=0]; 1278[label="xuu34 == xuu36",fontsize=16,color="magenta"];1278 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1279 -> 150[label="",style="dashed", color="red", weight=0]; 1279[label="xuu34 == xuu36",fontsize=16,color="magenta"];1279 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1317[label="",style="dashed", color="magenta", weight=3]; 370[label="compare3 (xuu22,xuu23) (xuu16,xuu17)",fontsize=16,color="black",shape="box"];370 -> 601[label="",style="solid", color="black", weight=3]; 371[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16,xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22,xuu23) xuu24 True",fontsize=16,color="black",shape="box"];371 -> 602[label="",style="solid", color="black", weight=3]; 372[label="xuu20",fontsize=16,color="green",shape="box"];373 -> 14[label="",style="dashed", color="red", weight=0]; 373[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22,xuu23) xuu24",fontsize=16,color="magenta"];373 -> 603[label="",style="dashed", color="magenta", weight=3]; 373 -> 604[label="",style="dashed", color="magenta", weight=3]; 373 -> 605[label="",style="dashed", color="magenta", weight=3]; 607[label="FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 + FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];607 -> 609[label="",style="solid", color="black", weight=3]; 606[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 xuu70",fontsize=16,color="burlywood",shape="triangle"];3017[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];606 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 610[label="",style="solid", color="burlywood", weight=3]; 3018[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];606 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 611[label="",style="solid", color="burlywood", weight=3]; 375[label="xuu40001 * xuu3000",fontsize=16,color="black",shape="triangle"];375 -> 612[label="",style="solid", color="black", weight=3]; 376 -> 375[label="",style="dashed", color="red", weight=0]; 376[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];376 -> 613[label="",style="dashed", color="magenta", weight=3]; 376 -> 614[label="",style="dashed", color="magenta", weight=3]; 403 -> 137[label="",style="dashed", color="red", weight=0]; 403[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];403 -> 615[label="",style="dashed", color="magenta", weight=3]; 403 -> 616[label="",style="dashed", color="magenta", weight=3]; 404 -> 138[label="",style="dashed", color="red", weight=0]; 404[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];404 -> 617[label="",style="dashed", color="magenta", weight=3]; 404 -> 618[label="",style="dashed", color="magenta", weight=3]; 405 -> 139[label="",style="dashed", color="red", weight=0]; 405[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];405 -> 619[label="",style="dashed", color="magenta", weight=3]; 405 -> 620[label="",style="dashed", color="magenta", weight=3]; 406 -> 140[label="",style="dashed", color="red", weight=0]; 406[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];406 -> 621[label="",style="dashed", color="magenta", weight=3]; 406 -> 622[label="",style="dashed", color="magenta", weight=3]; 407 -> 141[label="",style="dashed", color="red", weight=0]; 407[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];407 -> 623[label="",style="dashed", color="magenta", weight=3]; 407 -> 624[label="",style="dashed", color="magenta", weight=3]; 408 -> 142[label="",style="dashed", color="red", weight=0]; 408[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];408 -> 625[label="",style="dashed", color="magenta", weight=3]; 408 -> 626[label="",style="dashed", color="magenta", weight=3]; 409 -> 143[label="",style="dashed", color="red", weight=0]; 409[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];409 -> 627[label="",style="dashed", color="magenta", weight=3]; 409 -> 628[label="",style="dashed", color="magenta", weight=3]; 410 -> 144[label="",style="dashed", color="red", weight=0]; 410[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];410 -> 629[label="",style="dashed", color="magenta", weight=3]; 410 -> 630[label="",style="dashed", color="magenta", weight=3]; 411 -> 145[label="",style="dashed", color="red", weight=0]; 411[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];411 -> 631[label="",style="dashed", color="magenta", weight=3]; 411 -> 632[label="",style="dashed", color="magenta", weight=3]; 412 -> 146[label="",style="dashed", color="red", weight=0]; 412[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];412 -> 633[label="",style="dashed", color="magenta", weight=3]; 412 -> 634[label="",style="dashed", color="magenta", weight=3]; 413 -> 147[label="",style="dashed", color="red", weight=0]; 413[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];413 -> 635[label="",style="dashed", color="magenta", weight=3]; 413 -> 636[label="",style="dashed", color="magenta", weight=3]; 414 -> 148[label="",style="dashed", color="red", weight=0]; 414[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];414 -> 637[label="",style="dashed", color="magenta", weight=3]; 414 -> 638[label="",style="dashed", color="magenta", weight=3]; 415 -> 149[label="",style="dashed", color="red", weight=0]; 415[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];415 -> 639[label="",style="dashed", color="magenta", weight=3]; 415 -> 640[label="",style="dashed", color="magenta", weight=3]; 416 -> 150[label="",style="dashed", color="red", weight=0]; 416[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];416 -> 641[label="",style="dashed", color="magenta", weight=3]; 416 -> 642[label="",style="dashed", color="magenta", weight=3]; 417[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3019[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 643[label="",style="solid", color="blue", weight=3]; 3020[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 644[label="",style="solid", color="blue", weight=3]; 3021[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 645[label="",style="solid", color="blue", weight=3]; 3022[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 646[label="",style="solid", color="blue", weight=3]; 3023[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 647[label="",style="solid", color="blue", weight=3]; 3024[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 648[label="",style="solid", color="blue", weight=3]; 3025[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 649[label="",style="solid", color="blue", weight=3]; 3026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 650[label="",style="solid", color="blue", weight=3]; 3027[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 651[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 652[label="",style="solid", color="blue", weight=3]; 3029[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 653[label="",style="solid", color="blue", weight=3]; 3030[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 654[label="",style="solid", color="blue", weight=3]; 3031[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 655[label="",style="solid", color="blue", weight=3]; 3032[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];417 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 656[label="",style="solid", color="blue", weight=3]; 418[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];3033[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 657[label="",style="solid", color="blue", weight=3]; 3034[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 658[label="",style="solid", color="blue", weight=3]; 3035[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 659[label="",style="solid", color="blue", weight=3]; 3036[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 660[label="",style="solid", color="blue", weight=3]; 3037[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 661[label="",style="solid", color="blue", weight=3]; 3038[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 662[label="",style="solid", color="blue", weight=3]; 3039[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 663[label="",style="solid", color="blue", weight=3]; 3040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 664[label="",style="solid", color="blue", weight=3]; 3041[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 665[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 666[label="",style="solid", color="blue", weight=3]; 3043[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 667[label="",style="solid", color="blue", weight=3]; 3044[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 668[label="",style="solid", color="blue", weight=3]; 3045[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 669[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 670[label="",style="solid", color="blue", weight=3]; 419[label="False && xuu69",fontsize=16,color="black",shape="box"];419 -> 671[label="",style="solid", color="black", weight=3]; 420[label="True && xuu69",fontsize=16,color="black",shape="box"];420 -> 672[label="",style="solid", color="black", weight=3]; 421[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];421 -> 673[label="",style="solid", color="black", weight=3]; 422[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];422 -> 674[label="",style="solid", color="black", weight=3]; 423[label="False",fontsize=16,color="green",shape="box"];424[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];424 -> 675[label="",style="solid", color="black", weight=3]; 425[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];425 -> 676[label="",style="solid", color="black", weight=3]; 426[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];426 -> 677[label="",style="solid", color="black", weight=3]; 427[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];427 -> 678[label="",style="solid", color="black", weight=3]; 428[label="False",fontsize=16,color="green",shape="box"];429[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];429 -> 679[label="",style="solid", color="black", weight=3]; 430[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];430 -> 680[label="",style="solid", color="black", weight=3]; 431[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];431 -> 681[label="",style="solid", color="black", weight=3]; 432[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];432 -> 682[label="",style="solid", color="black", weight=3]; 433[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];433 -> 683[label="",style="solid", color="black", weight=3]; 434[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];434 -> 684[label="",style="solid", color="black", weight=3]; 435[label="xuu3000",fontsize=16,color="green",shape="box"];436[label="xuu40000",fontsize=16,color="green",shape="box"];437[label="xuu3000",fontsize=16,color="green",shape="box"];438[label="xuu40000",fontsize=16,color="green",shape="box"];439[label="xuu3000",fontsize=16,color="green",shape="box"];440[label="xuu40000",fontsize=16,color="green",shape="box"];441[label="xuu3000",fontsize=16,color="green",shape="box"];442[label="xuu40000",fontsize=16,color="green",shape="box"];443[label="xuu3000",fontsize=16,color="green",shape="box"];444[label="xuu40000",fontsize=16,color="green",shape="box"];445[label="xuu3000",fontsize=16,color="green",shape="box"];446[label="xuu40000",fontsize=16,color="green",shape="box"];447[label="xuu3000",fontsize=16,color="green",shape="box"];448[label="xuu40000",fontsize=16,color="green",shape="box"];449[label="xuu3000",fontsize=16,color="green",shape="box"];450[label="xuu40000",fontsize=16,color="green",shape="box"];451[label="xuu3000",fontsize=16,color="green",shape="box"];452[label="xuu40000",fontsize=16,color="green",shape="box"];453[label="xuu3000",fontsize=16,color="green",shape="box"];454[label="xuu40000",fontsize=16,color="green",shape="box"];455[label="xuu3000",fontsize=16,color="green",shape="box"];456[label="xuu40000",fontsize=16,color="green",shape="box"];457[label="xuu3000",fontsize=16,color="green",shape="box"];458[label="xuu40000",fontsize=16,color="green",shape="box"];459[label="xuu3000",fontsize=16,color="green",shape="box"];460[label="xuu40000",fontsize=16,color="green",shape="box"];461[label="xuu3000",fontsize=16,color="green",shape="box"];462[label="xuu40000",fontsize=16,color="green",shape="box"];463[label="xuu3000",fontsize=16,color="green",shape="box"];464[label="xuu40000",fontsize=16,color="green",shape="box"];465[label="xuu3000",fontsize=16,color="green",shape="box"];466[label="xuu40000",fontsize=16,color="green",shape="box"];467[label="xuu3000",fontsize=16,color="green",shape="box"];468[label="xuu40000",fontsize=16,color="green",shape="box"];469[label="xuu3000",fontsize=16,color="green",shape="box"];470[label="xuu40000",fontsize=16,color="green",shape="box"];471[label="xuu3000",fontsize=16,color="green",shape="box"];472[label="xuu40000",fontsize=16,color="green",shape="box"];473[label="xuu3000",fontsize=16,color="green",shape="box"];474[label="xuu40000",fontsize=16,color="green",shape="box"];475[label="xuu3000",fontsize=16,color="green",shape="box"];476[label="xuu40000",fontsize=16,color="green",shape="box"];477[label="xuu3000",fontsize=16,color="green",shape="box"];478[label="xuu40000",fontsize=16,color="green",shape="box"];479[label="xuu3000",fontsize=16,color="green",shape="box"];480[label="xuu40000",fontsize=16,color="green",shape="box"];481[label="xuu3000",fontsize=16,color="green",shape="box"];482[label="xuu40000",fontsize=16,color="green",shape="box"];483[label="xuu3000",fontsize=16,color="green",shape="box"];484[label="xuu40000",fontsize=16,color="green",shape="box"];485[label="xuu3000",fontsize=16,color="green",shape="box"];486[label="xuu40000",fontsize=16,color="green",shape="box"];487[label="xuu3000",fontsize=16,color="green",shape="box"];488[label="xuu40000",fontsize=16,color="green",shape="box"];489[label="xuu3000",fontsize=16,color="green",shape="box"];490[label="xuu40000",fontsize=16,color="green",shape="box"];491 -> 137[label="",style="dashed", color="red", weight=0]; 491[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];491 -> 685[label="",style="dashed", color="magenta", weight=3]; 491 -> 686[label="",style="dashed", color="magenta", weight=3]; 492 -> 138[label="",style="dashed", color="red", weight=0]; 492[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];492 -> 687[label="",style="dashed", color="magenta", weight=3]; 492 -> 688[label="",style="dashed", color="magenta", weight=3]; 493 -> 139[label="",style="dashed", color="red", weight=0]; 493[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];493 -> 689[label="",style="dashed", color="magenta", weight=3]; 493 -> 690[label="",style="dashed", color="magenta", weight=3]; 494 -> 140[label="",style="dashed", color="red", weight=0]; 494[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];494 -> 691[label="",style="dashed", color="magenta", weight=3]; 494 -> 692[label="",style="dashed", color="magenta", weight=3]; 495 -> 141[label="",style="dashed", color="red", weight=0]; 495[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];495 -> 693[label="",style="dashed", color="magenta", weight=3]; 495 -> 694[label="",style="dashed", color="magenta", weight=3]; 496 -> 142[label="",style="dashed", color="red", weight=0]; 496[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];496 -> 695[label="",style="dashed", color="magenta", weight=3]; 496 -> 696[label="",style="dashed", color="magenta", weight=3]; 497 -> 143[label="",style="dashed", color="red", weight=0]; 497[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];497 -> 697[label="",style="dashed", color="magenta", weight=3]; 497 -> 698[label="",style="dashed", color="magenta", weight=3]; 498 -> 144[label="",style="dashed", color="red", weight=0]; 498[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];498 -> 699[label="",style="dashed", color="magenta", weight=3]; 498 -> 700[label="",style="dashed", color="magenta", weight=3]; 499 -> 145[label="",style="dashed", color="red", weight=0]; 499[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];499 -> 701[label="",style="dashed", color="magenta", weight=3]; 499 -> 702[label="",style="dashed", color="magenta", weight=3]; 500 -> 146[label="",style="dashed", color="red", weight=0]; 500[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];500 -> 703[label="",style="dashed", color="magenta", weight=3]; 500 -> 704[label="",style="dashed", color="magenta", weight=3]; 501 -> 147[label="",style="dashed", color="red", weight=0]; 501[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];501 -> 705[label="",style="dashed", color="magenta", weight=3]; 501 -> 706[label="",style="dashed", color="magenta", weight=3]; 502 -> 148[label="",style="dashed", color="red", weight=0]; 502[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];502 -> 707[label="",style="dashed", color="magenta", weight=3]; 502 -> 708[label="",style="dashed", color="magenta", weight=3]; 503 -> 149[label="",style="dashed", color="red", weight=0]; 503[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];503 -> 709[label="",style="dashed", color="magenta", weight=3]; 503 -> 710[label="",style="dashed", color="magenta", weight=3]; 504 -> 150[label="",style="dashed", color="red", weight=0]; 504[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];504 -> 711[label="",style="dashed", color="magenta", weight=3]; 504 -> 712[label="",style="dashed", color="magenta", weight=3]; 505 -> 137[label="",style="dashed", color="red", weight=0]; 505[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];505 -> 713[label="",style="dashed", color="magenta", weight=3]; 505 -> 714[label="",style="dashed", color="magenta", weight=3]; 506 -> 138[label="",style="dashed", color="red", weight=0]; 506[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];506 -> 715[label="",style="dashed", color="magenta", weight=3]; 506 -> 716[label="",style="dashed", color="magenta", weight=3]; 507 -> 139[label="",style="dashed", color="red", weight=0]; 507[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];507 -> 717[label="",style="dashed", color="magenta", weight=3]; 507 -> 718[label="",style="dashed", color="magenta", weight=3]; 508 -> 140[label="",style="dashed", color="red", weight=0]; 508[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];508 -> 719[label="",style="dashed", color="magenta", weight=3]; 508 -> 720[label="",style="dashed", color="magenta", weight=3]; 509 -> 141[label="",style="dashed", color="red", weight=0]; 509[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];509 -> 721[label="",style="dashed", color="magenta", weight=3]; 509 -> 722[label="",style="dashed", color="magenta", weight=3]; 510 -> 142[label="",style="dashed", color="red", weight=0]; 510[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];510 -> 723[label="",style="dashed", color="magenta", weight=3]; 510 -> 724[label="",style="dashed", color="magenta", weight=3]; 511 -> 143[label="",style="dashed", color="red", weight=0]; 511[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];511 -> 725[label="",style="dashed", color="magenta", weight=3]; 511 -> 726[label="",style="dashed", color="magenta", weight=3]; 512 -> 144[label="",style="dashed", color="red", weight=0]; 512[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];512 -> 727[label="",style="dashed", color="magenta", weight=3]; 512 -> 728[label="",style="dashed", color="magenta", weight=3]; 513 -> 145[label="",style="dashed", color="red", weight=0]; 513[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];513 -> 729[label="",style="dashed", color="magenta", weight=3]; 513 -> 730[label="",style="dashed", color="magenta", weight=3]; 514 -> 146[label="",style="dashed", color="red", weight=0]; 514[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];514 -> 731[label="",style="dashed", color="magenta", weight=3]; 514 -> 732[label="",style="dashed", color="magenta", weight=3]; 515 -> 147[label="",style="dashed", color="red", weight=0]; 515[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];515 -> 733[label="",style="dashed", color="magenta", weight=3]; 515 -> 734[label="",style="dashed", color="magenta", weight=3]; 516 -> 148[label="",style="dashed", color="red", weight=0]; 516[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];516 -> 735[label="",style="dashed", color="magenta", weight=3]; 516 -> 736[label="",style="dashed", color="magenta", weight=3]; 517 -> 149[label="",style="dashed", color="red", weight=0]; 517[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];517 -> 737[label="",style="dashed", color="magenta", weight=3]; 517 -> 738[label="",style="dashed", color="magenta", weight=3]; 518 -> 150[label="",style="dashed", color="red", weight=0]; 518[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];518 -> 739[label="",style="dashed", color="magenta", weight=3]; 518 -> 740[label="",style="dashed", color="magenta", weight=3]; 519 -> 137[label="",style="dashed", color="red", weight=0]; 519[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];519 -> 741[label="",style="dashed", color="magenta", weight=3]; 519 -> 742[label="",style="dashed", color="magenta", weight=3]; 520 -> 138[label="",style="dashed", color="red", weight=0]; 520[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];520 -> 743[label="",style="dashed", color="magenta", weight=3]; 520 -> 744[label="",style="dashed", color="magenta", weight=3]; 521 -> 139[label="",style="dashed", color="red", weight=0]; 521[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];521 -> 745[label="",style="dashed", color="magenta", weight=3]; 521 -> 746[label="",style="dashed", color="magenta", weight=3]; 522 -> 140[label="",style="dashed", color="red", weight=0]; 522[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];522 -> 747[label="",style="dashed", color="magenta", weight=3]; 522 -> 748[label="",style="dashed", color="magenta", weight=3]; 523 -> 141[label="",style="dashed", color="red", weight=0]; 523[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];523 -> 749[label="",style="dashed", color="magenta", weight=3]; 523 -> 750[label="",style="dashed", color="magenta", weight=3]; 524 -> 142[label="",style="dashed", color="red", weight=0]; 524[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];524 -> 751[label="",style="dashed", color="magenta", weight=3]; 524 -> 752[label="",style="dashed", color="magenta", weight=3]; 525 -> 143[label="",style="dashed", color="red", weight=0]; 525[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];525 -> 753[label="",style="dashed", color="magenta", weight=3]; 525 -> 754[label="",style="dashed", color="magenta", weight=3]; 526 -> 144[label="",style="dashed", color="red", weight=0]; 526[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];526 -> 755[label="",style="dashed", color="magenta", weight=3]; 526 -> 756[label="",style="dashed", color="magenta", weight=3]; 527 -> 145[label="",style="dashed", color="red", weight=0]; 527[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];527 -> 757[label="",style="dashed", color="magenta", weight=3]; 527 -> 758[label="",style="dashed", color="magenta", weight=3]; 528 -> 146[label="",style="dashed", color="red", weight=0]; 528[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];528 -> 759[label="",style="dashed", color="magenta", weight=3]; 528 -> 760[label="",style="dashed", color="magenta", weight=3]; 529 -> 147[label="",style="dashed", color="red", weight=0]; 529[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];529 -> 761[label="",style="dashed", color="magenta", weight=3]; 529 -> 762[label="",style="dashed", color="magenta", weight=3]; 530 -> 148[label="",style="dashed", color="red", weight=0]; 530[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];530 -> 763[label="",style="dashed", color="magenta", weight=3]; 530 -> 764[label="",style="dashed", color="magenta", weight=3]; 531 -> 149[label="",style="dashed", color="red", weight=0]; 531[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];531 -> 765[label="",style="dashed", color="magenta", weight=3]; 531 -> 766[label="",style="dashed", color="magenta", weight=3]; 532 -> 150[label="",style="dashed", color="red", weight=0]; 532[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];532 -> 767[label="",style="dashed", color="magenta", weight=3]; 532 -> 768[label="",style="dashed", color="magenta", weight=3]; 533[label="xuu3001",fontsize=16,color="green",shape="box"];534[label="xuu40001",fontsize=16,color="green",shape="box"];535 -> 139[label="",style="dashed", color="red", weight=0]; 535[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];535 -> 769[label="",style="dashed", color="magenta", weight=3]; 535 -> 770[label="",style="dashed", color="magenta", weight=3]; 536 -> 150[label="",style="dashed", color="red", weight=0]; 536[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];536 -> 771[label="",style="dashed", color="magenta", weight=3]; 536 -> 772[label="",style="dashed", color="magenta", weight=3]; 537 -> 139[label="",style="dashed", color="red", weight=0]; 537[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];537 -> 773[label="",style="dashed", color="magenta", weight=3]; 537 -> 774[label="",style="dashed", color="magenta", weight=3]; 538 -> 150[label="",style="dashed", color="red", weight=0]; 538[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];538 -> 775[label="",style="dashed", color="magenta", weight=3]; 538 -> 776[label="",style="dashed", color="magenta", weight=3]; 539[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];3047[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];539 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 777[label="",style="solid", color="burlywood", weight=3]; 3048[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];539 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 778[label="",style="solid", color="burlywood", weight=3]; 540[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];3049[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];540 -> 3049[label="",style="solid", color="burlywood", weight=9]; 3049 -> 779[label="",style="solid", color="burlywood", weight=3]; 3050[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];540 -> 3050[label="",style="solid", color="burlywood", weight=9]; 3050 -> 780[label="",style="solid", color="burlywood", weight=3]; 541 -> 375[label="",style="dashed", color="red", weight=0]; 541[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];541 -> 781[label="",style="dashed", color="magenta", weight=3]; 541 -> 782[label="",style="dashed", color="magenta", weight=3]; 542 -> 375[label="",style="dashed", color="red", weight=0]; 542[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];542 -> 783[label="",style="dashed", color="magenta", weight=3]; 542 -> 784[label="",style="dashed", color="magenta", weight=3]; 543[label="xuu3000",fontsize=16,color="green",shape="box"];544[label="xuu40000",fontsize=16,color="green",shape="box"];545[label="xuu3000",fontsize=16,color="green",shape="box"];546[label="xuu40000",fontsize=16,color="green",shape="box"];547[label="xuu3000",fontsize=16,color="green",shape="box"];548[label="xuu40000",fontsize=16,color="green",shape="box"];549[label="xuu3000",fontsize=16,color="green",shape="box"];550[label="xuu40000",fontsize=16,color="green",shape="box"];551[label="xuu3000",fontsize=16,color="green",shape="box"];552[label="xuu40000",fontsize=16,color="green",shape="box"];553[label="xuu3000",fontsize=16,color="green",shape="box"];554[label="xuu40000",fontsize=16,color="green",shape="box"];555[label="xuu3000",fontsize=16,color="green",shape="box"];556[label="xuu40000",fontsize=16,color="green",shape="box"];557[label="xuu3000",fontsize=16,color="green",shape="box"];558[label="xuu40000",fontsize=16,color="green",shape="box"];559[label="xuu3000",fontsize=16,color="green",shape="box"];560[label="xuu40000",fontsize=16,color="green",shape="box"];561[label="xuu3000",fontsize=16,color="green",shape="box"];562[label="xuu40000",fontsize=16,color="green",shape="box"];563[label="xuu3000",fontsize=16,color="green",shape="box"];564[label="xuu40000",fontsize=16,color="green",shape="box"];565[label="xuu3000",fontsize=16,color="green",shape="box"];566[label="xuu40000",fontsize=16,color="green",shape="box"];567[label="xuu3000",fontsize=16,color="green",shape="box"];568[label="xuu40000",fontsize=16,color="green",shape="box"];569[label="xuu3000",fontsize=16,color="green",shape="box"];570[label="xuu40000",fontsize=16,color="green",shape="box"];1288[label="compare1 xuu46 xuu48 (xuu46 <= xuu48)",fontsize=16,color="burlywood",shape="box"];3051[label="xuu46/(xuu460,xuu461)",fontsize=10,color="white",style="solid",shape="box"];1288 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 1330[label="",style="solid", color="burlywood", weight=3]; 1289[label="EQ",fontsize=16,color="green",shape="box"];1290[label="xuu36",fontsize=16,color="green",shape="box"];1291[label="xuu34",fontsize=16,color="green",shape="box"];1292[label="xuu36",fontsize=16,color="green",shape="box"];1293[label="xuu34",fontsize=16,color="green",shape="box"];1294[label="xuu36",fontsize=16,color="green",shape="box"];1295[label="xuu34",fontsize=16,color="green",shape="box"];1296[label="xuu36",fontsize=16,color="green",shape="box"];1297[label="xuu34",fontsize=16,color="green",shape="box"];1298[label="xuu36",fontsize=16,color="green",shape="box"];1299[label="xuu34",fontsize=16,color="green",shape="box"];1300[label="xuu36",fontsize=16,color="green",shape="box"];1301[label="xuu34",fontsize=16,color="green",shape="box"];1302[label="xuu36",fontsize=16,color="green",shape="box"];1303[label="xuu34",fontsize=16,color="green",shape="box"];1304[label="xuu36",fontsize=16,color="green",shape="box"];1305[label="xuu34",fontsize=16,color="green",shape="box"];1306[label="xuu36",fontsize=16,color="green",shape="box"];1307[label="xuu34",fontsize=16,color="green",shape="box"];1308[label="xuu36",fontsize=16,color="green",shape="box"];1309[label="xuu34",fontsize=16,color="green",shape="box"];1310[label="xuu36",fontsize=16,color="green",shape="box"];1311[label="xuu34",fontsize=16,color="green",shape="box"];1312[label="xuu36",fontsize=16,color="green",shape="box"];1313[label="xuu34",fontsize=16,color="green",shape="box"];1314[label="xuu36",fontsize=16,color="green",shape="box"];1315[label="xuu34",fontsize=16,color="green",shape="box"];1316[label="xuu36",fontsize=16,color="green",shape="box"];1317[label="xuu34",fontsize=16,color="green",shape="box"];601 -> 1250[label="",style="dashed", color="red", weight=0]; 601[label="compare2 (xuu22,xuu23) (xuu16,xuu17) ((xuu22,xuu23) == (xuu16,xuu17))",fontsize=16,color="magenta"];601 -> 1260[label="",style="dashed", color="magenta", weight=3]; 601 -> 1261[label="",style="dashed", color="magenta", weight=3]; 601 -> 1262[label="",style="dashed", color="magenta", weight=3]; 602[label="FiniteMap.Branch (xuu22,xuu23) (FiniteMap.addListToFM0 xuu18 xuu24) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];602 -> 791[label="",style="dashed", color="green", weight=3]; 603[label="xuu21",fontsize=16,color="green",shape="box"];604[label="xuu24",fontsize=16,color="green",shape="box"];605[label="(xuu22,xuu23)",fontsize=16,color="green",shape="box"];609 -> 142[label="",style="dashed", color="red", weight=0]; 609[label="compare (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 + FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];609 -> 792[label="",style="dashed", color="magenta", weight=3]; 609 -> 793[label="",style="dashed", color="magenta", weight=3]; 610[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 False",fontsize=16,color="black",shape="box"];610 -> 794[label="",style="solid", color="black", weight=3]; 611[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 True",fontsize=16,color="black",shape="box"];611 -> 795[label="",style="solid", color="black", weight=3]; 612[label="primMulInt xuu40001 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3052[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];612 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 796[label="",style="solid", color="burlywood", weight=3]; 3053[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];612 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 797[label="",style="solid", color="burlywood", weight=3]; 613[label="xuu3001",fontsize=16,color="green",shape="box"];614[label="xuu40000",fontsize=16,color="green",shape="box"];615[label="xuu3000",fontsize=16,color="green",shape="box"];616[label="xuu40000",fontsize=16,color="green",shape="box"];617[label="xuu3000",fontsize=16,color="green",shape="box"];618[label="xuu40000",fontsize=16,color="green",shape="box"];619[label="xuu3000",fontsize=16,color="green",shape="box"];620[label="xuu40000",fontsize=16,color="green",shape="box"];621[label="xuu3000",fontsize=16,color="green",shape="box"];622[label="xuu40000",fontsize=16,color="green",shape="box"];623[label="xuu3000",fontsize=16,color="green",shape="box"];624[label="xuu40000",fontsize=16,color="green",shape="box"];625[label="xuu3000",fontsize=16,color="green",shape="box"];626[label="xuu40000",fontsize=16,color="green",shape="box"];627[label="xuu3000",fontsize=16,color="green",shape="box"];628[label="xuu40000",fontsize=16,color="green",shape="box"];629[label="xuu3000",fontsize=16,color="green",shape="box"];630[label="xuu40000",fontsize=16,color="green",shape="box"];631[label="xuu3000",fontsize=16,color="green",shape="box"];632[label="xuu40000",fontsize=16,color="green",shape="box"];633[label="xuu3000",fontsize=16,color="green",shape="box"];634[label="xuu40000",fontsize=16,color="green",shape="box"];635[label="xuu3000",fontsize=16,color="green",shape="box"];636[label="xuu40000",fontsize=16,color="green",shape="box"];637[label="xuu3000",fontsize=16,color="green",shape="box"];638[label="xuu40000",fontsize=16,color="green",shape="box"];639[label="xuu3000",fontsize=16,color="green",shape="box"];640[label="xuu40000",fontsize=16,color="green",shape="box"];641[label="xuu3000",fontsize=16,color="green",shape="box"];642[label="xuu40000",fontsize=16,color="green",shape="box"];643 -> 137[label="",style="dashed", color="red", weight=0]; 643[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];643 -> 798[label="",style="dashed", color="magenta", weight=3]; 643 -> 799[label="",style="dashed", color="magenta", weight=3]; 644 -> 138[label="",style="dashed", color="red", weight=0]; 644[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];644 -> 800[label="",style="dashed", color="magenta", weight=3]; 644 -> 801[label="",style="dashed", color="magenta", weight=3]; 645 -> 139[label="",style="dashed", color="red", weight=0]; 645[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];645 -> 802[label="",style="dashed", color="magenta", weight=3]; 645 -> 803[label="",style="dashed", color="magenta", weight=3]; 646 -> 140[label="",style="dashed", color="red", weight=0]; 646[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];646 -> 804[label="",style="dashed", color="magenta", weight=3]; 646 -> 805[label="",style="dashed", color="magenta", weight=3]; 647 -> 141[label="",style="dashed", color="red", weight=0]; 647[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];647 -> 806[label="",style="dashed", color="magenta", weight=3]; 647 -> 807[label="",style="dashed", color="magenta", weight=3]; 648 -> 142[label="",style="dashed", color="red", weight=0]; 648[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];648 -> 808[label="",style="dashed", color="magenta", weight=3]; 648 -> 809[label="",style="dashed", color="magenta", weight=3]; 649 -> 143[label="",style="dashed", color="red", weight=0]; 649[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];649 -> 810[label="",style="dashed", color="magenta", weight=3]; 649 -> 811[label="",style="dashed", color="magenta", weight=3]; 650 -> 144[label="",style="dashed", color="red", weight=0]; 650[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];650 -> 812[label="",style="dashed", color="magenta", weight=3]; 650 -> 813[label="",style="dashed", color="magenta", weight=3]; 651 -> 145[label="",style="dashed", color="red", weight=0]; 651[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];651 -> 814[label="",style="dashed", color="magenta", weight=3]; 651 -> 815[label="",style="dashed", color="magenta", weight=3]; 652 -> 146[label="",style="dashed", color="red", weight=0]; 652[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];652 -> 816[label="",style="dashed", color="magenta", weight=3]; 652 -> 817[label="",style="dashed", color="magenta", weight=3]; 653 -> 147[label="",style="dashed", color="red", weight=0]; 653[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];653 -> 818[label="",style="dashed", color="magenta", weight=3]; 653 -> 819[label="",style="dashed", color="magenta", weight=3]; 654 -> 148[label="",style="dashed", color="red", weight=0]; 654[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];654 -> 820[label="",style="dashed", color="magenta", weight=3]; 654 -> 821[label="",style="dashed", color="magenta", weight=3]; 655 -> 149[label="",style="dashed", color="red", weight=0]; 655[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];655 -> 822[label="",style="dashed", color="magenta", weight=3]; 655 -> 823[label="",style="dashed", color="magenta", weight=3]; 656 -> 150[label="",style="dashed", color="red", weight=0]; 656[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];656 -> 824[label="",style="dashed", color="magenta", weight=3]; 656 -> 825[label="",style="dashed", color="magenta", weight=3]; 657 -> 137[label="",style="dashed", color="red", weight=0]; 657[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];657 -> 826[label="",style="dashed", color="magenta", weight=3]; 657 -> 827[label="",style="dashed", color="magenta", weight=3]; 658 -> 138[label="",style="dashed", color="red", weight=0]; 658[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];658 -> 828[label="",style="dashed", color="magenta", weight=3]; 658 -> 829[label="",style="dashed", color="magenta", weight=3]; 659 -> 139[label="",style="dashed", color="red", weight=0]; 659[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];659 -> 830[label="",style="dashed", color="magenta", weight=3]; 659 -> 831[label="",style="dashed", color="magenta", weight=3]; 660 -> 140[label="",style="dashed", color="red", weight=0]; 660[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];660 -> 832[label="",style="dashed", color="magenta", weight=3]; 660 -> 833[label="",style="dashed", color="magenta", weight=3]; 661 -> 141[label="",style="dashed", color="red", weight=0]; 661[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];661 -> 834[label="",style="dashed", color="magenta", weight=3]; 661 -> 835[label="",style="dashed", color="magenta", weight=3]; 662 -> 142[label="",style="dashed", color="red", weight=0]; 662[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];662 -> 836[label="",style="dashed", color="magenta", weight=3]; 662 -> 837[label="",style="dashed", color="magenta", weight=3]; 663 -> 143[label="",style="dashed", color="red", weight=0]; 663[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];663 -> 838[label="",style="dashed", color="magenta", weight=3]; 663 -> 839[label="",style="dashed", color="magenta", weight=3]; 664 -> 144[label="",style="dashed", color="red", weight=0]; 664[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];664 -> 840[label="",style="dashed", color="magenta", weight=3]; 664 -> 841[label="",style="dashed", color="magenta", weight=3]; 665 -> 145[label="",style="dashed", color="red", weight=0]; 665[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];665 -> 842[label="",style="dashed", color="magenta", weight=3]; 665 -> 843[label="",style="dashed", color="magenta", weight=3]; 666 -> 146[label="",style="dashed", color="red", weight=0]; 666[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];666 -> 844[label="",style="dashed", color="magenta", weight=3]; 666 -> 845[label="",style="dashed", color="magenta", weight=3]; 667 -> 147[label="",style="dashed", color="red", weight=0]; 667[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];667 -> 846[label="",style="dashed", color="magenta", weight=3]; 667 -> 847[label="",style="dashed", color="magenta", weight=3]; 668 -> 148[label="",style="dashed", color="red", weight=0]; 668[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];668 -> 848[label="",style="dashed", color="magenta", weight=3]; 668 -> 849[label="",style="dashed", color="magenta", weight=3]; 669 -> 149[label="",style="dashed", color="red", weight=0]; 669[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];669 -> 850[label="",style="dashed", color="magenta", weight=3]; 669 -> 851[label="",style="dashed", color="magenta", weight=3]; 670 -> 150[label="",style="dashed", color="red", weight=0]; 670[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];670 -> 852[label="",style="dashed", color="magenta", weight=3]; 670 -> 853[label="",style="dashed", color="magenta", weight=3]; 671[label="False",fontsize=16,color="green",shape="box"];672[label="xuu69",fontsize=16,color="green",shape="box"];673 -> 336[label="",style="dashed", color="red", weight=0]; 673[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];673 -> 854[label="",style="dashed", color="magenta", weight=3]; 673 -> 855[label="",style="dashed", color="magenta", weight=3]; 674[label="False",fontsize=16,color="green",shape="box"];675[label="False",fontsize=16,color="green",shape="box"];676[label="True",fontsize=16,color="green",shape="box"];677[label="False",fontsize=16,color="green",shape="box"];678[label="True",fontsize=16,color="green",shape="box"];679 -> 336[label="",style="dashed", color="red", weight=0]; 679[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];679 -> 856[label="",style="dashed", color="magenta", weight=3]; 679 -> 857[label="",style="dashed", color="magenta", weight=3]; 680[label="False",fontsize=16,color="green",shape="box"];681[label="False",fontsize=16,color="green",shape="box"];682[label="True",fontsize=16,color="green",shape="box"];683[label="False",fontsize=16,color="green",shape="box"];684[label="True",fontsize=16,color="green",shape="box"];685[label="xuu3000",fontsize=16,color="green",shape="box"];686[label="xuu40000",fontsize=16,color="green",shape="box"];687[label="xuu3000",fontsize=16,color="green",shape="box"];688[label="xuu40000",fontsize=16,color="green",shape="box"];689[label="xuu3000",fontsize=16,color="green",shape="box"];690[label="xuu40000",fontsize=16,color="green",shape="box"];691[label="xuu3000",fontsize=16,color="green",shape="box"];692[label="xuu40000",fontsize=16,color="green",shape="box"];693[label="xuu3000",fontsize=16,color="green",shape="box"];694[label="xuu40000",fontsize=16,color="green",shape="box"];695[label="xuu3000",fontsize=16,color="green",shape="box"];696[label="xuu40000",fontsize=16,color="green",shape="box"];697[label="xuu3000",fontsize=16,color="green",shape="box"];698[label="xuu40000",fontsize=16,color="green",shape="box"];699[label="xuu3000",fontsize=16,color="green",shape="box"];700[label="xuu40000",fontsize=16,color="green",shape="box"];701[label="xuu3000",fontsize=16,color="green",shape="box"];702[label="xuu40000",fontsize=16,color="green",shape="box"];703[label="xuu3000",fontsize=16,color="green",shape="box"];704[label="xuu40000",fontsize=16,color="green",shape="box"];705[label="xuu3000",fontsize=16,color="green",shape="box"];706[label="xuu40000",fontsize=16,color="green",shape="box"];707[label="xuu3000",fontsize=16,color="green",shape="box"];708[label="xuu40000",fontsize=16,color="green",shape="box"];709[label="xuu3000",fontsize=16,color="green",shape="box"];710[label="xuu40000",fontsize=16,color="green",shape="box"];711[label="xuu3000",fontsize=16,color="green",shape="box"];712[label="xuu40000",fontsize=16,color="green",shape="box"];713[label="xuu3001",fontsize=16,color="green",shape="box"];714[label="xuu40001",fontsize=16,color="green",shape="box"];715[label="xuu3001",fontsize=16,color="green",shape="box"];716[label="xuu40001",fontsize=16,color="green",shape="box"];717[label="xuu3001",fontsize=16,color="green",shape="box"];718[label="xuu40001",fontsize=16,color="green",shape="box"];719[label="xuu3001",fontsize=16,color="green",shape="box"];720[label="xuu40001",fontsize=16,color="green",shape="box"];721[label="xuu3001",fontsize=16,color="green",shape="box"];722[label="xuu40001",fontsize=16,color="green",shape="box"];723[label="xuu3001",fontsize=16,color="green",shape="box"];724[label="xuu40001",fontsize=16,color="green",shape="box"];725[label="xuu3001",fontsize=16,color="green",shape="box"];726[label="xuu40001",fontsize=16,color="green",shape="box"];727[label="xuu3001",fontsize=16,color="green",shape="box"];728[label="xuu40001",fontsize=16,color="green",shape="box"];729[label="xuu3001",fontsize=16,color="green",shape="box"];730[label="xuu40001",fontsize=16,color="green",shape="box"];731[label="xuu3001",fontsize=16,color="green",shape="box"];732[label="xuu40001",fontsize=16,color="green",shape="box"];733[label="xuu3001",fontsize=16,color="green",shape="box"];734[label="xuu40001",fontsize=16,color="green",shape="box"];735[label="xuu3001",fontsize=16,color="green",shape="box"];736[label="xuu40001",fontsize=16,color="green",shape="box"];737[label="xuu3001",fontsize=16,color="green",shape="box"];738[label="xuu40001",fontsize=16,color="green",shape="box"];739[label="xuu3001",fontsize=16,color="green",shape="box"];740[label="xuu40001",fontsize=16,color="green",shape="box"];741[label="xuu3000",fontsize=16,color="green",shape="box"];742[label="xuu40000",fontsize=16,color="green",shape="box"];743[label="xuu3000",fontsize=16,color="green",shape="box"];744[label="xuu40000",fontsize=16,color="green",shape="box"];745[label="xuu3000",fontsize=16,color="green",shape="box"];746[label="xuu40000",fontsize=16,color="green",shape="box"];747[label="xuu3000",fontsize=16,color="green",shape="box"];748[label="xuu40000",fontsize=16,color="green",shape="box"];749[label="xuu3000",fontsize=16,color="green",shape="box"];750[label="xuu40000",fontsize=16,color="green",shape="box"];751[label="xuu3000",fontsize=16,color="green",shape="box"];752[label="xuu40000",fontsize=16,color="green",shape="box"];753[label="xuu3000",fontsize=16,color="green",shape="box"];754[label="xuu40000",fontsize=16,color="green",shape="box"];755[label="xuu3000",fontsize=16,color="green",shape="box"];756[label="xuu40000",fontsize=16,color="green",shape="box"];757[label="xuu3000",fontsize=16,color="green",shape="box"];758[label="xuu40000",fontsize=16,color="green",shape="box"];759[label="xuu3000",fontsize=16,color="green",shape="box"];760[label="xuu40000",fontsize=16,color="green",shape="box"];761[label="xuu3000",fontsize=16,color="green",shape="box"];762[label="xuu40000",fontsize=16,color="green",shape="box"];763[label="xuu3000",fontsize=16,color="green",shape="box"];764[label="xuu40000",fontsize=16,color="green",shape="box"];765[label="xuu3000",fontsize=16,color="green",shape="box"];766[label="xuu40000",fontsize=16,color="green",shape="box"];767[label="xuu3000",fontsize=16,color="green",shape="box"];768[label="xuu40000",fontsize=16,color="green",shape="box"];769[label="xuu3000",fontsize=16,color="green",shape="box"];770[label="xuu40000",fontsize=16,color="green",shape="box"];771[label="xuu3000",fontsize=16,color="green",shape="box"];772[label="xuu40000",fontsize=16,color="green",shape="box"];773[label="xuu3001",fontsize=16,color="green",shape="box"];774[label="xuu40001",fontsize=16,color="green",shape="box"];775[label="xuu3001",fontsize=16,color="green",shape="box"];776[label="xuu40001",fontsize=16,color="green",shape="box"];777[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];777 -> 858[label="",style="solid", color="black", weight=3]; 778[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];778 -> 859[label="",style="solid", color="black", weight=3]; 779[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];779 -> 860[label="",style="solid", color="black", weight=3]; 780[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];780 -> 861[label="",style="solid", color="black", weight=3]; 781[label="xuu3000",fontsize=16,color="green",shape="box"];782[label="xuu40001",fontsize=16,color="green",shape="box"];783[label="xuu3001",fontsize=16,color="green",shape="box"];784[label="xuu40000",fontsize=16,color="green",shape="box"];1330[label="compare1 (xuu460,xuu461) xuu48 ((xuu460,xuu461) <= xuu48)",fontsize=16,color="burlywood",shape="box"];3054[label="xuu48/(xuu480,xuu481)",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 1337[label="",style="solid", color="burlywood", weight=3]; 1260[label="(xuu16,xuu17)",fontsize=16,color="green",shape="box"];1261 -> 141[label="",style="dashed", color="red", weight=0]; 1261[label="(xuu22,xuu23) == (xuu16,xuu17)",fontsize=16,color="magenta"];1261 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1262[label="(xuu22,xuu23)",fontsize=16,color="green",shape="box"];791[label="FiniteMap.addListToFM0 xuu18 xuu24",fontsize=16,color="black",shape="box"];791 -> 866[label="",style="solid", color="black", weight=3]; 792[label="LT",fontsize=16,color="green",shape="box"];793[label="compare (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 + FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];793 -> 867[label="",style="solid", color="black", weight=3]; 794 -> 966[label="",style="dashed", color="red", weight=0]; 794[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21)",fontsize=16,color="magenta"];794 -> 967[label="",style="dashed", color="magenta", weight=3]; 795[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="box"];795 -> 870[label="",style="solid", color="black", weight=3]; 796[label="primMulInt (Pos xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];3055[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];796 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 871[label="",style="solid", color="burlywood", weight=3]; 3056[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];796 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 872[label="",style="solid", color="burlywood", weight=3]; 797[label="primMulInt (Neg xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];3057[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];797 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 873[label="",style="solid", color="burlywood", weight=3]; 3058[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];797 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 874[label="",style="solid", color="burlywood", weight=3]; 798[label="xuu3001",fontsize=16,color="green",shape="box"];799[label="xuu40001",fontsize=16,color="green",shape="box"];800[label="xuu3001",fontsize=16,color="green",shape="box"];801[label="xuu40001",fontsize=16,color="green",shape="box"];802[label="xuu3001",fontsize=16,color="green",shape="box"];803[label="xuu40001",fontsize=16,color="green",shape="box"];804[label="xuu3001",fontsize=16,color="green",shape="box"];805[label="xuu40001",fontsize=16,color="green",shape="box"];806[label="xuu3001",fontsize=16,color="green",shape="box"];807[label="xuu40001",fontsize=16,color="green",shape="box"];808[label="xuu3001",fontsize=16,color="green",shape="box"];809[label="xuu40001",fontsize=16,color="green",shape="box"];810[label="xuu3001",fontsize=16,color="green",shape="box"];811[label="xuu40001",fontsize=16,color="green",shape="box"];812[label="xuu3001",fontsize=16,color="green",shape="box"];813[label="xuu40001",fontsize=16,color="green",shape="box"];814[label="xuu3001",fontsize=16,color="green",shape="box"];815[label="xuu40001",fontsize=16,color="green",shape="box"];816[label="xuu3001",fontsize=16,color="green",shape="box"];817[label="xuu40001",fontsize=16,color="green",shape="box"];818[label="xuu3001",fontsize=16,color="green",shape="box"];819[label="xuu40001",fontsize=16,color="green",shape="box"];820[label="xuu3001",fontsize=16,color="green",shape="box"];821[label="xuu40001",fontsize=16,color="green",shape="box"];822[label="xuu3001",fontsize=16,color="green",shape="box"];823[label="xuu40001",fontsize=16,color="green",shape="box"];824[label="xuu3001",fontsize=16,color="green",shape="box"];825[label="xuu40001",fontsize=16,color="green",shape="box"];826[label="xuu3002",fontsize=16,color="green",shape="box"];827[label="xuu40002",fontsize=16,color="green",shape="box"];828[label="xuu3002",fontsize=16,color="green",shape="box"];829[label="xuu40002",fontsize=16,color="green",shape="box"];830[label="xuu3002",fontsize=16,color="green",shape="box"];831[label="xuu40002",fontsize=16,color="green",shape="box"];832[label="xuu3002",fontsize=16,color="green",shape="box"];833[label="xuu40002",fontsize=16,color="green",shape="box"];834[label="xuu3002",fontsize=16,color="green",shape="box"];835[label="xuu40002",fontsize=16,color="green",shape="box"];836[label="xuu3002",fontsize=16,color="green",shape="box"];837[label="xuu40002",fontsize=16,color="green",shape="box"];838[label="xuu3002",fontsize=16,color="green",shape="box"];839[label="xuu40002",fontsize=16,color="green",shape="box"];840[label="xuu3002",fontsize=16,color="green",shape="box"];841[label="xuu40002",fontsize=16,color="green",shape="box"];842[label="xuu3002",fontsize=16,color="green",shape="box"];843[label="xuu40002",fontsize=16,color="green",shape="box"];844[label="xuu3002",fontsize=16,color="green",shape="box"];845[label="xuu40002",fontsize=16,color="green",shape="box"];846[label="xuu3002",fontsize=16,color="green",shape="box"];847[label="xuu40002",fontsize=16,color="green",shape="box"];848[label="xuu3002",fontsize=16,color="green",shape="box"];849[label="xuu40002",fontsize=16,color="green",shape="box"];850[label="xuu3002",fontsize=16,color="green",shape="box"];851[label="xuu40002",fontsize=16,color="green",shape="box"];852[label="xuu3002",fontsize=16,color="green",shape="box"];853[label="xuu40002",fontsize=16,color="green",shape="box"];854[label="xuu30000",fontsize=16,color="green",shape="box"];855[label="xuu400000",fontsize=16,color="green",shape="box"];856[label="xuu30000",fontsize=16,color="green",shape="box"];857[label="xuu400000",fontsize=16,color="green",shape="box"];858 -> 336[label="",style="dashed", color="red", weight=0]; 858[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];858 -> 875[label="",style="dashed", color="magenta", weight=3]; 858 -> 876[label="",style="dashed", color="magenta", weight=3]; 859[label="False",fontsize=16,color="green",shape="box"];860[label="False",fontsize=16,color="green",shape="box"];861[label="True",fontsize=16,color="green",shape="box"];1337[label="compare1 (xuu460,xuu461) (xuu480,xuu481) ((xuu460,xuu461) <= (xuu480,xuu481))",fontsize=16,color="black",shape="box"];1337 -> 1344[label="",style="solid", color="black", weight=3]; 1280[label="(xuu16,xuu17)",fontsize=16,color="green",shape="box"];1281[label="(xuu22,xuu23)",fontsize=16,color="green",shape="box"];866[label="xuu24",fontsize=16,color="green",shape="box"];867[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 + FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];867 -> 910[label="",style="solid", color="black", weight=3]; 967 -> 1215[label="",style="dashed", color="red", weight=0]; 967[label="FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];967 -> 1216[label="",style="dashed", color="magenta", weight=3]; 967 -> 1217[label="",style="dashed", color="magenta", weight=3]; 966[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 xuu86",fontsize=16,color="burlywood",shape="triangle"];3059[label="xuu86/False",fontsize=10,color="white",style="solid",shape="box"];966 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 972[label="",style="solid", color="burlywood", weight=3]; 3060[label="xuu86/True",fontsize=10,color="white",style="solid",shape="box"];966 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 973[label="",style="solid", color="burlywood", weight=3]; 870[label="FiniteMap.mkBranchResult (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="triangle"];870 -> 914[label="",style="solid", color="black", weight=3]; 871[label="primMulInt (Pos xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];871 -> 915[label="",style="solid", color="black", weight=3]; 872[label="primMulInt (Pos xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];872 -> 916[label="",style="solid", color="black", weight=3]; 873[label="primMulInt (Neg xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];873 -> 917[label="",style="solid", color="black", weight=3]; 874[label="primMulInt (Neg xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];874 -> 918[label="",style="solid", color="black", weight=3]; 875[label="xuu30000",fontsize=16,color="green",shape="box"];876[label="xuu400000",fontsize=16,color="green",shape="box"];1344 -> 1372[label="",style="dashed", color="red", weight=0]; 1344[label="compare1 (xuu460,xuu461) (xuu480,xuu481) (xuu460 < xuu480 || xuu460 == xuu480 && xuu461 <= xuu481)",fontsize=16,color="magenta"];1344 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1378[label="",style="dashed", color="magenta", weight=3]; 910[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];910 -> 963[label="",style="solid", color="black", weight=3]; 1216 -> 375[label="",style="dashed", color="red", weight=0]; 1216[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1216 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1217[label="FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="triangle"];1217 -> 1224[label="",style="solid", color="black", weight=3]; 1215[label="xuu95 > xuu94",fontsize=16,color="black",shape="triangle"];1215 -> 1225[label="",style="solid", color="black", weight=3]; 972[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 False",fontsize=16,color="black",shape="box"];972 -> 1062[label="",style="solid", color="black", weight=3]; 973[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 True",fontsize=16,color="black",shape="box"];973 -> 1063[label="",style="solid", color="black", weight=3]; 914[label="FiniteMap.Branch (xuu16,xuu17) xuu18 (FiniteMap.mkBranchUnbox xuu38 (xuu16,xuu17) xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu38 (xuu16,xuu17) xuu21 + FiniteMap.mkBranchRight_size xuu38 (xuu16,xuu17) xuu21)) xuu38 xuu21",fontsize=16,color="green",shape="box"];914 -> 977[label="",style="dashed", color="green", weight=3]; 915[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];915 -> 978[label="",style="dashed", color="green", weight=3]; 916[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];916 -> 979[label="",style="dashed", color="green", weight=3]; 917[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];917 -> 980[label="",style="dashed", color="green", weight=3]; 918[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];918 -> 981[label="",style="dashed", color="green", weight=3]; 1373[label="xuu480",fontsize=16,color="green",shape="box"];1374[label="xuu461",fontsize=16,color="green",shape="box"];1375[label="xuu481",fontsize=16,color="green",shape="box"];1376 -> 391[label="",style="dashed", color="red", weight=0]; 1376[label="xuu460 == xuu480 && xuu461 <= xuu481",fontsize=16,color="magenta"];1376 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1377[label="xuu460",fontsize=16,color="green",shape="box"];1378[label="xuu460 < xuu480",fontsize=16,color="blue",shape="box"];3061[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1387[label="",style="solid", color="blue", weight=3]; 3062[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1388[label="",style="solid", color="blue", weight=3]; 3063[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1389[label="",style="solid", color="blue", weight=3]; 3064[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1390[label="",style="solid", color="blue", weight=3]; 3065[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1391[label="",style="solid", color="blue", weight=3]; 3066[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1392[label="",style="solid", color="blue", weight=3]; 3067[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1393[label="",style="solid", color="blue", weight=3]; 3068[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1394[label="",style="solid", color="blue", weight=3]; 3069[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1395[label="",style="solid", color="blue", weight=3]; 3070[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1396[label="",style="solid", color="blue", weight=3]; 3071[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1397[label="",style="solid", color="blue", weight=3]; 3072[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1398[label="",style="solid", color="blue", weight=3]; 3073[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1399[label="",style="solid", color="blue", weight=3]; 3074[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1400[label="",style="solid", color="blue", weight=3]; 1372[label="compare1 (xuu114,xuu115) (xuu116,xuu117) (xuu118 || xuu119)",fontsize=16,color="burlywood",shape="triangle"];3075[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 1401[label="",style="solid", color="burlywood", weight=3]; 3076[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 1402[label="",style="solid", color="burlywood", weight=3]; 963[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu38) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];3077[label="xuu38/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];963 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 1060[label="",style="solid", color="burlywood", weight=3]; 3078[label="xuu38/FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384",fontsize=10,color="white",style="solid",shape="box"];963 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 1061[label="",style="solid", color="burlywood", weight=3]; 1222 -> 1221[label="",style="dashed", color="red", weight=0]; 1222[label="FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1223[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1223 -> 1243[label="",style="solid", color="black", weight=3]; 1224[label="FiniteMap.sizeFM xuu21",fontsize=16,color="burlywood",shape="triangle"];3079[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1224 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 1244[label="",style="solid", color="burlywood", weight=3]; 3080[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];1224 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 1245[label="",style="solid", color="burlywood", weight=3]; 1225 -> 142[label="",style="dashed", color="red", weight=0]; 1225[label="compare xuu95 xuu94 == GT",fontsize=16,color="magenta"];1225 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1211[label="",style="dashed", color="red", weight=0]; 1062[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 (FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21)",fontsize=16,color="magenta"];1062 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1063[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu16,xuu17) xuu18 xuu38 xuu21 xuu38 xuu21 xuu21",fontsize=16,color="burlywood",shape="box"];3081[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 1102[label="",style="solid", color="burlywood", weight=3]; 3082[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 1103[label="",style="solid", color="burlywood", weight=3]; 977 -> 2679[label="",style="dashed", color="red", weight=0]; 977[label="FiniteMap.mkBranchUnbox xuu38 (xuu16,xuu17) xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu38 (xuu16,xuu17) xuu21 + FiniteMap.mkBranchRight_size xuu38 (xuu16,xuu17) xuu21)",fontsize=16,color="magenta"];977 -> 2680[label="",style="dashed", color="magenta", weight=3]; 977 -> 2681[label="",style="dashed", color="magenta", weight=3]; 977 -> 2682[label="",style="dashed", color="magenta", weight=3]; 977 -> 2683[label="",style="dashed", color="magenta", weight=3]; 978[label="primMulNat xuu400010 xuu30000",fontsize=16,color="burlywood",shape="triangle"];3083[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];978 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 1069[label="",style="solid", color="burlywood", weight=3]; 3084[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];978 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 1070[label="",style="solid", color="burlywood", weight=3]; 979 -> 978[label="",style="dashed", color="red", weight=0]; 979[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];979 -> 1071[label="",style="dashed", color="magenta", weight=3]; 980 -> 978[label="",style="dashed", color="red", weight=0]; 980[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];980 -> 1072[label="",style="dashed", color="magenta", weight=3]; 981 -> 978[label="",style="dashed", color="red", weight=0]; 981[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];981 -> 1073[label="",style="dashed", color="magenta", weight=3]; 981 -> 1074[label="",style="dashed", color="magenta", weight=3]; 1385[label="xuu460 == xuu480",fontsize=16,color="blue",shape="box"];3085[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 1418[label="",style="solid", color="blue", weight=3]; 3086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1419[label="",style="solid", color="blue", weight=3]; 3087[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1420[label="",style="solid", color="blue", weight=3]; 3088[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1421[label="",style="solid", color="blue", weight=3]; 3089[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1422[label="",style="solid", color="blue", weight=3]; 3090[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1423[label="",style="solid", color="blue", weight=3]; 3091[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1424[label="",style="solid", color="blue", weight=3]; 3092[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1425[label="",style="solid", color="blue", weight=3]; 3093[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1426[label="",style="solid", color="blue", weight=3]; 3094[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1427[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1428[label="",style="solid", color="blue", weight=3]; 3096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1429[label="",style="solid", color="blue", weight=3]; 3097[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1430[label="",style="solid", color="blue", weight=3]; 3098[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1431[label="",style="solid", color="blue", weight=3]; 1386[label="xuu461 <= xuu481",fontsize=16,color="blue",shape="box"];3099[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1432[label="",style="solid", color="blue", weight=3]; 3100[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1433[label="",style="solid", color="blue", weight=3]; 3101[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1434[label="",style="solid", color="blue", weight=3]; 3102[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1435[label="",style="solid", color="blue", weight=3]; 3103[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1436[label="",style="solid", color="blue", weight=3]; 3104[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1437[label="",style="solid", color="blue", weight=3]; 3105[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1438[label="",style="solid", color="blue", weight=3]; 3106[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1439[label="",style="solid", color="blue", weight=3]; 3107[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1440[label="",style="solid", color="blue", weight=3]; 3108[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1441[label="",style="solid", color="blue", weight=3]; 3109[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1442[label="",style="solid", color="blue", weight=3]; 3110[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1443[label="",style="solid", color="blue", weight=3]; 3111[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1444[label="",style="solid", color="blue", weight=3]; 3112[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1445[label="",style="solid", color="blue", weight=3]; 1387[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1387 -> 1446[label="",style="solid", color="black", weight=3]; 1388[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1388 -> 1447[label="",style="solid", color="black", weight=3]; 1389[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1389 -> 1448[label="",style="solid", color="black", weight=3]; 1390[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1390 -> 1449[label="",style="solid", color="black", weight=3]; 1391[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1391 -> 1450[label="",style="solid", color="black", weight=3]; 1392[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1392 -> 1451[label="",style="solid", color="black", weight=3]; 1393[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1393 -> 1452[label="",style="solid", color="black", weight=3]; 1394[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1394 -> 1453[label="",style="solid", color="black", weight=3]; 1395[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1395 -> 1454[label="",style="solid", color="black", weight=3]; 1396[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1396 -> 1455[label="",style="solid", color="black", weight=3]; 1397[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1397 -> 1456[label="",style="solid", color="black", weight=3]; 1398[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1398 -> 1457[label="",style="solid", color="black", weight=3]; 1399[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1399 -> 1458[label="",style="solid", color="black", weight=3]; 1400[label="xuu460 < xuu480",fontsize=16,color="black",shape="triangle"];1400 -> 1459[label="",style="solid", color="black", weight=3]; 1401[label="compare1 (xuu114,xuu115) (xuu116,xuu117) (False || xuu119)",fontsize=16,color="black",shape="box"];1401 -> 1460[label="",style="solid", color="black", weight=3]; 1402[label="compare1 (xuu114,xuu115) (xuu116,xuu117) (True || xuu119)",fontsize=16,color="black",shape="box"];1402 -> 1461[label="",style="solid", color="black", weight=3]; 1060[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 FiniteMap.EmptyFM xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1060 -> 1129[label="",style="solid", color="black", weight=3]; 1061[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1061 -> 1130[label="",style="solid", color="black", weight=3]; 1221[label="FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="triangle"];1221 -> 1230[label="",style="solid", color="black", weight=3]; 1243[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1244[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1244 -> 1282[label="",style="solid", color="black", weight=3]; 1245[label="FiniteMap.sizeFM (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1245 -> 1283[label="",style="solid", color="black", weight=3]; 1246[label="GT",fontsize=16,color="green",shape="box"];1247[label="compare xuu95 xuu94",fontsize=16,color="black",shape="triangle"];1247 -> 1284[label="",style="solid", color="black", weight=3]; 1212 -> 1215[label="",style="dashed", color="red", weight=0]; 1212[label="FiniteMap.mkBalBranch6Size_l (xuu16,xuu17) xuu18 xuu38 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1212 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1211[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 xuu92",fontsize=16,color="burlywood",shape="triangle"];3113[label="xuu92/False",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3113[label="",style="solid", color="burlywood", weight=9]; 3113 -> 1226[label="",style="solid", color="burlywood", weight=3]; 3114[label="xuu92/True",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 1227[label="",style="solid", color="burlywood", weight=3]; 1102[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu16,xuu17) xuu18 xuu38 FiniteMap.EmptyFM xuu38 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1102 -> 1178[label="",style="solid", color="black", weight=3]; 1103[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1103 -> 1179[label="",style="solid", color="black", weight=3]; 2680 -> 2701[label="",style="dashed", color="red", weight=0]; 2680[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu38 (xuu16,xuu17) xuu21 + FiniteMap.mkBranchRight_size xuu38 (xuu16,xuu17) xuu21",fontsize=16,color="magenta"];2680 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2681[label="xuu21",fontsize=16,color="green",shape="box"];2682[label="xuu38",fontsize=16,color="green",shape="box"];2683[label="(xuu16,xuu17)",fontsize=16,color="green",shape="box"];2679[label="FiniteMap.mkBranchUnbox xuu153 xuu151 xuu227 xuu217",fontsize=16,color="black",shape="triangle"];2679 -> 2700[label="",style="solid", color="black", weight=3]; 1069[label="primMulNat (Succ xuu4000100) xuu30000",fontsize=16,color="burlywood",shape="box"];3115[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 1139[label="",style="solid", color="burlywood", weight=3]; 3116[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 1140[label="",style="solid", color="burlywood", weight=3]; 1070[label="primMulNat Zero xuu30000",fontsize=16,color="burlywood",shape="box"];3117[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 1141[label="",style="solid", color="burlywood", weight=3]; 3118[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 1142[label="",style="solid", color="burlywood", weight=3]; 1071[label="xuu30000",fontsize=16,color="green",shape="box"];1072[label="xuu400010",fontsize=16,color="green",shape="box"];1073[label="xuu400010",fontsize=16,color="green",shape="box"];1074[label="xuu30000",fontsize=16,color="green",shape="box"];1418 -> 144[label="",style="dashed", color="red", weight=0]; 1418[label="xuu460 == xuu480",fontsize=16,color="magenta"];1418 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1419 -> 142[label="",style="dashed", color="red", weight=0]; 1419[label="xuu460 == xuu480",fontsize=16,color="magenta"];1419 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1420 -> 141[label="",style="dashed", color="red", weight=0]; 1420[label="xuu460 == xuu480",fontsize=16,color="magenta"];1420 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1421 -> 145[label="",style="dashed", color="red", weight=0]; 1421[label="xuu460 == xuu480",fontsize=16,color="magenta"];1421 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1422 -> 148[label="",style="dashed", color="red", weight=0]; 1422[label="xuu460 == xuu480",fontsize=16,color="magenta"];1422 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1423 -> 147[label="",style="dashed", color="red", weight=0]; 1423[label="xuu460 == xuu480",fontsize=16,color="magenta"];1423 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1424 -> 140[label="",style="dashed", color="red", weight=0]; 1424[label="xuu460 == xuu480",fontsize=16,color="magenta"];1424 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1425 -> 138[label="",style="dashed", color="red", weight=0]; 1425[label="xuu460 == xuu480",fontsize=16,color="magenta"];1425 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1426 -> 150[label="",style="dashed", color="red", weight=0]; 1426[label="xuu460 == xuu480",fontsize=16,color="magenta"];1426 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1427 -> 146[label="",style="dashed", color="red", weight=0]; 1427[label="xuu460 == xuu480",fontsize=16,color="magenta"];1427 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1428 -> 139[label="",style="dashed", color="red", weight=0]; 1428[label="xuu460 == xuu480",fontsize=16,color="magenta"];1428 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1429 -> 149[label="",style="dashed", color="red", weight=0]; 1429[label="xuu460 == xuu480",fontsize=16,color="magenta"];1429 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1430 -> 143[label="",style="dashed", color="red", weight=0]; 1430[label="xuu460 == xuu480",fontsize=16,color="magenta"];1430 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1431 -> 137[label="",style="dashed", color="red", weight=0]; 1431[label="xuu460 == xuu480",fontsize=16,color="magenta"];1431 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1432[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1432 -> 1515[label="",style="solid", color="black", weight=3]; 1433[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3119[label="xuu461/LT",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 1516[label="",style="solid", color="burlywood", weight=3]; 3120[label="xuu461/EQ",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 1517[label="",style="solid", color="burlywood", weight=3]; 3121[label="xuu461/GT",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 1518[label="",style="solid", color="burlywood", weight=3]; 1434[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3122[label="xuu461/(xuu4610,xuu4611)",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3122[label="",style="solid", color="burlywood", weight=9]; 3122 -> 1519[label="",style="solid", color="burlywood", weight=3]; 1435[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1435 -> 1520[label="",style="solid", color="black", weight=3]; 1436[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1436 -> 1521[label="",style="solid", color="black", weight=3]; 1437[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1437 -> 1522[label="",style="solid", color="black", weight=3]; 1438[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3123[label="xuu461/Left xuu4610",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 1523[label="",style="solid", color="burlywood", weight=3]; 3124[label="xuu461/Right xuu4610",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 1524[label="",style="solid", color="burlywood", weight=3]; 1439[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3125[label="xuu461/(xuu4610,xuu4611,xuu4612)",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 1525[label="",style="solid", color="burlywood", weight=3]; 1440[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1440 -> 1526[label="",style="solid", color="black", weight=3]; 1441[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3126[label="xuu461/False",fontsize=10,color="white",style="solid",shape="box"];1441 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 1527[label="",style="solid", color="burlywood", weight=3]; 3127[label="xuu461/True",fontsize=10,color="white",style="solid",shape="box"];1441 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1442[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1442 -> 1529[label="",style="solid", color="black", weight=3]; 1443[label="xuu461 <= xuu481",fontsize=16,color="burlywood",shape="triangle"];3128[label="xuu461/Nothing",fontsize=10,color="white",style="solid",shape="box"];1443 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 1530[label="",style="solid", color="burlywood", weight=3]; 3129[label="xuu461/Just xuu4610",fontsize=10,color="white",style="solid",shape="box"];1443 -> 3129[label="",style="solid", color="burlywood", weight=9]; 3129 -> 1531[label="",style="solid", color="burlywood", weight=3]; 1444[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1444 -> 1532[label="",style="solid", color="black", weight=3]; 1445[label="xuu461 <= xuu481",fontsize=16,color="black",shape="triangle"];1445 -> 1533[label="",style="solid", color="black", weight=3]; 1446 -> 142[label="",style="dashed", color="red", weight=0]; 1446[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1446 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1447 -> 142[label="",style="dashed", color="red", weight=0]; 1447[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1447 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1448 -> 142[label="",style="dashed", color="red", weight=0]; 1448[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1448 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1449 -> 142[label="",style="dashed", color="red", weight=0]; 1449[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1449 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1450 -> 142[label="",style="dashed", color="red", weight=0]; 1450[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1450 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1451 -> 142[label="",style="dashed", color="red", weight=0]; 1451[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1451 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1452 -> 142[label="",style="dashed", color="red", weight=0]; 1452[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1452 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1453 -> 142[label="",style="dashed", color="red", weight=0]; 1453[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1453 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1454 -> 142[label="",style="dashed", color="red", weight=0]; 1454[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1454 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1455 -> 142[label="",style="dashed", color="red", weight=0]; 1455[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1455 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1456 -> 142[label="",style="dashed", color="red", weight=0]; 1456[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1456 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1457 -> 142[label="",style="dashed", color="red", weight=0]; 1457[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1457 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1458 -> 142[label="",style="dashed", color="red", weight=0]; 1458[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1458 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1459 -> 142[label="",style="dashed", color="red", weight=0]; 1459[label="compare xuu460 xuu480 == LT",fontsize=16,color="magenta"];1459 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1460[label="compare1 (xuu114,xuu115) (xuu116,xuu117) xuu119",fontsize=16,color="burlywood",shape="triangle"];3130[label="xuu119/False",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3130[label="",style="solid", color="burlywood", weight=9]; 3130 -> 1562[label="",style="solid", color="burlywood", weight=3]; 3131[label="xuu119/True",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3131[label="",style="solid", color="burlywood", weight=9]; 3131 -> 1563[label="",style="solid", color="burlywood", weight=3]; 1461 -> 1460[label="",style="dashed", color="red", weight=0]; 1461[label="compare1 (xuu114,xuu115) (xuu116,xuu117) True",fontsize=16,color="magenta"];1461 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1086[label="",style="dashed", color="red", weight=0]; 1129[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 FiniteMap.EmptyFM xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1129 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1086[label="",style="dashed", color="red", weight=0]; 1130[label="primCmpInt (primPlusInt xuu382 (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1130 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1224[label="",style="dashed", color="red", weight=0]; 1230[label="FiniteMap.sizeFM xuu38",fontsize=16,color="magenta"];1230 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1282[label="Pos Zero",fontsize=16,color="green",shape="box"];1283[label="xuu212",fontsize=16,color="green",shape="box"];1284 -> 1086[label="",style="dashed", color="red", weight=0]; 1284[label="primCmpInt xuu95 xuu94",fontsize=16,color="magenta"];1284 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1220 -> 375[label="",style="dashed", color="red", weight=0]; 1220[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1220 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1226[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 False",fontsize=16,color="black",shape="box"];1226 -> 1248[label="",style="solid", color="black", weight=3]; 1227[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 True",fontsize=16,color="black",shape="box"];1227 -> 1249[label="",style="solid", color="black", weight=3]; 1178[label="error []",fontsize=16,color="red",shape="box"];1179[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1179 -> 1231[label="",style="solid", color="black", weight=3]; 2702[label="xuu21",fontsize=16,color="green",shape="box"];2703[label="(xuu16,xuu17)",fontsize=16,color="green",shape="box"];2704[label="xuu38",fontsize=16,color="green",shape="box"];2705[label="xuu38",fontsize=16,color="green",shape="box"];2701[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu229 xuu210 xuu214 + FiniteMap.mkBranchRight_size xuu228 xuu210 xuu214",fontsize=16,color="black",shape="triangle"];2701 -> 2716[label="",style="solid", color="black", weight=3]; 2700[label="xuu217",fontsize=16,color="green",shape="box"];1139[label="primMulNat (Succ xuu4000100) (Succ xuu300000)",fontsize=16,color="black",shape="box"];1139 -> 1233[label="",style="solid", color="black", weight=3]; 1140[label="primMulNat (Succ xuu4000100) Zero",fontsize=16,color="black",shape="box"];1140 -> 1234[label="",style="solid", color="black", weight=3]; 1141[label="primMulNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];1141 -> 1235[label="",style="solid", color="black", weight=3]; 1142[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1142 -> 1236[label="",style="solid", color="black", weight=3]; 1487[label="xuu480",fontsize=16,color="green",shape="box"];1488[label="xuu460",fontsize=16,color="green",shape="box"];1489[label="xuu480",fontsize=16,color="green",shape="box"];1490[label="xuu460",fontsize=16,color="green",shape="box"];1491[label="xuu480",fontsize=16,color="green",shape="box"];1492[label="xuu460",fontsize=16,color="green",shape="box"];1493[label="xuu480",fontsize=16,color="green",shape="box"];1494[label="xuu460",fontsize=16,color="green",shape="box"];1495[label="xuu480",fontsize=16,color="green",shape="box"];1496[label="xuu460",fontsize=16,color="green",shape="box"];1497[label="xuu480",fontsize=16,color="green",shape="box"];1498[label="xuu460",fontsize=16,color="green",shape="box"];1499[label="xuu480",fontsize=16,color="green",shape="box"];1500[label="xuu460",fontsize=16,color="green",shape="box"];1501[label="xuu480",fontsize=16,color="green",shape="box"];1502[label="xuu460",fontsize=16,color="green",shape="box"];1503[label="xuu480",fontsize=16,color="green",shape="box"];1504[label="xuu460",fontsize=16,color="green",shape="box"];1505[label="xuu480",fontsize=16,color="green",shape="box"];1506[label="xuu460",fontsize=16,color="green",shape="box"];1507[label="xuu480",fontsize=16,color="green",shape="box"];1508[label="xuu460",fontsize=16,color="green",shape="box"];1509[label="xuu480",fontsize=16,color="green",shape="box"];1510[label="xuu460",fontsize=16,color="green",shape="box"];1511[label="xuu480",fontsize=16,color="green",shape="box"];1512[label="xuu460",fontsize=16,color="green",shape="box"];1513[label="xuu480",fontsize=16,color="green",shape="box"];1514[label="xuu460",fontsize=16,color="green",shape="box"];1515 -> 1618[label="",style="dashed", color="red", weight=0]; 1515[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1515 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1516[label="LT <= xuu481",fontsize=16,color="burlywood",shape="box"];3132[label="xuu481/LT",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3132[label="",style="solid", color="burlywood", weight=9]; 3132 -> 1595[label="",style="solid", color="burlywood", weight=3]; 3133[label="xuu481/EQ",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3133[label="",style="solid", color="burlywood", weight=9]; 3133 -> 1596[label="",style="solid", color="burlywood", weight=3]; 3134[label="xuu481/GT",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 1597[label="",style="solid", color="burlywood", weight=3]; 1517[label="EQ <= xuu481",fontsize=16,color="burlywood",shape="box"];3135[label="xuu481/LT",fontsize=10,color="white",style="solid",shape="box"];1517 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 1598[label="",style="solid", color="burlywood", weight=3]; 3136[label="xuu481/EQ",fontsize=10,color="white",style="solid",shape="box"];1517 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 1599[label="",style="solid", color="burlywood", weight=3]; 3137[label="xuu481/GT",fontsize=10,color="white",style="solid",shape="box"];1517 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 1600[label="",style="solid", color="burlywood", weight=3]; 1518[label="GT <= xuu481",fontsize=16,color="burlywood",shape="box"];3138[label="xuu481/LT",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 1601[label="",style="solid", color="burlywood", weight=3]; 3139[label="xuu481/EQ",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1602[label="",style="solid", color="burlywood", weight=3]; 3140[label="xuu481/GT",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1603[label="",style="solid", color="burlywood", weight=3]; 1519[label="(xuu4610,xuu4611) <= xuu481",fontsize=16,color="burlywood",shape="box"];3141[label="xuu481/(xuu4810,xuu4811)",fontsize=10,color="white",style="solid",shape="box"];1519 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1604[label="",style="solid", color="burlywood", weight=3]; 1520 -> 1618[label="",style="dashed", color="red", weight=0]; 1520[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1520 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1618[label="",style="dashed", color="red", weight=0]; 1521[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1521 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1618[label="",style="dashed", color="red", weight=0]; 1522[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1522 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1523[label="Left xuu4610 <= xuu481",fontsize=16,color="burlywood",shape="box"];3142[label="xuu481/Left xuu4810",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1608[label="",style="solid", color="burlywood", weight=3]; 3143[label="xuu481/Right xuu4810",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1609[label="",style="solid", color="burlywood", weight=3]; 1524[label="Right xuu4610 <= xuu481",fontsize=16,color="burlywood",shape="box"];3144[label="xuu481/Left xuu4810",fontsize=10,color="white",style="solid",shape="box"];1524 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1610[label="",style="solid", color="burlywood", weight=3]; 3145[label="xuu481/Right xuu4810",fontsize=10,color="white",style="solid",shape="box"];1524 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 1611[label="",style="solid", color="burlywood", weight=3]; 1525[label="(xuu4610,xuu4611,xuu4612) <= xuu481",fontsize=16,color="burlywood",shape="box"];3146[label="xuu481/(xuu4810,xuu4811,xuu4812)",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 1612[label="",style="solid", color="burlywood", weight=3]; 1526 -> 1618[label="",style="dashed", color="red", weight=0]; 1526[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1526 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1527[label="False <= xuu481",fontsize=16,color="burlywood",shape="box"];3147[label="xuu481/False",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3147[label="",style="solid", color="burlywood", weight=9]; 3147 -> 1614[label="",style="solid", color="burlywood", weight=3]; 3148[label="xuu481/True",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 1615[label="",style="solid", color="burlywood", weight=3]; 1528[label="True <= xuu481",fontsize=16,color="burlywood",shape="box"];3149[label="xuu481/False",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 1616[label="",style="solid", color="burlywood", weight=3]; 3150[label="xuu481/True",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 1617[label="",style="solid", color="burlywood", weight=3]; 1529 -> 1618[label="",style="dashed", color="red", weight=0]; 1529[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1529 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1530[label="Nothing <= xuu481",fontsize=16,color="burlywood",shape="box"];3151[label="xuu481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3151[label="",style="solid", color="burlywood", weight=9]; 3151 -> 1627[label="",style="solid", color="burlywood", weight=3]; 3152[label="xuu481/Just xuu4810",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 1628[label="",style="solid", color="burlywood", weight=3]; 1531[label="Just xuu4610 <= xuu481",fontsize=16,color="burlywood",shape="box"];3153[label="xuu481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1531 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 1629[label="",style="solid", color="burlywood", weight=3]; 3154[label="xuu481/Just xuu4810",fontsize=10,color="white",style="solid",shape="box"];1531 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 1630[label="",style="solid", color="burlywood", weight=3]; 1532 -> 1618[label="",style="dashed", color="red", weight=0]; 1532[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1532 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1618[label="",style="dashed", color="red", weight=0]; 1533[label="compare xuu461 xuu481 /= GT",fontsize=16,color="magenta"];1533 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1534[label="LT",fontsize=16,color="green",shape="box"];1535[label="compare xuu460 xuu480",fontsize=16,color="burlywood",shape="triangle"];3155[label="xuu460/xuu4600 : xuu4601",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3155[label="",style="solid", color="burlywood", weight=9]; 3155 -> 1631[label="",style="solid", color="burlywood", weight=3]; 3156[label="xuu460/[]",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3156[label="",style="solid", color="burlywood", weight=9]; 3156 -> 1632[label="",style="solid", color="burlywood", weight=3]; 1536[label="LT",fontsize=16,color="green",shape="box"];1537[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1537 -> 1633[label="",style="solid", color="black", weight=3]; 1538[label="LT",fontsize=16,color="green",shape="box"];1539[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1539 -> 1634[label="",style="solid", color="black", weight=3]; 1540[label="LT",fontsize=16,color="green",shape="box"];1541[label="compare xuu460 xuu480",fontsize=16,color="burlywood",shape="triangle"];3157[label="xuu460/xuu4600 :% xuu4601",fontsize=10,color="white",style="solid",shape="box"];1541 -> 3157[label="",style="solid", color="burlywood", weight=9]; 3157 -> 1635[label="",style="solid", color="burlywood", weight=3]; 1542[label="LT",fontsize=16,color="green",shape="box"];1543[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1543 -> 1636[label="",style="solid", color="black", weight=3]; 1544[label="LT",fontsize=16,color="green",shape="box"];1545[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1545 -> 1637[label="",style="solid", color="black", weight=3]; 1546[label="LT",fontsize=16,color="green",shape="box"];1547[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1547 -> 1638[label="",style="solid", color="black", weight=3]; 1548[label="LT",fontsize=16,color="green",shape="box"];1549[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1549 -> 1639[label="",style="solid", color="black", weight=3]; 1550[label="LT",fontsize=16,color="green",shape="box"];1551[label="compare xuu460 xuu480",fontsize=16,color="burlywood",shape="triangle"];3158[label="xuu460/Integer xuu4600",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3158[label="",style="solid", color="burlywood", weight=9]; 3158 -> 1640[label="",style="solid", color="burlywood", weight=3]; 1552[label="LT",fontsize=16,color="green",shape="box"];1553[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1553 -> 1641[label="",style="solid", color="black", weight=3]; 1554[label="LT",fontsize=16,color="green",shape="box"];1555 -> 1247[label="",style="dashed", color="red", weight=0]; 1555[label="compare xuu460 xuu480",fontsize=16,color="magenta"];1555 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1556[label="LT",fontsize=16,color="green",shape="box"];1557[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1557 -> 1644[label="",style="solid", color="black", weight=3]; 1558[label="LT",fontsize=16,color="green",shape="box"];1559[label="compare xuu460 xuu480",fontsize=16,color="burlywood",shape="triangle"];3159[label="xuu460/()",fontsize=10,color="white",style="solid",shape="box"];1559 -> 3159[label="",style="solid", color="burlywood", weight=9]; 3159 -> 1645[label="",style="solid", color="burlywood", weight=3]; 1560[label="LT",fontsize=16,color="green",shape="box"];1561[label="compare xuu460 xuu480",fontsize=16,color="black",shape="triangle"];1561 -> 1646[label="",style="solid", color="black", weight=3]; 1562[label="compare1 (xuu114,xuu115) (xuu116,xuu117) False",fontsize=16,color="black",shape="box"];1562 -> 1647[label="",style="solid", color="black", weight=3]; 1563[label="compare1 (xuu114,xuu115) (xuu116,xuu117) True",fontsize=16,color="black",shape="box"];1563 -> 1648[label="",style="solid", color="black", weight=3]; 1564[label="True",fontsize=16,color="green",shape="box"];1204[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1205 -> 1320[label="",style="dashed", color="red", weight=0]; 1205[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 FiniteMap.EmptyFM xuu21)",fontsize=16,color="magenta"];1205 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1086[label="primCmpInt xuu46 xuu48",fontsize=16,color="burlywood",shape="triangle"];3160[label="xuu46/Pos xuu460",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 1156[label="",style="solid", color="burlywood", weight=3]; 3161[label="xuu46/Neg xuu460",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 1157[label="",style="solid", color="burlywood", weight=3]; 1206[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1207 -> 1320[label="",style="dashed", color="red", weight=0]; 1207[label="primPlusInt xuu382 (FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21)",fontsize=16,color="magenta"];1207 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1285[label="xuu38",fontsize=16,color="green",shape="box"];1318[label="xuu94",fontsize=16,color="green",shape="box"];1319[label="xuu95",fontsize=16,color="green",shape="box"];1228 -> 1217[label="",style="dashed", color="red", weight=0]; 1228[label="FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1229 -> 1223[label="",style="dashed", color="red", weight=0]; 1229[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1248[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 otherwise",fontsize=16,color="black",shape="box"];1248 -> 1331[label="",style="solid", color="black", weight=3]; 1249[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu16,xuu17) xuu18 xuu38 xuu21 xuu38 xuu21 xuu38",fontsize=16,color="burlywood",shape="box"];3162[label="xuu38/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1249 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 1332[label="",style="solid", color="burlywood", weight=3]; 3163[label="xuu38/FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384",fontsize=10,color="white",style="solid",shape="box"];1249 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 1333[label="",style="solid", color="burlywood", weight=3]; 1231 -> 1414[label="",style="dashed", color="red", weight=0]; 1231[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 (FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214)",fontsize=16,color="magenta"];1231 -> 1415[label="",style="dashed", color="magenta", weight=3]; 2716 -> 1320[label="",style="dashed", color="red", weight=0]; 2716[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu229 xuu210 xuu214) (FiniteMap.mkBranchRight_size xuu228 xuu210 xuu214)",fontsize=16,color="magenta"];2716 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2769[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1342[label="",style="dashed", color="red", weight=0]; 1233[label="primPlusNat (primMulNat xuu4000100 (Succ xuu300000)) (Succ xuu300000)",fontsize=16,color="magenta"];1233 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1234[label="Zero",fontsize=16,color="green",shape="box"];1235[label="Zero",fontsize=16,color="green",shape="box"];1236[label="Zero",fontsize=16,color="green",shape="box"];1619 -> 1535[label="",style="dashed", color="red", weight=0]; 1619[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1619 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1618[label="xuu126 /= GT",fontsize=16,color="black",shape="triangle"];1618 -> 1651[label="",style="solid", color="black", weight=3]; 1595[label="LT <= LT",fontsize=16,color="black",shape="box"];1595 -> 1652[label="",style="solid", color="black", weight=3]; 1596[label="LT <= EQ",fontsize=16,color="black",shape="box"];1596 -> 1653[label="",style="solid", color="black", weight=3]; 1597[label="LT <= GT",fontsize=16,color="black",shape="box"];1597 -> 1654[label="",style="solid", color="black", weight=3]; 1598[label="EQ <= LT",fontsize=16,color="black",shape="box"];1598 -> 1655[label="",style="solid", color="black", weight=3]; 1599[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1599 -> 1656[label="",style="solid", color="black", weight=3]; 1600[label="EQ <= GT",fontsize=16,color="black",shape="box"];1600 -> 1657[label="",style="solid", color="black", weight=3]; 1601[label="GT <= LT",fontsize=16,color="black",shape="box"];1601 -> 1658[label="",style="solid", color="black", weight=3]; 1602[label="GT <= EQ",fontsize=16,color="black",shape="box"];1602 -> 1659[label="",style="solid", color="black", weight=3]; 1603[label="GT <= GT",fontsize=16,color="black",shape="box"];1603 -> 1660[label="",style="solid", color="black", weight=3]; 1604[label="(xuu4610,xuu4611) <= (xuu4810,xuu4811)",fontsize=16,color="black",shape="box"];1604 -> 1661[label="",style="solid", color="black", weight=3]; 1620 -> 1541[label="",style="dashed", color="red", weight=0]; 1620[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1620 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1543[label="",style="dashed", color="red", weight=0]; 1621[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1621 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1545[label="",style="dashed", color="red", weight=0]; 1622[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1622 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1608[label="Left xuu4610 <= Left xuu4810",fontsize=16,color="black",shape="box"];1608 -> 1668[label="",style="solid", color="black", weight=3]; 1609[label="Left xuu4610 <= Right xuu4810",fontsize=16,color="black",shape="box"];1609 -> 1669[label="",style="solid", color="black", weight=3]; 1610[label="Right xuu4610 <= Left xuu4810",fontsize=16,color="black",shape="box"];1610 -> 1670[label="",style="solid", color="black", weight=3]; 1611[label="Right xuu4610 <= Right xuu4810",fontsize=16,color="black",shape="box"];1611 -> 1671[label="",style="solid", color="black", weight=3]; 1612[label="(xuu4610,xuu4611,xuu4612) <= (xuu4810,xuu4811,xuu4812)",fontsize=16,color="black",shape="box"];1612 -> 1672[label="",style="solid", color="black", weight=3]; 1623 -> 1551[label="",style="dashed", color="red", weight=0]; 1623[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1623 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1614[label="False <= False",fontsize=16,color="black",shape="box"];1614 -> 1675[label="",style="solid", color="black", weight=3]; 1615[label="False <= True",fontsize=16,color="black",shape="box"];1615 -> 1676[label="",style="solid", color="black", weight=3]; 1616[label="True <= False",fontsize=16,color="black",shape="box"];1616 -> 1677[label="",style="solid", color="black", weight=3]; 1617[label="True <= True",fontsize=16,color="black",shape="box"];1617 -> 1678[label="",style="solid", color="black", weight=3]; 1624 -> 1247[label="",style="dashed", color="red", weight=0]; 1624[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1624 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1627[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1627 -> 1711[label="",style="solid", color="black", weight=3]; 1628[label="Nothing <= Just xuu4810",fontsize=16,color="black",shape="box"];1628 -> 1712[label="",style="solid", color="black", weight=3]; 1629[label="Just xuu4610 <= Nothing",fontsize=16,color="black",shape="box"];1629 -> 1713[label="",style="solid", color="black", weight=3]; 1630[label="Just xuu4610 <= Just xuu4810",fontsize=16,color="black",shape="box"];1630 -> 1714[label="",style="solid", color="black", weight=3]; 1625 -> 1559[label="",style="dashed", color="red", weight=0]; 1625[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1625 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1561[label="",style="dashed", color="red", weight=0]; 1626[label="compare xuu461 xuu481",fontsize=16,color="magenta"];1626 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1631[label="compare (xuu4600 : xuu4601) xuu480",fontsize=16,color="burlywood",shape="box"];3164[label="xuu480/xuu4800 : xuu4801",fontsize=10,color="white",style="solid",shape="box"];1631 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 1715[label="",style="solid", color="burlywood", weight=3]; 3165[label="xuu480/[]",fontsize=10,color="white",style="solid",shape="box"];1631 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 1716[label="",style="solid", color="burlywood", weight=3]; 1632[label="compare [] xuu480",fontsize=16,color="burlywood",shape="box"];3166[label="xuu480/xuu4800 : xuu4801",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 1717[label="",style="solid", color="burlywood", weight=3]; 3167[label="xuu480/[]",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 1718[label="",style="solid", color="burlywood", weight=3]; 1633[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1633 -> 1719[label="",style="solid", color="black", weight=3]; 1634[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1634 -> 1720[label="",style="solid", color="black", weight=3]; 1635[label="compare (xuu4600 :% xuu4601) xuu480",fontsize=16,color="burlywood",shape="box"];3168[label="xuu480/xuu4800 :% xuu4801",fontsize=10,color="white",style="solid",shape="box"];1635 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 1721[label="",style="solid", color="burlywood", weight=3]; 1636[label="primCmpDouble xuu460 xuu480",fontsize=16,color="burlywood",shape="box"];3169[label="xuu460/Double xuu4600 xuu4601",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 1722[label="",style="solid", color="burlywood", weight=3]; 1637[label="primCmpChar xuu460 xuu480",fontsize=16,color="burlywood",shape="box"];3170[label="xuu460/Char xuu4600",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 1723[label="",style="solid", color="burlywood", weight=3]; 1638[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1638 -> 1724[label="",style="solid", color="black", weight=3]; 1639[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1639 -> 1725[label="",style="solid", color="black", weight=3]; 1640[label="compare (Integer xuu4600) xuu480",fontsize=16,color="burlywood",shape="box"];3171[label="xuu480/Integer xuu4800",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 1726[label="",style="solid", color="burlywood", weight=3]; 1641[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1641 -> 1727[label="",style="solid", color="black", weight=3]; 1642[label="xuu480",fontsize=16,color="green",shape="box"];1643[label="xuu460",fontsize=16,color="green",shape="box"];1644[label="compare3 xuu460 xuu480",fontsize=16,color="black",shape="box"];1644 -> 1728[label="",style="solid", color="black", weight=3]; 1645[label="compare () xuu480",fontsize=16,color="burlywood",shape="box"];3172[label="xuu480/()",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1646[label="primCmpFloat xuu460 xuu480",fontsize=16,color="burlywood",shape="box"];3173[label="xuu460/Float xuu4600 xuu4601",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 1730[label="",style="solid", color="burlywood", weight=3]; 1647[label="compare0 (xuu114,xuu115) (xuu116,xuu117) otherwise",fontsize=16,color="black",shape="box"];1647 -> 1731[label="",style="solid", color="black", weight=3]; 1648[label="LT",fontsize=16,color="green",shape="box"];1323 -> 1217[label="",style="dashed", color="red", weight=0]; 1323[label="FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 FiniteMap.EmptyFM xuu21",fontsize=16,color="magenta"];1323 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1324[label="Pos Zero",fontsize=16,color="green",shape="box"];1320[label="primPlusInt xuu382 xuu101",fontsize=16,color="burlywood",shape="triangle"];3174[label="xuu382/Pos xuu3820",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 1340[label="",style="solid", color="burlywood", weight=3]; 3175[label="xuu382/Neg xuu3820",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 1341[label="",style="solid", color="burlywood", weight=3]; 1156[label="primCmpInt (Pos xuu460) xuu48",fontsize=16,color="burlywood",shape="box"];3176[label="xuu460/Succ xuu4600",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 1346[label="",style="solid", color="burlywood", weight=3]; 3177[label="xuu460/Zero",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 1347[label="",style="solid", color="burlywood", weight=3]; 1157[label="primCmpInt (Neg xuu460) xuu48",fontsize=16,color="burlywood",shape="box"];3178[label="xuu460/Succ xuu4600",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 1348[label="",style="solid", color="burlywood", weight=3]; 3179[label="xuu460/Zero",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 1349[label="",style="solid", color="burlywood", weight=3]; 1325 -> 1217[label="",style="dashed", color="red", weight=0]; 1325[label="FiniteMap.mkBalBranch6Size_r (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21",fontsize=16,color="magenta"];1325 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1331[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu16,xuu17) xuu18 xuu38 xuu21 (xuu16,xuu17) xuu18 xuu38 xuu21 True",fontsize=16,color="black",shape="box"];1331 -> 1351[label="",style="solid", color="black", weight=3]; 1332[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu16,xuu17) xuu18 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1332 -> 1352[label="",style="solid", color="black", weight=3]; 1333[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];1333 -> 1353[label="",style="solid", color="black", weight=3]; 1415 -> 1397[label="",style="dashed", color="red", weight=0]; 1415[label="FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1415 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1414[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 xuu120",fontsize=16,color="burlywood",shape="triangle"];3180[label="xuu120/False",fontsize=10,color="white",style="solid",shape="box"];1414 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 1464[label="",style="solid", color="burlywood", weight=3]; 3181[label="xuu120/True",fontsize=10,color="white",style="solid",shape="box"];1414 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 1465[label="",style="solid", color="burlywood", weight=3]; 2768[label="FiniteMap.mkBranchRight_size xuu228 xuu210 xuu214",fontsize=16,color="black",shape="box"];2768 -> 2775[label="",style="solid", color="black", weight=3]; 2769[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu229 xuu210 xuu214",fontsize=16,color="black",shape="box"];2769 -> 2776[label="",style="solid", color="black", weight=3]; 1343 -> 978[label="",style="dashed", color="red", weight=0]; 1343[label="primMulNat xuu4000100 (Succ xuu300000)",fontsize=16,color="magenta"];1343 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1342[label="primPlusNat xuu105 (Succ xuu300000)",fontsize=16,color="burlywood",shape="triangle"];3182[label="xuu105/Succ xuu1050",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 1366[label="",style="solid", color="burlywood", weight=3]; 3183[label="xuu105/Zero",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1649[label="xuu461",fontsize=16,color="green",shape="box"];1650[label="xuu481",fontsize=16,color="green",shape="box"];1651 -> 1732[label="",style="dashed", color="red", weight=0]; 1651[label="not (xuu126 == GT)",fontsize=16,color="magenta"];1651 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1652[label="True",fontsize=16,color="green",shape="box"];1653[label="True",fontsize=16,color="green",shape="box"];1654[label="True",fontsize=16,color="green",shape="box"];1655[label="False",fontsize=16,color="green",shape="box"];1656[label="True",fontsize=16,color="green",shape="box"];1657[label="True",fontsize=16,color="green",shape="box"];1658[label="False",fontsize=16,color="green",shape="box"];1659[label="False",fontsize=16,color="green",shape="box"];1660[label="True",fontsize=16,color="green",shape="box"];1661 -> 1813[label="",style="dashed", color="red", weight=0]; 1661[label="xuu4610 < xuu4810 || xuu4610 == xuu4810 && xuu4611 <= xuu4811",fontsize=16,color="magenta"];1661 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1662[label="xuu461",fontsize=16,color="green",shape="box"];1663[label="xuu481",fontsize=16,color="green",shape="box"];1664[label="xuu461",fontsize=16,color="green",shape="box"];1665[label="xuu481",fontsize=16,color="green",shape="box"];1666[label="xuu461",fontsize=16,color="green",shape="box"];1667[label="xuu481",fontsize=16,color="green",shape="box"];1668[label="xuu4610 <= xuu4810",fontsize=16,color="blue",shape="box"];3184[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1739[label="",style="solid", color="blue", weight=3]; 3185[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1740[label="",style="solid", color="blue", weight=3]; 3186[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1741[label="",style="solid", color="blue", weight=3]; 3187[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1742[label="",style="solid", color="blue", weight=3]; 3188[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1743[label="",style="solid", color="blue", weight=3]; 3189[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1744[label="",style="solid", color="blue", weight=3]; 3190[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1745[label="",style="solid", color="blue", weight=3]; 3191[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1746[label="",style="solid", color="blue", weight=3]; 3192[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1747[label="",style="solid", color="blue", weight=3]; 3193[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1748[label="",style="solid", color="blue", weight=3]; 3194[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1749[label="",style="solid", color="blue", weight=3]; 3195[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1750[label="",style="solid", color="blue", weight=3]; 3196[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1751[label="",style="solid", color="blue", weight=3]; 3197[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1752[label="",style="solid", color="blue", weight=3]; 1669[label="True",fontsize=16,color="green",shape="box"];1670[label="False",fontsize=16,color="green",shape="box"];1671[label="xuu4610 <= xuu4810",fontsize=16,color="blue",shape="box"];3198[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1753[label="",style="solid", color="blue", weight=3]; 3199[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1754[label="",style="solid", color="blue", weight=3]; 3200[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1755[label="",style="solid", color="blue", weight=3]; 3201[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1756[label="",style="solid", color="blue", weight=3]; 3202[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1757[label="",style="solid", color="blue", weight=3]; 3203[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1758[label="",style="solid", color="blue", weight=3]; 3204[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1759[label="",style="solid", color="blue", weight=3]; 3205[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1760[label="",style="solid", color="blue", weight=3]; 3206[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1761[label="",style="solid", color="blue", weight=3]; 3207[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1762[label="",style="solid", color="blue", weight=3]; 3208[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1763[label="",style="solid", color="blue", weight=3]; 3209[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1764[label="",style="solid", color="blue", weight=3]; 3210[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1765[label="",style="solid", color="blue", weight=3]; 3211[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1766[label="",style="solid", color="blue", weight=3]; 1672 -> 1813[label="",style="dashed", color="red", weight=0]; 1672[label="xuu4610 < xuu4810 || xuu4610 == xuu4810 && (xuu4611 < xuu4811 || xuu4611 == xuu4811 && xuu4612 <= xuu4812)",fontsize=16,color="magenta"];1672 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1673[label="xuu461",fontsize=16,color="green",shape="box"];1674[label="xuu481",fontsize=16,color="green",shape="box"];1675[label="True",fontsize=16,color="green",shape="box"];1676[label="True",fontsize=16,color="green",shape="box"];1677[label="False",fontsize=16,color="green",shape="box"];1678[label="True",fontsize=16,color="green",shape="box"];1679[label="xuu481",fontsize=16,color="green",shape="box"];1680[label="xuu461",fontsize=16,color="green",shape="box"];1711[label="True",fontsize=16,color="green",shape="box"];1712[label="True",fontsize=16,color="green",shape="box"];1713[label="False",fontsize=16,color="green",shape="box"];1714[label="xuu4610 <= xuu4810",fontsize=16,color="blue",shape="box"];3212[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1767[label="",style="solid", color="blue", weight=3]; 3213[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1768[label="",style="solid", color="blue", weight=3]; 3214[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1769[label="",style="solid", color="blue", weight=3]; 3215[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1770[label="",style="solid", color="blue", weight=3]; 3216[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1771[label="",style="solid", color="blue", weight=3]; 3217[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1772[label="",style="solid", color="blue", weight=3]; 3218[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1773[label="",style="solid", color="blue", weight=3]; 3219[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1774[label="",style="solid", color="blue", weight=3]; 3220[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1775[label="",style="solid", color="blue", weight=3]; 3221[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1776[label="",style="solid", color="blue", weight=3]; 3222[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1777[label="",style="solid", color="blue", weight=3]; 3223[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1778[label="",style="solid", color="blue", weight=3]; 3224[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1779[label="",style="solid", color="blue", weight=3]; 3225[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1780[label="",style="solid", color="blue", weight=3]; 1681[label="xuu461",fontsize=16,color="green",shape="box"];1682[label="xuu481",fontsize=16,color="green",shape="box"];1683[label="xuu461",fontsize=16,color="green",shape="box"];1684[label="xuu481",fontsize=16,color="green",shape="box"];1715[label="compare (xuu4600 : xuu4601) (xuu4800 : xuu4801)",fontsize=16,color="black",shape="box"];1715 -> 1781[label="",style="solid", color="black", weight=3]; 1716[label="compare (xuu4600 : xuu4601) []",fontsize=16,color="black",shape="box"];1716 -> 1782[label="",style="solid", color="black", weight=3]; 1717[label="compare [] (xuu4800 : xuu4801)",fontsize=16,color="black",shape="box"];1717 -> 1783[label="",style="solid", color="black", weight=3]; 1718[label="compare [] []",fontsize=16,color="black",shape="box"];1718 -> 1784[label="",style="solid", color="black", weight=3]; 1719 -> 1785[label="",style="dashed", color="red", weight=0]; 1719[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1719 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1250[label="",style="dashed", color="red", weight=0]; 1720[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1720 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1721[label="compare (xuu4600 :% xuu4601) (xuu4800 :% xuu4801)",fontsize=16,color="black",shape="box"];1721 -> 1790[label="",style="solid", color="black", weight=3]; 1722[label="primCmpDouble (Double xuu4600 xuu4601) xuu480",fontsize=16,color="burlywood",shape="box"];3226[label="xuu4601/Pos xuu46010",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 1791[label="",style="solid", color="burlywood", weight=3]; 3227[label="xuu4601/Neg xuu46010",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 1792[label="",style="solid", color="burlywood", weight=3]; 1723[label="primCmpChar (Char xuu4600) xuu480",fontsize=16,color="burlywood",shape="box"];3228[label="xuu480/Char xuu4800",fontsize=10,color="white",style="solid",shape="box"];1723 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1793[label="",style="solid", color="burlywood", weight=3]; 1724 -> 1794[label="",style="dashed", color="red", weight=0]; 1724[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1724 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1796[label="",style="dashed", color="red", weight=0]; 1725[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1725 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1726[label="compare (Integer xuu4600) (Integer xuu4800)",fontsize=16,color="black",shape="box"];1726 -> 1798[label="",style="solid", color="black", weight=3]; 1727 -> 1799[label="",style="dashed", color="red", weight=0]; 1727[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1727 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1801[label="",style="dashed", color="red", weight=0]; 1728[label="compare2 xuu460 xuu480 (xuu460 == xuu480)",fontsize=16,color="magenta"];1728 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1729[label="compare () ()",fontsize=16,color="black",shape="box"];1729 -> 1803[label="",style="solid", color="black", weight=3]; 1730[label="primCmpFloat (Float xuu4600 xuu4601) xuu480",fontsize=16,color="burlywood",shape="box"];3229[label="xuu4601/Pos xuu46010",fontsize=10,color="white",style="solid",shape="box"];1730 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1804[label="",style="solid", color="burlywood", weight=3]; 3230[label="xuu4601/Neg xuu46010",fontsize=10,color="white",style="solid",shape="box"];1730 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1805[label="",style="solid", color="burlywood", weight=3]; 1731[label="compare0 (xuu114,xuu115) (xuu116,xuu117) True",fontsize=16,color="black",shape="box"];1731 -> 1806[label="",style="solid", color="black", weight=3]; 1345[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1340[label="primPlusInt (Pos xuu3820) xuu101",fontsize=16,color="burlywood",shape="box"];3231[label="xuu101/Pos xuu1010",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1360[label="",style="solid", color="burlywood", weight=3]; 3232[label="xuu101/Neg xuu1010",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1341[label="primPlusInt (Neg xuu3820) xuu101",fontsize=16,color="burlywood",shape="box"];3233[label="xuu101/Pos xuu1010",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1362[label="",style="solid", color="burlywood", weight=3]; 3234[label="xuu101/Neg xuu1010",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 1363[label="",style="solid", color="burlywood", weight=3]; 1346[label="primCmpInt (Pos (Succ xuu4600)) xuu48",fontsize=16,color="burlywood",shape="box"];3235[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 1403[label="",style="solid", color="burlywood", weight=3]; 3236[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 1404[label="",style="solid", color="burlywood", weight=3]; 1347[label="primCmpInt (Pos Zero) xuu48",fontsize=16,color="burlywood",shape="box"];3237[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1347 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 1405[label="",style="solid", color="burlywood", weight=3]; 3238[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1347 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1348[label="primCmpInt (Neg (Succ xuu4600)) xuu48",fontsize=16,color="burlywood",shape="box"];3239[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 1407[label="",style="solid", color="burlywood", weight=3]; 3240[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1349[label="primCmpInt (Neg Zero) xuu48",fontsize=16,color="burlywood",shape="box"];3241[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 1409[label="",style="solid", color="burlywood", weight=3]; 3242[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1350[label="FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384",fontsize=16,color="green",shape="box"];1351[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="black",shape="box"];1351 -> 1411[label="",style="solid", color="black", weight=3]; 1352[label="error []",fontsize=16,color="red",shape="box"];1353[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];1353 -> 1412[label="",style="solid", color="black", weight=3]; 1462 -> 1224[label="",style="dashed", color="red", weight=0]; 1462[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];1462 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1463 -> 375[label="",style="dashed", color="red", weight=0]; 1463[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1463 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1464[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 False",fontsize=16,color="black",shape="box"];1464 -> 1568[label="",style="solid", color="black", weight=3]; 1465[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];1465 -> 1569[label="",style="solid", color="black", weight=3]; 2775 -> 1224[label="",style="dashed", color="red", weight=0]; 2775[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2775 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2776 -> 1320[label="",style="dashed", color="red", weight=0]; 2776[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu229 xuu210 xuu214)",fontsize=16,color="magenta"];2776 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2783[label="",style="dashed", color="magenta", weight=3]; 1364[label="xuu4000100",fontsize=16,color="green",shape="box"];1365[label="Succ xuu300000",fontsize=16,color="green",shape="box"];1366[label="primPlusNat (Succ xuu1050) (Succ xuu300000)",fontsize=16,color="black",shape="box"];1366 -> 1471[label="",style="solid", color="black", weight=3]; 1367[label="primPlusNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];1367 -> 1472[label="",style="solid", color="black", weight=3]; 1733 -> 142[label="",style="dashed", color="red", weight=0]; 1733[label="xuu126 == GT",fontsize=16,color="magenta"];1733 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1732[label="not xuu127",fontsize=16,color="burlywood",shape="triangle"];3243[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 1809[label="",style="solid", color="burlywood", weight=3]; 3244[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 1810[label="",style="solid", color="burlywood", weight=3]; 1814[label="xuu4610 < xuu4810",fontsize=16,color="blue",shape="box"];3245[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1820[label="",style="solid", color="blue", weight=3]; 3246[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1821[label="",style="solid", color="blue", weight=3]; 3247[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1822[label="",style="solid", color="blue", weight=3]; 3248[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1823[label="",style="solid", color="blue", weight=3]; 3249[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1824[label="",style="solid", color="blue", weight=3]; 3250[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1825[label="",style="solid", color="blue", weight=3]; 3251[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1826[label="",style="solid", color="blue", weight=3]; 3252[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1827[label="",style="solid", color="blue", weight=3]; 3253[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1828[label="",style="solid", color="blue", weight=3]; 3254[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1829[label="",style="solid", color="blue", weight=3]; 3255[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1830[label="",style="solid", color="blue", weight=3]; 3256[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1831[label="",style="solid", color="blue", weight=3]; 3257[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1832[label="",style="solid", color="blue", weight=3]; 3258[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1814 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1833[label="",style="solid", color="blue", weight=3]; 1815 -> 391[label="",style="dashed", color="red", weight=0]; 1815[label="xuu4610 == xuu4810 && xuu4611 <= xuu4811",fontsize=16,color="magenta"];1815 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1815 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1813[label="xuu137 || xuu138",fontsize=16,color="burlywood",shape="triangle"];3259[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 1836[label="",style="solid", color="burlywood", weight=3]; 3260[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 1837[label="",style="solid", color="burlywood", weight=3]; 1739 -> 1432[label="",style="dashed", color="red", weight=0]; 1739[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1739 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1739 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1433[label="",style="dashed", color="red", weight=0]; 1740[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1740 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1434[label="",style="dashed", color="red", weight=0]; 1741[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1741 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1435[label="",style="dashed", color="red", weight=0]; 1742[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1742 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1436[label="",style="dashed", color="red", weight=0]; 1743[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1743 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1437[label="",style="dashed", color="red", weight=0]; 1744[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1744 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1438[label="",style="dashed", color="red", weight=0]; 1745[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1745 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1439[label="",style="dashed", color="red", weight=0]; 1746[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1746 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1440[label="",style="dashed", color="red", weight=0]; 1747[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1747 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1441[label="",style="dashed", color="red", weight=0]; 1748[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1748 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1442[label="",style="dashed", color="red", weight=0]; 1749[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1749 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1443[label="",style="dashed", color="red", weight=0]; 1750[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1750 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1444[label="",style="dashed", color="red", weight=0]; 1751[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1751 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1445[label="",style="dashed", color="red", weight=0]; 1752[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1752 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1432[label="",style="dashed", color="red", weight=0]; 1753[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1753 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1433[label="",style="dashed", color="red", weight=0]; 1754[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1754 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1434[label="",style="dashed", color="red", weight=0]; 1755[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1755 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1435[label="",style="dashed", color="red", weight=0]; 1756[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1756 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1436[label="",style="dashed", color="red", weight=0]; 1757[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1757 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1437[label="",style="dashed", color="red", weight=0]; 1758[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1758 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1438[label="",style="dashed", color="red", weight=0]; 1759[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1759 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1439[label="",style="dashed", color="red", weight=0]; 1760[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1760 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1440[label="",style="dashed", color="red", weight=0]; 1761[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1761 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1441[label="",style="dashed", color="red", weight=0]; 1762[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1762 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1442[label="",style="dashed", color="red", weight=0]; 1763[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1763 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1443[label="",style="dashed", color="red", weight=0]; 1764[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1764 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1444[label="",style="dashed", color="red", weight=0]; 1765[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1765 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1445[label="",style="dashed", color="red", weight=0]; 1766[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1766 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1816[label="xuu4610 < xuu4810",fontsize=16,color="blue",shape="box"];3261[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1894[label="",style="solid", color="blue", weight=3]; 3262[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1895[label="",style="solid", color="blue", weight=3]; 3263[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1896[label="",style="solid", color="blue", weight=3]; 3264[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1897[label="",style="solid", color="blue", weight=3]; 3265[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1898[label="",style="solid", color="blue", weight=3]; 3266[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1899[label="",style="solid", color="blue", weight=3]; 3267[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1900[label="",style="solid", color="blue", weight=3]; 3268[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1901[label="",style="solid", color="blue", weight=3]; 3269[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1902[label="",style="solid", color="blue", weight=3]; 3270[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1903[label="",style="solid", color="blue", weight=3]; 3271[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1904[label="",style="solid", color="blue", weight=3]; 3272[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1905[label="",style="solid", color="blue", weight=3]; 3273[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1906[label="",style="solid", color="blue", weight=3]; 3274[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1907[label="",style="solid", color="blue", weight=3]; 1817 -> 391[label="",style="dashed", color="red", weight=0]; 1817[label="xuu4610 == xuu4810 && (xuu4611 < xuu4811 || xuu4611 == xuu4811 && xuu4612 <= xuu4812)",fontsize=16,color="magenta"];1817 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1817 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1432[label="",style="dashed", color="red", weight=0]; 1767[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1767 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1433[label="",style="dashed", color="red", weight=0]; 1768[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1768 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1434[label="",style="dashed", color="red", weight=0]; 1769[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1769 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1435[label="",style="dashed", color="red", weight=0]; 1770[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1770 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1436[label="",style="dashed", color="red", weight=0]; 1771[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1771 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1437[label="",style="dashed", color="red", weight=0]; 1772[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1772 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1438[label="",style="dashed", color="red", weight=0]; 1773[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1773 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1439[label="",style="dashed", color="red", weight=0]; 1774[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1774 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1440[label="",style="dashed", color="red", weight=0]; 1775[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1775 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1441[label="",style="dashed", color="red", weight=0]; 1776[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1776 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1442[label="",style="dashed", color="red", weight=0]; 1777[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1777 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1443[label="",style="dashed", color="red", weight=0]; 1778[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1778 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1444[label="",style="dashed", color="red", weight=0]; 1779[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1779 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1445[label="",style="dashed", color="red", weight=0]; 1780[label="xuu4610 <= xuu4810",fontsize=16,color="magenta"];1780 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1938[label="",style="dashed", color="red", weight=0]; 1781[label="primCompAux xuu4600 xuu4800 (compare xuu4601 xuu4801)",fontsize=16,color="magenta"];1781 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1782[label="GT",fontsize=16,color="green",shape="box"];1783[label="LT",fontsize=16,color="green",shape="box"];1784[label="EQ",fontsize=16,color="green",shape="box"];1786 -> 142[label="",style="dashed", color="red", weight=0]; 1786[label="xuu460 == xuu480",fontsize=16,color="magenta"];1786 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1786 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1785[label="compare2 xuu460 xuu480 xuu129",fontsize=16,color="burlywood",shape="triangle"];3275[label="xuu129/False",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 1942[label="",style="solid", color="burlywood", weight=3]; 3276[label="xuu129/True",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 1943[label="",style="solid", color="burlywood", weight=3]; 1787[label="xuu480",fontsize=16,color="green",shape="box"];1788 -> 141[label="",style="dashed", color="red", weight=0]; 1788[label="xuu460 == xuu480",fontsize=16,color="magenta"];1788 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1788 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1789[label="xuu460",fontsize=16,color="green",shape="box"];1790[label="compare (xuu4600 * xuu4801) (xuu4800 * xuu4601)",fontsize=16,color="blue",shape="box"];3277[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1790 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1946[label="",style="solid", color="blue", weight=3]; 3278[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1790 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1947[label="",style="solid", color="blue", weight=3]; 1791[label="primCmpDouble (Double xuu4600 (Pos xuu46010)) xuu480",fontsize=16,color="burlywood",shape="box"];3279[label="xuu480/Double xuu4800 xuu4801",fontsize=10,color="white",style="solid",shape="box"];1791 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 1948[label="",style="solid", color="burlywood", weight=3]; 1792[label="primCmpDouble (Double xuu4600 (Neg xuu46010)) xuu480",fontsize=16,color="burlywood",shape="box"];3280[label="xuu480/Double xuu4800 xuu4801",fontsize=10,color="white",style="solid",shape="box"];1792 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 1949[label="",style="solid", color="burlywood", weight=3]; 1793[label="primCmpChar (Char xuu4600) (Char xuu4800)",fontsize=16,color="black",shape="box"];1793 -> 1950[label="",style="solid", color="black", weight=3]; 1795 -> 140[label="",style="dashed", color="red", weight=0]; 1795[label="xuu460 == xuu480",fontsize=16,color="magenta"];1795 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1795 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1794[label="compare2 xuu460 xuu480 xuu130",fontsize=16,color="burlywood",shape="triangle"];3281[label="xuu130/False",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 1953[label="",style="solid", color="burlywood", weight=3]; 3282[label="xuu130/True",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 1954[label="",style="solid", color="burlywood", weight=3]; 1797 -> 138[label="",style="dashed", color="red", weight=0]; 1797[label="xuu460 == xuu480",fontsize=16,color="magenta"];1797 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1797 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1796[label="compare2 xuu460 xuu480 xuu131",fontsize=16,color="burlywood",shape="triangle"];3283[label="xuu131/False",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 1957[label="",style="solid", color="burlywood", weight=3]; 3284[label="xuu131/True",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 1958[label="",style="solid", color="burlywood", weight=3]; 1798 -> 1086[label="",style="dashed", color="red", weight=0]; 1798[label="primCmpInt xuu4600 xuu4800",fontsize=16,color="magenta"];1798 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1798 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1800 -> 146[label="",style="dashed", color="red", weight=0]; 1800[label="xuu460 == xuu480",fontsize=16,color="magenta"];1800 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1800 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1799[label="compare2 xuu460 xuu480 xuu132",fontsize=16,color="burlywood",shape="triangle"];3285[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];1799 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 1963[label="",style="solid", color="burlywood", weight=3]; 3286[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];1799 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 1964[label="",style="solid", color="burlywood", weight=3]; 1802 -> 149[label="",style="dashed", color="red", weight=0]; 1802[label="xuu460 == xuu480",fontsize=16,color="magenta"];1802 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1802 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1801[label="compare2 xuu460 xuu480 xuu133",fontsize=16,color="burlywood",shape="triangle"];3287[label="xuu133/False",fontsize=10,color="white",style="solid",shape="box"];1801 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 1967[label="",style="solid", color="burlywood", weight=3]; 3288[label="xuu133/True",fontsize=10,color="white",style="solid",shape="box"];1801 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 1968[label="",style="solid", color="burlywood", weight=3]; 1803[label="EQ",fontsize=16,color="green",shape="box"];1804[label="primCmpFloat (Float xuu4600 (Pos xuu46010)) xuu480",fontsize=16,color="burlywood",shape="box"];3289[label="xuu480/Float xuu4800 xuu4801",fontsize=10,color="white",style="solid",shape="box"];1804 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 1969[label="",style="solid", color="burlywood", weight=3]; 1805[label="primCmpFloat (Float xuu4600 (Neg xuu46010)) xuu480",fontsize=16,color="burlywood",shape="box"];3290[label="xuu480/Float xuu4800 xuu4801",fontsize=10,color="white",style="solid",shape="box"];1805 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 1970[label="",style="solid", color="burlywood", weight=3]; 1806[label="GT",fontsize=16,color="green",shape="box"];1360[label="primPlusInt (Pos xuu3820) (Pos xuu1010)",fontsize=16,color="black",shape="box"];1360 -> 1467[label="",style="solid", color="black", weight=3]; 1361[label="primPlusInt (Pos xuu3820) (Neg xuu1010)",fontsize=16,color="black",shape="box"];1361 -> 1468[label="",style="solid", color="black", weight=3]; 1362[label="primPlusInt (Neg xuu3820) (Pos xuu1010)",fontsize=16,color="black",shape="box"];1362 -> 1469[label="",style="solid", color="black", weight=3]; 1363[label="primPlusInt (Neg xuu3820) (Neg xuu1010)",fontsize=16,color="black",shape="box"];1363 -> 1470[label="",style="solid", color="black", weight=3]; 1403[label="primCmpInt (Pos (Succ xuu4600)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1403 -> 1473[label="",style="solid", color="black", weight=3]; 1404[label="primCmpInt (Pos (Succ xuu4600)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1404 -> 1474[label="",style="solid", color="black", weight=3]; 1405[label="primCmpInt (Pos Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];3291[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 1475[label="",style="solid", color="burlywood", weight=3]; 3292[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 1476[label="",style="solid", color="burlywood", weight=3]; 1406[label="primCmpInt (Pos Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];3293[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1477[label="",style="solid", color="burlywood", weight=3]; 3294[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1478[label="",style="solid", color="burlywood", weight=3]; 1407[label="primCmpInt (Neg (Succ xuu4600)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1407 -> 1479[label="",style="solid", color="black", weight=3]; 1408[label="primCmpInt (Neg (Succ xuu4600)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1408 -> 1480[label="",style="solid", color="black", weight=3]; 1409[label="primCmpInt (Neg Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];3295[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 1481[label="",style="solid", color="burlywood", weight=3]; 3296[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 1482[label="",style="solid", color="burlywood", weight=3]; 1410[label="primCmpInt (Neg Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];3297[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 1483[label="",style="solid", color="burlywood", weight=3]; 3298[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 1484[label="",style="solid", color="burlywood", weight=3]; 1411 -> 870[label="",style="dashed", color="red", weight=0]; 1411[label="FiniteMap.mkBranchResult (xuu16,xuu17) xuu18 xuu38 xuu21",fontsize=16,color="magenta"];1412 -> 1485[label="",style="dashed", color="red", weight=0]; 1412[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 (FiniteMap.sizeFM xuu384 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu383)",fontsize=16,color="magenta"];1412 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1565[label="xuu213",fontsize=16,color="green",shape="box"];1566 -> 1224[label="",style="dashed", color="red", weight=0]; 1566[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1566 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1567[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1568[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 otherwise",fontsize=16,color="black",shape="box"];1568 -> 1686[label="",style="solid", color="black", weight=3]; 1569[label="FiniteMap.mkBalBranch6Single_L (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1569 -> 1687[label="",style="solid", color="black", weight=3]; 2781[label="xuu214",fontsize=16,color="green",shape="box"];2782[label="FiniteMap.mkBranchLeft_size xuu229 xuu210 xuu214",fontsize=16,color="black",shape="box"];2782 -> 2788[label="",style="solid", color="black", weight=3]; 2783[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];1471[label="Succ (Succ (primPlusNat xuu1050 xuu300000))",fontsize=16,color="green",shape="box"];1471 -> 1577[label="",style="dashed", color="green", weight=3]; 1472[label="Succ xuu300000",fontsize=16,color="green",shape="box"];1807[label="GT",fontsize=16,color="green",shape="box"];1808[label="xuu126",fontsize=16,color="green",shape="box"];1809[label="not False",fontsize=16,color="black",shape="box"];1809 -> 1971[label="",style="solid", color="black", weight=3]; 1810[label="not True",fontsize=16,color="black",shape="box"];1810 -> 1972[label="",style="solid", color="black", weight=3]; 1820 -> 1387[label="",style="dashed", color="red", weight=0]; 1820[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1820 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1820 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1388[label="",style="dashed", color="red", weight=0]; 1821[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1821 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1389[label="",style="dashed", color="red", weight=0]; 1822[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1822 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1390[label="",style="dashed", color="red", weight=0]; 1823[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1823 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1391[label="",style="dashed", color="red", weight=0]; 1824[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1824 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1392[label="",style="dashed", color="red", weight=0]; 1825[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1825 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1393[label="",style="dashed", color="red", weight=0]; 1826[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1826 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1394[label="",style="dashed", color="red", weight=0]; 1827[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1827 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1395[label="",style="dashed", color="red", weight=0]; 1828[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1828 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1396[label="",style="dashed", color="red", weight=0]; 1829[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1829 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1397[label="",style="dashed", color="red", weight=0]; 1830[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1830 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1398[label="",style="dashed", color="red", weight=0]; 1831[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1831 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1399[label="",style="dashed", color="red", weight=0]; 1832[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1832 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1400[label="",style="dashed", color="red", weight=0]; 1833[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1833 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1833 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1834[label="xuu4610 == xuu4810",fontsize=16,color="blue",shape="box"];3299[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 2001[label="",style="solid", color="blue", weight=3]; 3300[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 2002[label="",style="solid", color="blue", weight=3]; 3301[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 2003[label="",style="solid", color="blue", weight=3]; 3302[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 2004[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 2005[label="",style="solid", color="blue", weight=3]; 3304[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 2006[label="",style="solid", color="blue", weight=3]; 3305[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 2007[label="",style="solid", color="blue", weight=3]; 3306[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 2008[label="",style="solid", color="blue", weight=3]; 3307[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 2009[label="",style="solid", color="blue", weight=3]; 3308[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 2010[label="",style="solid", color="blue", weight=3]; 3309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 2011[label="",style="solid", color="blue", weight=3]; 3310[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 2012[label="",style="solid", color="blue", weight=3]; 3311[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 2013[label="",style="solid", color="blue", weight=3]; 3312[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 2014[label="",style="solid", color="blue", weight=3]; 1835[label="xuu4611 <= xuu4811",fontsize=16,color="blue",shape="box"];3313[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 2015[label="",style="solid", color="blue", weight=3]; 3314[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 2016[label="",style="solid", color="blue", weight=3]; 3315[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 2017[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 2018[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 2019[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 2020[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 2021[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 2022[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 2023[label="",style="solid", color="blue", weight=3]; 3322[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 2024[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2025[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2026[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2027[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2028[label="",style="solid", color="blue", weight=3]; 1836[label="False || xuu138",fontsize=16,color="black",shape="box"];1836 -> 2029[label="",style="solid", color="black", weight=3]; 1837[label="True || xuu138",fontsize=16,color="black",shape="box"];1837 -> 2030[label="",style="solid", color="black", weight=3]; 1838[label="xuu4610",fontsize=16,color="green",shape="box"];1839[label="xuu4810",fontsize=16,color="green",shape="box"];1840[label="xuu4610",fontsize=16,color="green",shape="box"];1841[label="xuu4810",fontsize=16,color="green",shape="box"];1842[label="xuu4610",fontsize=16,color="green",shape="box"];1843[label="xuu4810",fontsize=16,color="green",shape="box"];1844[label="xuu4610",fontsize=16,color="green",shape="box"];1845[label="xuu4810",fontsize=16,color="green",shape="box"];1846[label="xuu4610",fontsize=16,color="green",shape="box"];1847[label="xuu4810",fontsize=16,color="green",shape="box"];1848[label="xuu4610",fontsize=16,color="green",shape="box"];1849[label="xuu4810",fontsize=16,color="green",shape="box"];1850[label="xuu4610",fontsize=16,color="green",shape="box"];1851[label="xuu4810",fontsize=16,color="green",shape="box"];1852[label="xuu4610",fontsize=16,color="green",shape="box"];1853[label="xuu4810",fontsize=16,color="green",shape="box"];1854[label="xuu4610",fontsize=16,color="green",shape="box"];1855[label="xuu4810",fontsize=16,color="green",shape="box"];1856[label="xuu4610",fontsize=16,color="green",shape="box"];1857[label="xuu4810",fontsize=16,color="green",shape="box"];1858[label="xuu4610",fontsize=16,color="green",shape="box"];1859[label="xuu4810",fontsize=16,color="green",shape="box"];1860[label="xuu4610",fontsize=16,color="green",shape="box"];1861[label="xuu4810",fontsize=16,color="green",shape="box"];1862[label="xuu4610",fontsize=16,color="green",shape="box"];1863[label="xuu4810",fontsize=16,color="green",shape="box"];1864[label="xuu4610",fontsize=16,color="green",shape="box"];1865[label="xuu4810",fontsize=16,color="green",shape="box"];1866[label="xuu4610",fontsize=16,color="green",shape="box"];1867[label="xuu4810",fontsize=16,color="green",shape="box"];1868[label="xuu4610",fontsize=16,color="green",shape="box"];1869[label="xuu4810",fontsize=16,color="green",shape="box"];1870[label="xuu4610",fontsize=16,color="green",shape="box"];1871[label="xuu4810",fontsize=16,color="green",shape="box"];1872[label="xuu4610",fontsize=16,color="green",shape="box"];1873[label="xuu4810",fontsize=16,color="green",shape="box"];1874[label="xuu4610",fontsize=16,color="green",shape="box"];1875[label="xuu4810",fontsize=16,color="green",shape="box"];1876[label="xuu4610",fontsize=16,color="green",shape="box"];1877[label="xuu4810",fontsize=16,color="green",shape="box"];1878[label="xuu4610",fontsize=16,color="green",shape="box"];1879[label="xuu4810",fontsize=16,color="green",shape="box"];1880[label="xuu4610",fontsize=16,color="green",shape="box"];1881[label="xuu4810",fontsize=16,color="green",shape="box"];1882[label="xuu4610",fontsize=16,color="green",shape="box"];1883[label="xuu4810",fontsize=16,color="green",shape="box"];1884[label="xuu4610",fontsize=16,color="green",shape="box"];1885[label="xuu4810",fontsize=16,color="green",shape="box"];1886[label="xuu4610",fontsize=16,color="green",shape="box"];1887[label="xuu4810",fontsize=16,color="green",shape="box"];1888[label="xuu4610",fontsize=16,color="green",shape="box"];1889[label="xuu4810",fontsize=16,color="green",shape="box"];1890[label="xuu4610",fontsize=16,color="green",shape="box"];1891[label="xuu4810",fontsize=16,color="green",shape="box"];1892[label="xuu4610",fontsize=16,color="green",shape="box"];1893[label="xuu4810",fontsize=16,color="green",shape="box"];1894 -> 1387[label="",style="dashed", color="red", weight=0]; 1894[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1894 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1895 -> 1388[label="",style="dashed", color="red", weight=0]; 1895[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1895 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1896 -> 1389[label="",style="dashed", color="red", weight=0]; 1896[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1896 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1897 -> 1390[label="",style="dashed", color="red", weight=0]; 1897[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1897 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1391[label="",style="dashed", color="red", weight=0]; 1898[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1898 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1392[label="",style="dashed", color="red", weight=0]; 1899[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1899 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1393[label="",style="dashed", color="red", weight=0]; 1900[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1900 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1394[label="",style="dashed", color="red", weight=0]; 1901[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1901 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1395[label="",style="dashed", color="red", weight=0]; 1902[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1902 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1396[label="",style="dashed", color="red", weight=0]; 1903[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1903 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1397[label="",style="dashed", color="red", weight=0]; 1904[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1904 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1398[label="",style="dashed", color="red", weight=0]; 1905[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1905 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1399[label="",style="dashed", color="red", weight=0]; 1906[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1906 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1400[label="",style="dashed", color="red", weight=0]; 1907[label="xuu4610 < xuu4810",fontsize=16,color="magenta"];1907 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1908[label="xuu4610 == xuu4810",fontsize=16,color="blue",shape="box"];3327[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2059[label="",style="solid", color="blue", weight=3]; 3328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2060[label="",style="solid", color="blue", weight=3]; 3329[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2061[label="",style="solid", color="blue", weight=3]; 3330[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2062[label="",style="solid", color="blue", weight=3]; 3331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2063[label="",style="solid", color="blue", weight=3]; 3332[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2064[label="",style="solid", color="blue", weight=3]; 3333[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2065[label="",style="solid", color="blue", weight=3]; 3334[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2066[label="",style="solid", color="blue", weight=3]; 3335[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2067[label="",style="solid", color="blue", weight=3]; 3336[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 2068[label="",style="solid", color="blue", weight=3]; 3337[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 2069[label="",style="solid", color="blue", weight=3]; 3338[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2070[label="",style="solid", color="blue", weight=3]; 3339[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2071[label="",style="solid", color="blue", weight=3]; 3340[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2072[label="",style="solid", color="blue", weight=3]; 1909 -> 1813[label="",style="dashed", color="red", weight=0]; 1909[label="xuu4611 < xuu4811 || xuu4611 == xuu4811 && xuu4612 <= xuu4812",fontsize=16,color="magenta"];1909 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1910[label="xuu4610",fontsize=16,color="green",shape="box"];1911[label="xuu4810",fontsize=16,color="green",shape="box"];1912[label="xuu4610",fontsize=16,color="green",shape="box"];1913[label="xuu4810",fontsize=16,color="green",shape="box"];1914[label="xuu4610",fontsize=16,color="green",shape="box"];1915[label="xuu4810",fontsize=16,color="green",shape="box"];1916[label="xuu4610",fontsize=16,color="green",shape="box"];1917[label="xuu4810",fontsize=16,color="green",shape="box"];1918[label="xuu4610",fontsize=16,color="green",shape="box"];1919[label="xuu4810",fontsize=16,color="green",shape="box"];1920[label="xuu4610",fontsize=16,color="green",shape="box"];1921[label="xuu4810",fontsize=16,color="green",shape="box"];1922[label="xuu4610",fontsize=16,color="green",shape="box"];1923[label="xuu4810",fontsize=16,color="green",shape="box"];1924[label="xuu4610",fontsize=16,color="green",shape="box"];1925[label="xuu4810",fontsize=16,color="green",shape="box"];1926[label="xuu4610",fontsize=16,color="green",shape="box"];1927[label="xuu4810",fontsize=16,color="green",shape="box"];1928[label="xuu4610",fontsize=16,color="green",shape="box"];1929[label="xuu4810",fontsize=16,color="green",shape="box"];1930[label="xuu4610",fontsize=16,color="green",shape="box"];1931[label="xuu4810",fontsize=16,color="green",shape="box"];1932[label="xuu4610",fontsize=16,color="green",shape="box"];1933[label="xuu4810",fontsize=16,color="green",shape="box"];1934[label="xuu4610",fontsize=16,color="green",shape="box"];1935[label="xuu4810",fontsize=16,color="green",shape="box"];1936[label="xuu4610",fontsize=16,color="green",shape="box"];1937[label="xuu4810",fontsize=16,color="green",shape="box"];1939 -> 1535[label="",style="dashed", color="red", weight=0]; 1939[label="compare xuu4601 xuu4801",fontsize=16,color="magenta"];1939 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1938[label="primCompAux xuu4600 xuu4800 xuu139",fontsize=16,color="black",shape="triangle"];1938 -> 2077[label="",style="solid", color="black", weight=3]; 1940[label="xuu480",fontsize=16,color="green",shape="box"];1941[label="xuu460",fontsize=16,color="green",shape="box"];1942[label="compare2 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];1942 -> 2095[label="",style="solid", color="black", weight=3]; 1943[label="compare2 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];1943 -> 2096[label="",style="solid", color="black", weight=3]; 1944[label="xuu480",fontsize=16,color="green",shape="box"];1945[label="xuu460",fontsize=16,color="green",shape="box"];1946 -> 1551[label="",style="dashed", color="red", weight=0]; 1946[label="compare (xuu4600 * xuu4801) (xuu4800 * xuu4601)",fontsize=16,color="magenta"];1946 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1247[label="",style="dashed", color="red", weight=0]; 1947[label="compare (xuu4600 * xuu4801) (xuu4800 * xuu4601)",fontsize=16,color="magenta"];1947 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1948[label="primCmpDouble (Double xuu4600 (Pos xuu46010)) (Double xuu4800 xuu4801)",fontsize=16,color="burlywood",shape="box"];3341[label="xuu4801/Pos xuu48010",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 2101[label="",style="solid", color="burlywood", weight=3]; 3342[label="xuu4801/Neg xuu48010",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3342[label="",style="solid", color="burlywood", weight=9]; 3342 -> 2102[label="",style="solid", color="burlywood", weight=3]; 1949[label="primCmpDouble (Double xuu4600 (Neg xuu46010)) (Double xuu4800 xuu4801)",fontsize=16,color="burlywood",shape="box"];3343[label="xuu4801/Pos xuu48010",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 2103[label="",style="solid", color="burlywood", weight=3]; 3344[label="xuu4801/Neg xuu48010",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 2104[label="",style="solid", color="burlywood", weight=3]; 1950 -> 1698[label="",style="dashed", color="red", weight=0]; 1950[label="primCmpNat xuu4600 xuu4800",fontsize=16,color="magenta"];1950 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1951[label="xuu480",fontsize=16,color="green",shape="box"];1952[label="xuu460",fontsize=16,color="green",shape="box"];1953[label="compare2 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];1953 -> 2107[label="",style="solid", color="black", weight=3]; 1954[label="compare2 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];1954 -> 2108[label="",style="solid", color="black", weight=3]; 1955[label="xuu480",fontsize=16,color="green",shape="box"];1956[label="xuu460",fontsize=16,color="green",shape="box"];1957[label="compare2 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];1957 -> 2109[label="",style="solid", color="black", weight=3]; 1958[label="compare2 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];1958 -> 2110[label="",style="solid", color="black", weight=3]; 1959[label="xuu4800",fontsize=16,color="green",shape="box"];1960[label="xuu4600",fontsize=16,color="green",shape="box"];1961[label="xuu480",fontsize=16,color="green",shape="box"];1962[label="xuu460",fontsize=16,color="green",shape="box"];1963[label="compare2 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];1963 -> 2111[label="",style="solid", color="black", weight=3]; 1964[label="compare2 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];1964 -> 2112[label="",style="solid", color="black", weight=3]; 1965[label="xuu480",fontsize=16,color="green",shape="box"];1966[label="xuu460",fontsize=16,color="green",shape="box"];1967[label="compare2 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];1967 -> 2113[label="",style="solid", color="black", weight=3]; 1968[label="compare2 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];1968 -> 2114[label="",style="solid", color="black", weight=3]; 1969[label="primCmpFloat (Float xuu4600 (Pos xuu46010)) (Float xuu4800 xuu4801)",fontsize=16,color="burlywood",shape="box"];3345[label="xuu4801/Pos xuu48010",fontsize=10,color="white",style="solid",shape="box"];1969 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 2115[label="",style="solid", color="burlywood", weight=3]; 3346[label="xuu4801/Neg xuu48010",fontsize=10,color="white",style="solid",shape="box"];1969 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 2116[label="",style="solid", color="burlywood", weight=3]; 1970[label="primCmpFloat (Float xuu4600 (Neg xuu46010)) (Float xuu4800 xuu4801)",fontsize=16,color="burlywood",shape="box"];3347[label="xuu4801/Pos xuu48010",fontsize=10,color="white",style="solid",shape="box"];1970 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 2117[label="",style="solid", color="burlywood", weight=3]; 3348[label="xuu4801/Neg xuu48010",fontsize=10,color="white",style="solid",shape="box"];1970 -> 3348[label="",style="solid", color="burlywood", weight=9]; 3348 -> 2118[label="",style="solid", color="burlywood", weight=3]; 1467[label="Pos (primPlusNat xuu3820 xuu1010)",fontsize=16,color="green",shape="box"];1467 -> 1571[label="",style="dashed", color="green", weight=3]; 1468[label="primMinusNat xuu3820 xuu1010",fontsize=16,color="burlywood",shape="triangle"];3349[label="xuu3820/Succ xuu38200",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3349[label="",style="solid", color="burlywood", weight=9]; 3349 -> 1572[label="",style="solid", color="burlywood", weight=3]; 3350[label="xuu3820/Zero",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3350[label="",style="solid", color="burlywood", weight=9]; 3350 -> 1573[label="",style="solid", color="burlywood", weight=3]; 1469 -> 1468[label="",style="dashed", color="red", weight=0]; 1469[label="primMinusNat xuu1010 xuu3820",fontsize=16,color="magenta"];1469 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1470[label="Neg (primPlusNat xuu3820 xuu1010)",fontsize=16,color="green",shape="box"];1470 -> 1576[label="",style="dashed", color="green", weight=3]; 1473[label="primCmpNat (Succ xuu4600) xuu480",fontsize=16,color="burlywood",shape="triangle"];3351[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3351[label="",style="solid", color="burlywood", weight=9]; 3351 -> 1578[label="",style="solid", color="burlywood", weight=3]; 3352[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3352[label="",style="solid", color="burlywood", weight=9]; 3352 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1474[label="GT",fontsize=16,color="green",shape="box"];1475[label="primCmpInt (Pos Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];1475 -> 1580[label="",style="solid", color="black", weight=3]; 1476[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1476 -> 1581[label="",style="solid", color="black", weight=3]; 1477[label="primCmpInt (Pos Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];1477 -> 1582[label="",style="solid", color="black", weight=3]; 1478[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1478 -> 1583[label="",style="solid", color="black", weight=3]; 1479[label="LT",fontsize=16,color="green",shape="box"];1480[label="primCmpNat xuu480 (Succ xuu4600)",fontsize=16,color="burlywood",shape="triangle"];3353[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 1584[label="",style="solid", color="burlywood", weight=3]; 3354[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1481[label="primCmpInt (Neg Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];1481 -> 1586[label="",style="solid", color="black", weight=3]; 1482[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1482 -> 1587[label="",style="solid", color="black", weight=3]; 1483[label="primCmpInt (Neg Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];1483 -> 1588[label="",style="solid", color="black", weight=3]; 1484[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1484 -> 1589[label="",style="solid", color="black", weight=3]; 1486 -> 1397[label="",style="dashed", color="red", weight=0]; 1486[label="FiniteMap.sizeFM xuu384 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu383",fontsize=16,color="magenta"];1486 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1485[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 xuu122",fontsize=16,color="burlywood",shape="triangle"];3355[label="xuu122/False",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3355[label="",style="solid", color="burlywood", weight=9]; 3355 -> 1592[label="",style="solid", color="burlywood", weight=3]; 3356[label="xuu122/True",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3356[label="",style="solid", color="burlywood", weight=9]; 3356 -> 1593[label="",style="solid", color="burlywood", weight=3]; 1685[label="xuu214",fontsize=16,color="green",shape="box"];1686[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];1686 -> 2078[label="",style="solid", color="black", weight=3]; 1687[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu214",fontsize=16,color="black",shape="box"];1687 -> 2079[label="",style="solid", color="black", weight=3]; 2788 -> 1224[label="",style="dashed", color="red", weight=0]; 2788[label="FiniteMap.sizeFM xuu229",fontsize=16,color="magenta"];2788 -> 2789[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1571[label="",style="dashed", color="red", weight=0]; 1577[label="primPlusNat xuu1050 xuu300000",fontsize=16,color="magenta"];1577 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1971[label="True",fontsize=16,color="green",shape="box"];1972[label="False",fontsize=16,color="green",shape="box"];1973[label="xuu4610",fontsize=16,color="green",shape="box"];1974[label="xuu4810",fontsize=16,color="green",shape="box"];1975[label="xuu4610",fontsize=16,color="green",shape="box"];1976[label="xuu4810",fontsize=16,color="green",shape="box"];1977[label="xuu4610",fontsize=16,color="green",shape="box"];1978[label="xuu4810",fontsize=16,color="green",shape="box"];1979[label="xuu4610",fontsize=16,color="green",shape="box"];1980[label="xuu4810",fontsize=16,color="green",shape="box"];1981[label="xuu4610",fontsize=16,color="green",shape="box"];1982[label="xuu4810",fontsize=16,color="green",shape="box"];1983[label="xuu4610",fontsize=16,color="green",shape="box"];1984[label="xuu4810",fontsize=16,color="green",shape="box"];1985[label="xuu4610",fontsize=16,color="green",shape="box"];1986[label="xuu4810",fontsize=16,color="green",shape="box"];1987[label="xuu4610",fontsize=16,color="green",shape="box"];1988[label="xuu4810",fontsize=16,color="green",shape="box"];1989[label="xuu4610",fontsize=16,color="green",shape="box"];1990[label="xuu4810",fontsize=16,color="green",shape="box"];1991[label="xuu4610",fontsize=16,color="green",shape="box"];1992[label="xuu4810",fontsize=16,color="green",shape="box"];1993[label="xuu4610",fontsize=16,color="green",shape="box"];1994[label="xuu4810",fontsize=16,color="green",shape="box"];1995[label="xuu4610",fontsize=16,color="green",shape="box"];1996[label="xuu4810",fontsize=16,color="green",shape="box"];1997[label="xuu4610",fontsize=16,color="green",shape="box"];1998[label="xuu4810",fontsize=16,color="green",shape="box"];1999[label="xuu4610",fontsize=16,color="green",shape="box"];2000[label="xuu4810",fontsize=16,color="green",shape="box"];2001 -> 144[label="",style="dashed", color="red", weight=0]; 2001[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2001 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2002 -> 142[label="",style="dashed", color="red", weight=0]; 2002[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2002 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2003 -> 141[label="",style="dashed", color="red", weight=0]; 2003[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2003 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2004 -> 145[label="",style="dashed", color="red", weight=0]; 2004[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2004 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2005 -> 148[label="",style="dashed", color="red", weight=0]; 2005[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2005 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2006 -> 147[label="",style="dashed", color="red", weight=0]; 2006[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2006 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2007 -> 140[label="",style="dashed", color="red", weight=0]; 2007[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2007 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2008 -> 138[label="",style="dashed", color="red", weight=0]; 2008[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2008 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2009 -> 150[label="",style="dashed", color="red", weight=0]; 2009[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2009 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2010 -> 146[label="",style="dashed", color="red", weight=0]; 2010[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2010 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2011 -> 139[label="",style="dashed", color="red", weight=0]; 2011[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2011 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2012 -> 149[label="",style="dashed", color="red", weight=0]; 2012[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2012 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2013 -> 143[label="",style="dashed", color="red", weight=0]; 2013[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2013 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2014 -> 137[label="",style="dashed", color="red", weight=0]; 2014[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2014 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2015 -> 1432[label="",style="dashed", color="red", weight=0]; 2015[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2015 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2016 -> 1433[label="",style="dashed", color="red", weight=0]; 2016[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2016 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2017 -> 1434[label="",style="dashed", color="red", weight=0]; 2017[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2017 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2018 -> 1435[label="",style="dashed", color="red", weight=0]; 2018[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2018 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2019 -> 1436[label="",style="dashed", color="red", weight=0]; 2019[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2019 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2020 -> 1437[label="",style="dashed", color="red", weight=0]; 2020[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2020 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1438[label="",style="dashed", color="red", weight=0]; 2021[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2021 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1439[label="",style="dashed", color="red", weight=0]; 2022[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2022 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1440[label="",style="dashed", color="red", weight=0]; 2023[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2023 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1441[label="",style="dashed", color="red", weight=0]; 2024[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2024 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2025 -> 1442[label="",style="dashed", color="red", weight=0]; 2025[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2025 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2026 -> 1443[label="",style="dashed", color="red", weight=0]; 2026[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2026 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2027 -> 1444[label="",style="dashed", color="red", weight=0]; 2027[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2027 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1445[label="",style="dashed", color="red", weight=0]; 2028[label="xuu4611 <= xuu4811",fontsize=16,color="magenta"];2028 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2029[label="xuu138",fontsize=16,color="green",shape="box"];2030[label="True",fontsize=16,color="green",shape="box"];2031[label="xuu4610",fontsize=16,color="green",shape="box"];2032[label="xuu4810",fontsize=16,color="green",shape="box"];2033[label="xuu4610",fontsize=16,color="green",shape="box"];2034[label="xuu4810",fontsize=16,color="green",shape="box"];2035[label="xuu4610",fontsize=16,color="green",shape="box"];2036[label="xuu4810",fontsize=16,color="green",shape="box"];2037[label="xuu4610",fontsize=16,color="green",shape="box"];2038[label="xuu4810",fontsize=16,color="green",shape="box"];2039[label="xuu4610",fontsize=16,color="green",shape="box"];2040[label="xuu4810",fontsize=16,color="green",shape="box"];2041[label="xuu4610",fontsize=16,color="green",shape="box"];2042[label="xuu4810",fontsize=16,color="green",shape="box"];2043[label="xuu4610",fontsize=16,color="green",shape="box"];2044[label="xuu4810",fontsize=16,color="green",shape="box"];2045[label="xuu4610",fontsize=16,color="green",shape="box"];2046[label="xuu4810",fontsize=16,color="green",shape="box"];2047[label="xuu4610",fontsize=16,color="green",shape="box"];2048[label="xuu4810",fontsize=16,color="green",shape="box"];2049[label="xuu4610",fontsize=16,color="green",shape="box"];2050[label="xuu4810",fontsize=16,color="green",shape="box"];2051[label="xuu4610",fontsize=16,color="green",shape="box"];2052[label="xuu4810",fontsize=16,color="green",shape="box"];2053[label="xuu4610",fontsize=16,color="green",shape="box"];2054[label="xuu4810",fontsize=16,color="green",shape="box"];2055[label="xuu4610",fontsize=16,color="green",shape="box"];2056[label="xuu4810",fontsize=16,color="green",shape="box"];2057[label="xuu4610",fontsize=16,color="green",shape="box"];2058[label="xuu4810",fontsize=16,color="green",shape="box"];2059 -> 144[label="",style="dashed", color="red", weight=0]; 2059[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2059 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2060 -> 142[label="",style="dashed", color="red", weight=0]; 2060[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2060 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2061 -> 141[label="",style="dashed", color="red", weight=0]; 2061[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2061 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2062 -> 145[label="",style="dashed", color="red", weight=0]; 2062[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2062 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2063 -> 148[label="",style="dashed", color="red", weight=0]; 2063[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2063 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2064 -> 147[label="",style="dashed", color="red", weight=0]; 2064[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2064 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2065 -> 140[label="",style="dashed", color="red", weight=0]; 2065[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2065 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2066 -> 138[label="",style="dashed", color="red", weight=0]; 2066[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2066 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2067 -> 150[label="",style="dashed", color="red", weight=0]; 2067[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2067 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2068 -> 146[label="",style="dashed", color="red", weight=0]; 2068[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2068 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2069 -> 139[label="",style="dashed", color="red", weight=0]; 2069[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2069 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2070 -> 149[label="",style="dashed", color="red", weight=0]; 2070[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2070 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2071 -> 143[label="",style="dashed", color="red", weight=0]; 2071[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2071 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2072 -> 137[label="",style="dashed", color="red", weight=0]; 2072[label="xuu4610 == xuu4810",fontsize=16,color="magenta"];2072 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2073[label="xuu4611 < xuu4811",fontsize=16,color="blue",shape="box"];3357[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 2203[label="",style="solid", color="blue", weight=3]; 3358[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 2204[label="",style="solid", color="blue", weight=3]; 3359[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 2205[label="",style="solid", color="blue", weight=3]; 3360[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 2206[label="",style="solid", color="blue", weight=3]; 3361[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 2207[label="",style="solid", color="blue", weight=3]; 3362[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 2208[label="",style="solid", color="blue", weight=3]; 3363[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 2209[label="",style="solid", color="blue", weight=3]; 3364[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 2210[label="",style="solid", color="blue", weight=3]; 3365[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 2211[label="",style="solid", color="blue", weight=3]; 3366[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 2212[label="",style="solid", color="blue", weight=3]; 3367[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 2213[label="",style="solid", color="blue", weight=3]; 3368[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 2214[label="",style="solid", color="blue", weight=3]; 3369[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2215[label="",style="solid", color="blue", weight=3]; 3370[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2073 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2216[label="",style="solid", color="blue", weight=3]; 2074 -> 391[label="",style="dashed", color="red", weight=0]; 2074[label="xuu4611 == xuu4811 && xuu4612 <= xuu4812",fontsize=16,color="magenta"];2074 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2075[label="xuu4601",fontsize=16,color="green",shape="box"];2076[label="xuu4801",fontsize=16,color="green",shape="box"];2077 -> 2219[label="",style="dashed", color="red", weight=0]; 2077[label="primCompAux0 xuu139 (compare xuu4600 xuu4800)",fontsize=16,color="magenta"];2077 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2222[label="",style="dashed", color="red", weight=0]; 2095[label="compare1 xuu460 xuu480 (xuu460 <= xuu480)",fontsize=16,color="magenta"];2095 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2096[label="EQ",fontsize=16,color="green",shape="box"];2097[label="xuu4600 * xuu4801",fontsize=16,color="burlywood",shape="triangle"];3371[label="xuu4600/Integer xuu46000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3371[label="",style="solid", color="burlywood", weight=9]; 3371 -> 2224[label="",style="solid", color="burlywood", weight=3]; 2098 -> 2097[label="",style="dashed", color="red", weight=0]; 2098[label="xuu4800 * xuu4601",fontsize=16,color="magenta"];2098 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2099 -> 375[label="",style="dashed", color="red", weight=0]; 2099[label="xuu4800 * xuu4601",fontsize=16,color="magenta"];2099 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2100 -> 375[label="",style="dashed", color="red", weight=0]; 2100[label="xuu4600 * xuu4801",fontsize=16,color="magenta"];2100 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2101[label="primCmpDouble (Double xuu4600 (Pos xuu46010)) (Double xuu4800 (Pos xuu48010))",fontsize=16,color="black",shape="box"];2101 -> 2231[label="",style="solid", color="black", weight=3]; 2102[label="primCmpDouble (Double xuu4600 (Pos xuu46010)) (Double xuu4800 (Neg xuu48010))",fontsize=16,color="black",shape="box"];2102 -> 2232[label="",style="solid", color="black", weight=3]; 2103[label="primCmpDouble (Double xuu4600 (Neg xuu46010)) (Double xuu4800 (Pos xuu48010))",fontsize=16,color="black",shape="box"];2103 -> 2233[label="",style="solid", color="black", weight=3]; 2104[label="primCmpDouble (Double xuu4600 (Neg xuu46010)) (Double xuu4800 (Neg xuu48010))",fontsize=16,color="black",shape="box"];2104 -> 2234[label="",style="solid", color="black", weight=3]; 2105[label="xuu4800",fontsize=16,color="green",shape="box"];2106[label="xuu4600",fontsize=16,color="green",shape="box"];1698[label="primCmpNat xuu4600 xuu4800",fontsize=16,color="burlywood",shape="triangle"];3372[label="xuu4600/Succ xuu46000",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3372[label="",style="solid", color="burlywood", weight=9]; 3372 -> 2088[label="",style="solid", color="burlywood", weight=3]; 3373[label="xuu4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3373[label="",style="solid", color="burlywood", weight=9]; 3373 -> 2089[label="",style="solid", color="burlywood", weight=3]; 2107 -> 2235[label="",style="dashed", color="red", weight=0]; 2107[label="compare1 xuu460 xuu480 (xuu460 <= xuu480)",fontsize=16,color="magenta"];2107 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2108[label="EQ",fontsize=16,color="green",shape="box"];2109 -> 2237[label="",style="dashed", color="red", weight=0]; 2109[label="compare1 xuu460 xuu480 (xuu460 <= xuu480)",fontsize=16,color="magenta"];2109 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2110[label="EQ",fontsize=16,color="green",shape="box"];2111 -> 2239[label="",style="dashed", color="red", weight=0]; 2111[label="compare1 xuu460 xuu480 (xuu460 <= xuu480)",fontsize=16,color="magenta"];2111 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2112[label="EQ",fontsize=16,color="green",shape="box"];2113 -> 2241[label="",style="dashed", color="red", weight=0]; 2113[label="compare1 xuu460 xuu480 (xuu460 <= xuu480)",fontsize=16,color="magenta"];2113 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2114[label="EQ",fontsize=16,color="green",shape="box"];2115[label="primCmpFloat (Float xuu4600 (Pos xuu46010)) (Float xuu4800 (Pos xuu48010))",fontsize=16,color="black",shape="box"];2115 -> 2243[label="",style="solid", color="black", weight=3]; 2116[label="primCmpFloat (Float xuu4600 (Pos xuu46010)) (Float xuu4800 (Neg xuu48010))",fontsize=16,color="black",shape="box"];2116 -> 2244[label="",style="solid", color="black", weight=3]; 2117[label="primCmpFloat (Float xuu4600 (Neg xuu46010)) (Float xuu4800 (Pos xuu48010))",fontsize=16,color="black",shape="box"];2117 -> 2245[label="",style="solid", color="black", weight=3]; 2118[label="primCmpFloat (Float xuu4600 (Neg xuu46010)) (Float xuu4800 (Neg xuu48010))",fontsize=16,color="black",shape="box"];2118 -> 2246[label="",style="solid", color="black", weight=3]; 1571[label="primPlusNat xuu3820 xuu1010",fontsize=16,color="burlywood",shape="triangle"];3374[label="xuu3820/Succ xuu38200",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3374[label="",style="solid", color="burlywood", weight=9]; 3374 -> 1688[label="",style="solid", color="burlywood", weight=3]; 3375[label="xuu3820/Zero",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3375[label="",style="solid", color="burlywood", weight=9]; 3375 -> 1689[label="",style="solid", color="burlywood", weight=3]; 1572[label="primMinusNat (Succ xuu38200) xuu1010",fontsize=16,color="burlywood",shape="box"];3376[label="xuu1010/Succ xuu10100",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3376[label="",style="solid", color="burlywood", weight=9]; 3376 -> 1690[label="",style="solid", color="burlywood", weight=3]; 3377[label="xuu1010/Zero",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3377[label="",style="solid", color="burlywood", weight=9]; 3377 -> 1691[label="",style="solid", color="burlywood", weight=3]; 1573[label="primMinusNat Zero xuu1010",fontsize=16,color="burlywood",shape="box"];3378[label="xuu1010/Succ xuu10100",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3378[label="",style="solid", color="burlywood", weight=9]; 3378 -> 1692[label="",style="solid", color="burlywood", weight=3]; 3379[label="xuu1010/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3379[label="",style="solid", color="burlywood", weight=9]; 3379 -> 1693[label="",style="solid", color="burlywood", weight=3]; 1574[label="xuu1010",fontsize=16,color="green",shape="box"];1575[label="xuu3820",fontsize=16,color="green",shape="box"];1576 -> 1571[label="",style="dashed", color="red", weight=0]; 1576[label="primPlusNat xuu3820 xuu1010",fontsize=16,color="magenta"];1576 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1578[label="primCmpNat (Succ xuu4600) (Succ xuu4800)",fontsize=16,color="black",shape="box"];1578 -> 1698[label="",style="solid", color="black", weight=3]; 1579[label="primCmpNat (Succ xuu4600) Zero",fontsize=16,color="black",shape="box"];1579 -> 1699[label="",style="solid", color="black", weight=3]; 1580 -> 1480[label="",style="dashed", color="red", weight=0]; 1580[label="primCmpNat Zero (Succ xuu4800)",fontsize=16,color="magenta"];1580 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1581[label="EQ",fontsize=16,color="green",shape="box"];1582[label="GT",fontsize=16,color="green",shape="box"];1583[label="EQ",fontsize=16,color="green",shape="box"];1584[label="primCmpNat (Succ xuu4800) (Succ xuu4600)",fontsize=16,color="black",shape="box"];1584 -> 1702[label="",style="solid", color="black", weight=3]; 1585[label="primCmpNat Zero (Succ xuu4600)",fontsize=16,color="black",shape="box"];1585 -> 1703[label="",style="solid", color="black", weight=3]; 1586[label="LT",fontsize=16,color="green",shape="box"];1587[label="EQ",fontsize=16,color="green",shape="box"];1588 -> 1473[label="",style="dashed", color="red", weight=0]; 1588[label="primCmpNat (Succ xuu4800) Zero",fontsize=16,color="magenta"];1588 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1589[label="EQ",fontsize=16,color="green",shape="box"];1590 -> 1224[label="",style="dashed", color="red", weight=0]; 1590[label="FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];1590 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1591 -> 375[label="",style="dashed", color="red", weight=0]; 1591[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu383",fontsize=16,color="magenta"];1591 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1592[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 False",fontsize=16,color="black",shape="box"];1592 -> 1709[label="",style="solid", color="black", weight=3]; 1593[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];1593 -> 1710[label="",style="solid", color="black", weight=3]; 2078[label="FiniteMap.mkBalBranch6Double_L (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="burlywood",shape="box"];3380[label="xuu213/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3380[label="",style="solid", color="burlywood", weight=9]; 3380 -> 2247[label="",style="solid", color="burlywood", weight=3]; 3381[label="xuu213/FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3381[label="",style="solid", color="burlywood", weight=9]; 3381 -> 2248[label="",style="solid", color="burlywood", weight=3]; 2079[label="FiniteMap.mkBranchResult xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu214",fontsize=16,color="black",shape="box"];2079 -> 2249[label="",style="solid", color="black", weight=3]; 2789[label="xuu229",fontsize=16,color="green",shape="box"];1696[label="xuu1050",fontsize=16,color="green",shape="box"];1697[label="xuu300000",fontsize=16,color="green",shape="box"];2119[label="xuu4810",fontsize=16,color="green",shape="box"];2120[label="xuu4610",fontsize=16,color="green",shape="box"];2121[label="xuu4810",fontsize=16,color="green",shape="box"];2122[label="xuu4610",fontsize=16,color="green",shape="box"];2123[label="xuu4810",fontsize=16,color="green",shape="box"];2124[label="xuu4610",fontsize=16,color="green",shape="box"];2125[label="xuu4810",fontsize=16,color="green",shape="box"];2126[label="xuu4610",fontsize=16,color="green",shape="box"];2127[label="xuu4810",fontsize=16,color="green",shape="box"];2128[label="xuu4610",fontsize=16,color="green",shape="box"];2129[label="xuu4810",fontsize=16,color="green",shape="box"];2130[label="xuu4610",fontsize=16,color="green",shape="box"];2131[label="xuu4810",fontsize=16,color="green",shape="box"];2132[label="xuu4610",fontsize=16,color="green",shape="box"];2133[label="xuu4810",fontsize=16,color="green",shape="box"];2134[label="xuu4610",fontsize=16,color="green",shape="box"];2135[label="xuu4810",fontsize=16,color="green",shape="box"];2136[label="xuu4610",fontsize=16,color="green",shape="box"];2137[label="xuu4810",fontsize=16,color="green",shape="box"];2138[label="xuu4610",fontsize=16,color="green",shape="box"];2139[label="xuu4810",fontsize=16,color="green",shape="box"];2140[label="xuu4610",fontsize=16,color="green",shape="box"];2141[label="xuu4810",fontsize=16,color="green",shape="box"];2142[label="xuu4610",fontsize=16,color="green",shape="box"];2143[label="xuu4810",fontsize=16,color="green",shape="box"];2144[label="xuu4610",fontsize=16,color="green",shape="box"];2145[label="xuu4810",fontsize=16,color="green",shape="box"];2146[label="xuu4610",fontsize=16,color="green",shape="box"];2147[label="xuu4611",fontsize=16,color="green",shape="box"];2148[label="xuu4811",fontsize=16,color="green",shape="box"];2149[label="xuu4611",fontsize=16,color="green",shape="box"];2150[label="xuu4811",fontsize=16,color="green",shape="box"];2151[label="xuu4611",fontsize=16,color="green",shape="box"];2152[label="xuu4811",fontsize=16,color="green",shape="box"];2153[label="xuu4611",fontsize=16,color="green",shape="box"];2154[label="xuu4811",fontsize=16,color="green",shape="box"];2155[label="xuu4611",fontsize=16,color="green",shape="box"];2156[label="xuu4811",fontsize=16,color="green",shape="box"];2157[label="xuu4611",fontsize=16,color="green",shape="box"];2158[label="xuu4811",fontsize=16,color="green",shape="box"];2159[label="xuu4611",fontsize=16,color="green",shape="box"];2160[label="xuu4811",fontsize=16,color="green",shape="box"];2161[label="xuu4611",fontsize=16,color="green",shape="box"];2162[label="xuu4811",fontsize=16,color="green",shape="box"];2163[label="xuu4611",fontsize=16,color="green",shape="box"];2164[label="xuu4811",fontsize=16,color="green",shape="box"];2165[label="xuu4611",fontsize=16,color="green",shape="box"];2166[label="xuu4811",fontsize=16,color="green",shape="box"];2167[label="xuu4611",fontsize=16,color="green",shape="box"];2168[label="xuu4811",fontsize=16,color="green",shape="box"];2169[label="xuu4611",fontsize=16,color="green",shape="box"];2170[label="xuu4811",fontsize=16,color="green",shape="box"];2171[label="xuu4611",fontsize=16,color="green",shape="box"];2172[label="xuu4811",fontsize=16,color="green",shape="box"];2173[label="xuu4611",fontsize=16,color="green",shape="box"];2174[label="xuu4811",fontsize=16,color="green",shape="box"];2175[label="xuu4810",fontsize=16,color="green",shape="box"];2176[label="xuu4610",fontsize=16,color="green",shape="box"];2177[label="xuu4810",fontsize=16,color="green",shape="box"];2178[label="xuu4610",fontsize=16,color="green",shape="box"];2179[label="xuu4810",fontsize=16,color="green",shape="box"];2180[label="xuu4610",fontsize=16,color="green",shape="box"];2181[label="xuu4810",fontsize=16,color="green",shape="box"];2182[label="xuu4610",fontsize=16,color="green",shape="box"];2183[label="xuu4810",fontsize=16,color="green",shape="box"];2184[label="xuu4610",fontsize=16,color="green",shape="box"];2185[label="xuu4810",fontsize=16,color="green",shape="box"];2186[label="xuu4610",fontsize=16,color="green",shape="box"];2187[label="xuu4810",fontsize=16,color="green",shape="box"];2188[label="xuu4610",fontsize=16,color="green",shape="box"];2189[label="xuu4810",fontsize=16,color="green",shape="box"];2190[label="xuu4610",fontsize=16,color="green",shape="box"];2191[label="xuu4810",fontsize=16,color="green",shape="box"];2192[label="xuu4610",fontsize=16,color="green",shape="box"];2193[label="xuu4810",fontsize=16,color="green",shape="box"];2194[label="xuu4610",fontsize=16,color="green",shape="box"];2195[label="xuu4810",fontsize=16,color="green",shape="box"];2196[label="xuu4610",fontsize=16,color="green",shape="box"];2197[label="xuu4810",fontsize=16,color="green",shape="box"];2198[label="xuu4610",fontsize=16,color="green",shape="box"];2199[label="xuu4810",fontsize=16,color="green",shape="box"];2200[label="xuu4610",fontsize=16,color="green",shape="box"];2201[label="xuu4810",fontsize=16,color="green",shape="box"];2202[label="xuu4610",fontsize=16,color="green",shape="box"];2203 -> 1387[label="",style="dashed", color="red", weight=0]; 2203[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2203 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2204 -> 1388[label="",style="dashed", color="red", weight=0]; 2204[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2204 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2205 -> 1389[label="",style="dashed", color="red", weight=0]; 2205[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2205 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2206 -> 1390[label="",style="dashed", color="red", weight=0]; 2206[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2206 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1391[label="",style="dashed", color="red", weight=0]; 2207[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2207 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1392[label="",style="dashed", color="red", weight=0]; 2208[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2208 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1393[label="",style="dashed", color="red", weight=0]; 2209[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2209 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1394[label="",style="dashed", color="red", weight=0]; 2210[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2210 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1395[label="",style="dashed", color="red", weight=0]; 2211[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2211 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1396[label="",style="dashed", color="red", weight=0]; 2212[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2212 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1397[label="",style="dashed", color="red", weight=0]; 2213[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2213 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1398[label="",style="dashed", color="red", weight=0]; 2214[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2214 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1399[label="",style="dashed", color="red", weight=0]; 2215[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2215 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1400[label="",style="dashed", color="red", weight=0]; 2216[label="xuu4611 < xuu4811",fontsize=16,color="magenta"];2216 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2217[label="xuu4611 == xuu4811",fontsize=16,color="blue",shape="box"];3382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 2278[label="",style="solid", color="blue", weight=3]; 3383[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 2279[label="",style="solid", color="blue", weight=3]; 3384[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 2280[label="",style="solid", color="blue", weight=3]; 3385[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2281[label="",style="solid", color="blue", weight=3]; 3386[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2282[label="",style="solid", color="blue", weight=3]; 3387[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2283[label="",style="solid", color="blue", weight=3]; 3388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2284[label="",style="solid", color="blue", weight=3]; 3389[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2285[label="",style="solid", color="blue", weight=3]; 3390[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2286[label="",style="solid", color="blue", weight=3]; 3391[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2287[label="",style="solid", color="blue", weight=3]; 3392[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2288[label="",style="solid", color="blue", weight=3]; 3393[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2289[label="",style="solid", color="blue", weight=3]; 3394[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2290[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2217 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2291[label="",style="solid", color="blue", weight=3]; 2218[label="xuu4612 <= xuu4812",fontsize=16,color="blue",shape="box"];3396[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2292[label="",style="solid", color="blue", weight=3]; 3397[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2293[label="",style="solid", color="blue", weight=3]; 3398[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2294[label="",style="solid", color="blue", weight=3]; 3399[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2295[label="",style="solid", color="blue", weight=3]; 3400[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2296[label="",style="solid", color="blue", weight=3]; 3401[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2297[label="",style="solid", color="blue", weight=3]; 3402[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2298[label="",style="solid", color="blue", weight=3]; 3403[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2299[label="",style="solid", color="blue", weight=3]; 3404[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2300[label="",style="solid", color="blue", weight=3]; 3405[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2301[label="",style="solid", color="blue", weight=3]; 3406[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2302[label="",style="solid", color="blue", weight=3]; 3407[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2303[label="",style="solid", color="blue", weight=3]; 3408[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2304[label="",style="solid", color="blue", weight=3]; 3409[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2305[label="",style="solid", color="blue", weight=3]; 2220[label="xuu139",fontsize=16,color="green",shape="box"];2221[label="compare xuu4600 xuu4800",fontsize=16,color="blue",shape="box"];3410[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2306[label="",style="solid", color="blue", weight=3]; 3411[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2307[label="",style="solid", color="blue", weight=3]; 3412[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2308[label="",style="solid", color="blue", weight=3]; 3413[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2309[label="",style="solid", color="blue", weight=3]; 3414[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2310[label="",style="solid", color="blue", weight=3]; 3415[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2311[label="",style="solid", color="blue", weight=3]; 3416[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2312[label="",style="solid", color="blue", weight=3]; 3417[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2313[label="",style="solid", color="blue", weight=3]; 3418[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2314[label="",style="solid", color="blue", weight=3]; 3419[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2315[label="",style="solid", color="blue", weight=3]; 3420[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2316[label="",style="solid", color="blue", weight=3]; 3421[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2317[label="",style="solid", color="blue", weight=3]; 3422[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2318[label="",style="solid", color="blue", weight=3]; 3423[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2221 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2319[label="",style="solid", color="blue", weight=3]; 2219[label="primCompAux0 xuu143 xuu144",fontsize=16,color="burlywood",shape="triangle"];3424[label="xuu144/LT",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 2320[label="",style="solid", color="burlywood", weight=3]; 3425[label="xuu144/EQ",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2321[label="",style="solid", color="burlywood", weight=3]; 3426[label="xuu144/GT",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2322[label="",style="solid", color="burlywood", weight=3]; 2223 -> 1433[label="",style="dashed", color="red", weight=0]; 2223[label="xuu460 <= xuu480",fontsize=16,color="magenta"];2223 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2222[label="compare1 xuu460 xuu480 xuu145",fontsize=16,color="burlywood",shape="triangle"];3427[label="xuu145/False",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 2325[label="",style="solid", color="burlywood", weight=3]; 3428[label="xuu145/True",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 2326[label="",style="solid", color="burlywood", weight=3]; 2224[label="Integer xuu46000 * xuu4801",fontsize=16,color="burlywood",shape="box"];3429[label="xuu4801/Integer xuu48010",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 2327[label="",style="solid", color="burlywood", weight=3]; 2225[label="xuu4601",fontsize=16,color="green",shape="box"];2226[label="xuu4800",fontsize=16,color="green",shape="box"];2227[label="xuu4601",fontsize=16,color="green",shape="box"];2228[label="xuu4800",fontsize=16,color="green",shape="box"];2229[label="xuu4801",fontsize=16,color="green",shape="box"];2230[label="xuu4600",fontsize=16,color="green",shape="box"];2231 -> 1247[label="",style="dashed", color="red", weight=0]; 2231[label="compare (xuu4600 * Pos xuu48010) (Pos xuu46010 * xuu4800)",fontsize=16,color="magenta"];2231 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2232 -> 1247[label="",style="dashed", color="red", weight=0]; 2232[label="compare (xuu4600 * Pos xuu48010) (Neg xuu46010 * xuu4800)",fontsize=16,color="magenta"];2232 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2233 -> 1247[label="",style="dashed", color="red", weight=0]; 2233[label="compare (xuu4600 * Neg xuu48010) (Pos xuu46010 * xuu4800)",fontsize=16,color="magenta"];2233 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2234 -> 1247[label="",style="dashed", color="red", weight=0]; 2234[label="compare (xuu4600 * Neg xuu48010) (Neg xuu46010 * xuu4800)",fontsize=16,color="magenta"];2234 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2088[label="primCmpNat (Succ xuu46000) xuu4800",fontsize=16,color="burlywood",shape="box"];3430[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];2088 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 2336[label="",style="solid", color="burlywood", weight=3]; 3431[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];2088 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 2337[label="",style="solid", color="burlywood", weight=3]; 2089[label="primCmpNat Zero xuu4800",fontsize=16,color="burlywood",shape="box"];3432[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];2089 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 2338[label="",style="solid", color="burlywood", weight=3]; 3433[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];2089 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 2339[label="",style="solid", color="burlywood", weight=3]; 2236 -> 1438[label="",style="dashed", color="red", weight=0]; 2236[label="xuu460 <= xuu480",fontsize=16,color="magenta"];2236 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2235[label="compare1 xuu460 xuu480 xuu146",fontsize=16,color="burlywood",shape="triangle"];3434[label="xuu146/False",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 2342[label="",style="solid", color="burlywood", weight=3]; 3435[label="xuu146/True",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 2343[label="",style="solid", color="burlywood", weight=3]; 2238 -> 1439[label="",style="dashed", color="red", weight=0]; 2238[label="xuu460 <= xuu480",fontsize=16,color="magenta"];2238 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2237[label="compare1 xuu460 xuu480 xuu147",fontsize=16,color="burlywood",shape="triangle"];3436[label="xuu147/False",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 2346[label="",style="solid", color="burlywood", weight=3]; 3437[label="xuu147/True",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 2347[label="",style="solid", color="burlywood", weight=3]; 2240 -> 1441[label="",style="dashed", color="red", weight=0]; 2240[label="xuu460 <= xuu480",fontsize=16,color="magenta"];2240 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2239[label="compare1 xuu460 xuu480 xuu148",fontsize=16,color="burlywood",shape="triangle"];3438[label="xuu148/False",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 2350[label="",style="solid", color="burlywood", weight=3]; 3439[label="xuu148/True",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 2351[label="",style="solid", color="burlywood", weight=3]; 2242 -> 1443[label="",style="dashed", color="red", weight=0]; 2242[label="xuu460 <= xuu480",fontsize=16,color="magenta"];2242 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2241[label="compare1 xuu460 xuu480 xuu149",fontsize=16,color="burlywood",shape="triangle"];3440[label="xuu149/False",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 2354[label="",style="solid", color="burlywood", weight=3]; 3441[label="xuu149/True",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2243 -> 1247[label="",style="dashed", color="red", weight=0]; 2243[label="compare (xuu4600 * Pos xuu48010) (Pos xuu46010 * xuu4800)",fontsize=16,color="magenta"];2243 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2244 -> 1247[label="",style="dashed", color="red", weight=0]; 2244[label="compare (xuu4600 * Pos xuu48010) (Neg xuu46010 * xuu4800)",fontsize=16,color="magenta"];2244 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2245 -> 1247[label="",style="dashed", color="red", weight=0]; 2245[label="compare (xuu4600 * Neg xuu48010) (Pos xuu46010 * xuu4800)",fontsize=16,color="magenta"];2245 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2246 -> 1247[label="",style="dashed", color="red", weight=0]; 2246[label="compare (xuu4600 * Neg xuu48010) (Neg xuu46010 * xuu4800)",fontsize=16,color="magenta"];2246 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2380[label="",style="dashed", color="magenta", weight=3]; 1688[label="primPlusNat (Succ xuu38200) xuu1010",fontsize=16,color="burlywood",shape="box"];3442[label="xuu1010/Succ xuu10100",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 2080[label="",style="solid", color="burlywood", weight=3]; 3443[label="xuu1010/Zero",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 2081[label="",style="solid", color="burlywood", weight=3]; 1689[label="primPlusNat Zero xuu1010",fontsize=16,color="burlywood",shape="box"];3444[label="xuu1010/Succ xuu10100",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 2082[label="",style="solid", color="burlywood", weight=3]; 3445[label="xuu1010/Zero",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 2083[label="",style="solid", color="burlywood", weight=3]; 1690[label="primMinusNat (Succ xuu38200) (Succ xuu10100)",fontsize=16,color="black",shape="box"];1690 -> 2084[label="",style="solid", color="black", weight=3]; 1691[label="primMinusNat (Succ xuu38200) Zero",fontsize=16,color="black",shape="box"];1691 -> 2085[label="",style="solid", color="black", weight=3]; 1692[label="primMinusNat Zero (Succ xuu10100)",fontsize=16,color="black",shape="box"];1692 -> 2086[label="",style="solid", color="black", weight=3]; 1693[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1693 -> 2087[label="",style="solid", color="black", weight=3]; 1694[label="xuu3820",fontsize=16,color="green",shape="box"];1695[label="xuu1010",fontsize=16,color="green",shape="box"];1699[label="GT",fontsize=16,color="green",shape="box"];1700[label="xuu4800",fontsize=16,color="green",shape="box"];1701[label="Zero",fontsize=16,color="green",shape="box"];1702 -> 1698[label="",style="dashed", color="red", weight=0]; 1702[label="primCmpNat xuu4800 xuu4600",fontsize=16,color="magenta"];1702 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1702 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1703[label="LT",fontsize=16,color="green",shape="box"];1704[label="Zero",fontsize=16,color="green",shape="box"];1705[label="xuu4800",fontsize=16,color="green",shape="box"];1706[label="xuu384",fontsize=16,color="green",shape="box"];1707 -> 1224[label="",style="dashed", color="red", weight=0]; 1707[label="FiniteMap.sizeFM xuu383",fontsize=16,color="magenta"];1707 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1708[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1709[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 otherwise",fontsize=16,color="black",shape="box"];1709 -> 2093[label="",style="solid", color="black", weight=3]; 1710[label="FiniteMap.mkBalBranch6Single_R (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21",fontsize=16,color="black",shape="box"];1710 -> 2094[label="",style="solid", color="black", weight=3]; 2247[label="FiniteMap.mkBalBranch6Double_L (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214)",fontsize=16,color="black",shape="box"];2247 -> 2381[label="",style="solid", color="black", weight=3]; 2248[label="FiniteMap.mkBalBranch6Double_L (xuu16,xuu17) xuu18 xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214) xuu38 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214)",fontsize=16,color="black",shape="box"];2248 -> 2382[label="",style="solid", color="black", weight=3]; 2249[label="FiniteMap.Branch xuu210 xuu211 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214)) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu214",fontsize=16,color="green",shape="box"];2249 -> 2383[label="",style="dashed", color="green", weight=3]; 2249 -> 2384[label="",style="dashed", color="green", weight=3]; 2250[label="xuu4611",fontsize=16,color="green",shape="box"];2251[label="xuu4811",fontsize=16,color="green",shape="box"];2252[label="xuu4611",fontsize=16,color="green",shape="box"];2253[label="xuu4811",fontsize=16,color="green",shape="box"];2254[label="xuu4611",fontsize=16,color="green",shape="box"];2255[label="xuu4811",fontsize=16,color="green",shape="box"];2256[label="xuu4611",fontsize=16,color="green",shape="box"];2257[label="xuu4811",fontsize=16,color="green",shape="box"];2258[label="xuu4611",fontsize=16,color="green",shape="box"];2259[label="xuu4811",fontsize=16,color="green",shape="box"];2260[label="xuu4611",fontsize=16,color="green",shape="box"];2261[label="xuu4811",fontsize=16,color="green",shape="box"];2262[label="xuu4611",fontsize=16,color="green",shape="box"];2263[label="xuu4811",fontsize=16,color="green",shape="box"];2264[label="xuu4611",fontsize=16,color="green",shape="box"];2265[label="xuu4811",fontsize=16,color="green",shape="box"];2266[label="xuu4611",fontsize=16,color="green",shape="box"];2267[label="xuu4811",fontsize=16,color="green",shape="box"];2268[label="xuu4611",fontsize=16,color="green",shape="box"];2269[label="xuu4811",fontsize=16,color="green",shape="box"];2270[label="xuu4611",fontsize=16,color="green",shape="box"];2271[label="xuu4811",fontsize=16,color="green",shape="box"];2272[label="xuu4611",fontsize=16,color="green",shape="box"];2273[label="xuu4811",fontsize=16,color="green",shape="box"];2274[label="xuu4611",fontsize=16,color="green",shape="box"];2275[label="xuu4811",fontsize=16,color="green",shape="box"];2276[label="xuu4611",fontsize=16,color="green",shape="box"];2277[label="xuu4811",fontsize=16,color="green",shape="box"];2278 -> 144[label="",style="dashed", color="red", weight=0]; 2278[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2278 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2279 -> 142[label="",style="dashed", color="red", weight=0]; 2279[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2279 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2280 -> 141[label="",style="dashed", color="red", weight=0]; 2280[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2280 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2281 -> 145[label="",style="dashed", color="red", weight=0]; 2281[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2281 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2282 -> 148[label="",style="dashed", color="red", weight=0]; 2282[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2282 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2283 -> 147[label="",style="dashed", color="red", weight=0]; 2283[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2283 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2284 -> 140[label="",style="dashed", color="red", weight=0]; 2284[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2284 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2285 -> 138[label="",style="dashed", color="red", weight=0]; 2285[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2285 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2286 -> 150[label="",style="dashed", color="red", weight=0]; 2286[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2286 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2287 -> 146[label="",style="dashed", color="red", weight=0]; 2287[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2287 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2288 -> 139[label="",style="dashed", color="red", weight=0]; 2288[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2288 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2289 -> 149[label="",style="dashed", color="red", weight=0]; 2289[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2289 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2290 -> 143[label="",style="dashed", color="red", weight=0]; 2290[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2290 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2291 -> 137[label="",style="dashed", color="red", weight=0]; 2291[label="xuu4611 == xuu4811",fontsize=16,color="magenta"];2291 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2292 -> 1432[label="",style="dashed", color="red", weight=0]; 2292[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2292 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2293 -> 1433[label="",style="dashed", color="red", weight=0]; 2293[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2293 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2294 -> 1434[label="",style="dashed", color="red", weight=0]; 2294[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2294 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2295 -> 1435[label="",style="dashed", color="red", weight=0]; 2295[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2295 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2296 -> 1436[label="",style="dashed", color="red", weight=0]; 2296[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2296 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2297 -> 1437[label="",style="dashed", color="red", weight=0]; 2297[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2297 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2298 -> 1438[label="",style="dashed", color="red", weight=0]; 2298[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2298 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1439[label="",style="dashed", color="red", weight=0]; 2299[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2299 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1440[label="",style="dashed", color="red", weight=0]; 2300[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2300 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1441[label="",style="dashed", color="red", weight=0]; 2301[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2301 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1442[label="",style="dashed", color="red", weight=0]; 2302[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2302 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2303 -> 1443[label="",style="dashed", color="red", weight=0]; 2303[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2303 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1444[label="",style="dashed", color="red", weight=0]; 2304[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2304 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2305 -> 1445[label="",style="dashed", color="red", weight=0]; 2305[label="xuu4612 <= xuu4812",fontsize=16,color="magenta"];2305 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2306 -> 1535[label="",style="dashed", color="red", weight=0]; 2306[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2306 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1537[label="",style="dashed", color="red", weight=0]; 2307[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2307 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1539[label="",style="dashed", color="red", weight=0]; 2308[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2308 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1541[label="",style="dashed", color="red", weight=0]; 2309[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2309 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1543[label="",style="dashed", color="red", weight=0]; 2310[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2310 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1545[label="",style="dashed", color="red", weight=0]; 2311[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2311 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1547[label="",style="dashed", color="red", weight=0]; 2312[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2312 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1549[label="",style="dashed", color="red", weight=0]; 2313[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2313 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1551[label="",style="dashed", color="red", weight=0]; 2314[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2314 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1553[label="",style="dashed", color="red", weight=0]; 2315[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2315 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1247[label="",style="dashed", color="red", weight=0]; 2316[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2316 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1557[label="",style="dashed", color="red", weight=0]; 2317[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2317 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1559[label="",style="dashed", color="red", weight=0]; 2318[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2318 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1561[label="",style="dashed", color="red", weight=0]; 2319[label="compare xuu4600 xuu4800",fontsize=16,color="magenta"];2319 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2320[label="primCompAux0 xuu143 LT",fontsize=16,color="black",shape="box"];2320 -> 2469[label="",style="solid", color="black", weight=3]; 2321[label="primCompAux0 xuu143 EQ",fontsize=16,color="black",shape="box"];2321 -> 2470[label="",style="solid", color="black", weight=3]; 2322[label="primCompAux0 xuu143 GT",fontsize=16,color="black",shape="box"];2322 -> 2471[label="",style="solid", color="black", weight=3]; 2323[label="xuu460",fontsize=16,color="green",shape="box"];2324[label="xuu480",fontsize=16,color="green",shape="box"];2325[label="compare1 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];2325 -> 2472[label="",style="solid", color="black", weight=3]; 2326[label="compare1 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2326 -> 2473[label="",style="solid", color="black", weight=3]; 2327[label="Integer xuu46000 * Integer xuu48010",fontsize=16,color="black",shape="box"];2327 -> 2474[label="",style="solid", color="black", weight=3]; 2328 -> 375[label="",style="dashed", color="red", weight=0]; 2328[label="Pos xuu46010 * xuu4800",fontsize=16,color="magenta"];2328 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2329 -> 375[label="",style="dashed", color="red", weight=0]; 2329[label="xuu4600 * Pos xuu48010",fontsize=16,color="magenta"];2329 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2330 -> 375[label="",style="dashed", color="red", weight=0]; 2330[label="Neg xuu46010 * xuu4800",fontsize=16,color="magenta"];2330 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2331 -> 375[label="",style="dashed", color="red", weight=0]; 2331[label="xuu4600 * Pos xuu48010",fontsize=16,color="magenta"];2331 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2332 -> 375[label="",style="dashed", color="red", weight=0]; 2332[label="Pos xuu46010 * xuu4800",fontsize=16,color="magenta"];2332 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2333 -> 375[label="",style="dashed", color="red", weight=0]; 2333[label="xuu4600 * Neg xuu48010",fontsize=16,color="magenta"];2333 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2334 -> 375[label="",style="dashed", color="red", weight=0]; 2334[label="Neg xuu46010 * xuu4800",fontsize=16,color="magenta"];2334 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2335 -> 375[label="",style="dashed", color="red", weight=0]; 2335[label="xuu4600 * Neg xuu48010",fontsize=16,color="magenta"];2335 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2336[label="primCmpNat (Succ xuu46000) (Succ xuu48000)",fontsize=16,color="black",shape="box"];2336 -> 2491[label="",style="solid", color="black", weight=3]; 2337[label="primCmpNat (Succ xuu46000) Zero",fontsize=16,color="black",shape="box"];2337 -> 2492[label="",style="solid", color="black", weight=3]; 2338[label="primCmpNat Zero (Succ xuu48000)",fontsize=16,color="black",shape="box"];2338 -> 2493[label="",style="solid", color="black", weight=3]; 2339[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2339 -> 2494[label="",style="solid", color="black", weight=3]; 2340[label="xuu460",fontsize=16,color="green",shape="box"];2341[label="xuu480",fontsize=16,color="green",shape="box"];2342[label="compare1 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];2342 -> 2495[label="",style="solid", color="black", weight=3]; 2343[label="compare1 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2343 -> 2496[label="",style="solid", color="black", weight=3]; 2344[label="xuu460",fontsize=16,color="green",shape="box"];2345[label="xuu480",fontsize=16,color="green",shape="box"];2346[label="compare1 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];2346 -> 2497[label="",style="solid", color="black", weight=3]; 2347[label="compare1 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2347 -> 2498[label="",style="solid", color="black", weight=3]; 2348[label="xuu460",fontsize=16,color="green",shape="box"];2349[label="xuu480",fontsize=16,color="green",shape="box"];2350[label="compare1 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];2350 -> 2499[label="",style="solid", color="black", weight=3]; 2351[label="compare1 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2351 -> 2500[label="",style="solid", color="black", weight=3]; 2352[label="xuu460",fontsize=16,color="green",shape="box"];2353[label="xuu480",fontsize=16,color="green",shape="box"];2354[label="compare1 xuu460 xuu480 False",fontsize=16,color="black",shape="box"];2354 -> 2501[label="",style="solid", color="black", weight=3]; 2355[label="compare1 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2355 -> 2502[label="",style="solid", color="black", weight=3]; 2373 -> 375[label="",style="dashed", color="red", weight=0]; 2373[label="Pos xuu46010 * xuu4800",fontsize=16,color="magenta"];2373 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2374 -> 375[label="",style="dashed", color="red", weight=0]; 2374[label="xuu4600 * Pos xuu48010",fontsize=16,color="magenta"];2374 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2375 -> 375[label="",style="dashed", color="red", weight=0]; 2375[label="Neg xuu46010 * xuu4800",fontsize=16,color="magenta"];2375 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2376 -> 375[label="",style="dashed", color="red", weight=0]; 2376[label="xuu4600 * Pos xuu48010",fontsize=16,color="magenta"];2376 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2377 -> 375[label="",style="dashed", color="red", weight=0]; 2377[label="Pos xuu46010 * xuu4800",fontsize=16,color="magenta"];2377 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2378 -> 375[label="",style="dashed", color="red", weight=0]; 2378[label="xuu4600 * Neg xuu48010",fontsize=16,color="magenta"];2378 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2379 -> 375[label="",style="dashed", color="red", weight=0]; 2379[label="Neg xuu46010 * xuu4800",fontsize=16,color="magenta"];2379 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2380 -> 375[label="",style="dashed", color="red", weight=0]; 2380[label="xuu4600 * Neg xuu48010",fontsize=16,color="magenta"];2380 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2080[label="primPlusNat (Succ xuu38200) (Succ xuu10100)",fontsize=16,color="black",shape="box"];2080 -> 2356[label="",style="solid", color="black", weight=3]; 2081[label="primPlusNat (Succ xuu38200) Zero",fontsize=16,color="black",shape="box"];2081 -> 2357[label="",style="solid", color="black", weight=3]; 2082[label="primPlusNat Zero (Succ xuu10100)",fontsize=16,color="black",shape="box"];2082 -> 2358[label="",style="solid", color="black", weight=3]; 2083[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2083 -> 2359[label="",style="solid", color="black", weight=3]; 2084 -> 1468[label="",style="dashed", color="red", weight=0]; 2084[label="primMinusNat xuu38200 xuu10100",fontsize=16,color="magenta"];2084 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2085[label="Pos (Succ xuu38200)",fontsize=16,color="green",shape="box"];2086[label="Neg (Succ xuu10100)",fontsize=16,color="green",shape="box"];2087[label="Pos Zero",fontsize=16,color="green",shape="box"];2090[label="xuu4600",fontsize=16,color="green",shape="box"];2091[label="xuu4800",fontsize=16,color="green",shape="box"];2092[label="xuu383",fontsize=16,color="green",shape="box"];2093[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];2093 -> 2362[label="",style="solid", color="black", weight=3]; 2094 -> 2363[label="",style="dashed", color="red", weight=0]; 2094[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu380 xuu381 xuu383 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu16,xuu17) xuu18 xuu384 xuu21)",fontsize=16,color="magenta"];2094 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2381[label="error []",fontsize=16,color="red",shape="box"];2382 -> 2523[label="",style="dashed", color="red", weight=0]; 2382[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2130 xuu2131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu16,xuu17) xuu18 xuu38 xuu2133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu210 xuu211 xuu2134 xuu214)",fontsize=16,color="magenta"];2382 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2679[label="",style="dashed", color="red", weight=0]; 2383[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214)",fontsize=16,color="magenta"];2383 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2384[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213",fontsize=16,color="black",shape="triangle"];2384 -> 2537[label="",style="solid", color="black", weight=3]; 2385[label="xuu4811",fontsize=16,color="green",shape="box"];2386[label="xuu4611",fontsize=16,color="green",shape="box"];2387[label="xuu4811",fontsize=16,color="green",shape="box"];2388[label="xuu4611",fontsize=16,color="green",shape="box"];2389[label="xuu4811",fontsize=16,color="green",shape="box"];2390[label="xuu4611",fontsize=16,color="green",shape="box"];2391[label="xuu4811",fontsize=16,color="green",shape="box"];2392[label="xuu4611",fontsize=16,color="green",shape="box"];2393[label="xuu4811",fontsize=16,color="green",shape="box"];2394[label="xuu4611",fontsize=16,color="green",shape="box"];2395[label="xuu4811",fontsize=16,color="green",shape="box"];2396[label="xuu4611",fontsize=16,color="green",shape="box"];2397[label="xuu4811",fontsize=16,color="green",shape="box"];2398[label="xuu4611",fontsize=16,color="green",shape="box"];2399[label="xuu4811",fontsize=16,color="green",shape="box"];2400[label="xuu4611",fontsize=16,color="green",shape="box"];2401[label="xuu4811",fontsize=16,color="green",shape="box"];2402[label="xuu4611",fontsize=16,color="green",shape="box"];2403[label="xuu4811",fontsize=16,color="green",shape="box"];2404[label="xuu4611",fontsize=16,color="green",shape="box"];2405[label="xuu4811",fontsize=16,color="green",shape="box"];2406[label="xuu4611",fontsize=16,color="green",shape="box"];2407[label="xuu4811",fontsize=16,color="green",shape="box"];2408[label="xuu4611",fontsize=16,color="green",shape="box"];2409[label="xuu4811",fontsize=16,color="green",shape="box"];2410[label="xuu4611",fontsize=16,color="green",shape="box"];2411[label="xuu4811",fontsize=16,color="green",shape="box"];2412[label="xuu4611",fontsize=16,color="green",shape="box"];2413[label="xuu4612",fontsize=16,color="green",shape="box"];2414[label="xuu4812",fontsize=16,color="green",shape="box"];2415[label="xuu4612",fontsize=16,color="green",shape="box"];2416[label="xuu4812",fontsize=16,color="green",shape="box"];2417[label="xuu4612",fontsize=16,color="green",shape="box"];2418[label="xuu4812",fontsize=16,color="green",shape="box"];2419[label="xuu4612",fontsize=16,color="green",shape="box"];2420[label="xuu4812",fontsize=16,color="green",shape="box"];2421[label="xuu4612",fontsize=16,color="green",shape="box"];2422[label="xuu4812",fontsize=16,color="green",shape="box"];2423[label="xuu4612",fontsize=16,color="green",shape="box"];2424[label="xuu4812",fontsize=16,color="green",shape="box"];2425[label="xuu4612",fontsize=16,color="green",shape="box"];2426[label="xuu4812",fontsize=16,color="green",shape="box"];2427[label="xuu4612",fontsize=16,color="green",shape="box"];2428[label="xuu4812",fontsize=16,color="green",shape="box"];2429[label="xuu4612",fontsize=16,color="green",shape="box"];2430[label="xuu4812",fontsize=16,color="green",shape="box"];2431[label="xuu4612",fontsize=16,color="green",shape="box"];2432[label="xuu4812",fontsize=16,color="green",shape="box"];2433[label="xuu4612",fontsize=16,color="green",shape="box"];2434[label="xuu4812",fontsize=16,color="green",shape="box"];2435[label="xuu4612",fontsize=16,color="green",shape="box"];2436[label="xuu4812",fontsize=16,color="green",shape="box"];2437[label="xuu4612",fontsize=16,color="green",shape="box"];2438[label="xuu4812",fontsize=16,color="green",shape="box"];2439[label="xuu4612",fontsize=16,color="green",shape="box"];2440[label="xuu4812",fontsize=16,color="green",shape="box"];2441[label="xuu4600",fontsize=16,color="green",shape="box"];2442[label="xuu4800",fontsize=16,color="green",shape="box"];2443[label="xuu4600",fontsize=16,color="green",shape="box"];2444[label="xuu4800",fontsize=16,color="green",shape="box"];2445[label="xuu4600",fontsize=16,color="green",shape="box"];2446[label="xuu4800",fontsize=16,color="green",shape="box"];2447[label="xuu4600",fontsize=16,color="green",shape="box"];2448[label="xuu4800",fontsize=16,color="green",shape="box"];2449[label="xuu4600",fontsize=16,color="green",shape="box"];2450[label="xuu4800",fontsize=16,color="green",shape="box"];2451[label="xuu4600",fontsize=16,color="green",shape="box"];2452[label="xuu4800",fontsize=16,color="green",shape="box"];2453[label="xuu4600",fontsize=16,color="green",shape="box"];2454[label="xuu4800",fontsize=16,color="green",shape="box"];2455[label="xuu4600",fontsize=16,color="green",shape="box"];2456[label="xuu4800",fontsize=16,color="green",shape="box"];2457[label="xuu4600",fontsize=16,color="green",shape="box"];2458[label="xuu4800",fontsize=16,color="green",shape="box"];2459[label="xuu4600",fontsize=16,color="green",shape="box"];2460[label="xuu4800",fontsize=16,color="green",shape="box"];2461[label="xuu4800",fontsize=16,color="green",shape="box"];2462[label="xuu4600",fontsize=16,color="green",shape="box"];2463[label="xuu4600",fontsize=16,color="green",shape="box"];2464[label="xuu4800",fontsize=16,color="green",shape="box"];2465[label="xuu4600",fontsize=16,color="green",shape="box"];2466[label="xuu4800",fontsize=16,color="green",shape="box"];2467[label="xuu4600",fontsize=16,color="green",shape="box"];2468[label="xuu4800",fontsize=16,color="green",shape="box"];2469[label="LT",fontsize=16,color="green",shape="box"];2470[label="xuu143",fontsize=16,color="green",shape="box"];2471[label="GT",fontsize=16,color="green",shape="box"];2472[label="compare0 xuu460 xuu480 otherwise",fontsize=16,color="black",shape="box"];2472 -> 2538[label="",style="solid", color="black", weight=3]; 2473[label="LT",fontsize=16,color="green",shape="box"];2474[label="Integer (primMulInt xuu46000 xuu48010)",fontsize=16,color="green",shape="box"];2474 -> 2539[label="",style="dashed", color="green", weight=3]; 2475[label="xuu4800",fontsize=16,color="green",shape="box"];2476[label="Pos xuu46010",fontsize=16,color="green",shape="box"];2477[label="Pos xuu48010",fontsize=16,color="green",shape="box"];2478[label="xuu4600",fontsize=16,color="green",shape="box"];2479[label="xuu4800",fontsize=16,color="green",shape="box"];2480[label="Neg xuu46010",fontsize=16,color="green",shape="box"];2481[label="Pos xuu48010",fontsize=16,color="green",shape="box"];2482[label="xuu4600",fontsize=16,color="green",shape="box"];2483[label="xuu4800",fontsize=16,color="green",shape="box"];2484[label="Pos xuu46010",fontsize=16,color="green",shape="box"];2485[label="Neg xuu48010",fontsize=16,color="green",shape="box"];2486[label="xuu4600",fontsize=16,color="green",shape="box"];2487[label="xuu4800",fontsize=16,color="green",shape="box"];2488[label="Neg xuu46010",fontsize=16,color="green",shape="box"];2489[label="Neg xuu48010",fontsize=16,color="green",shape="box"];2490[label="xuu4600",fontsize=16,color="green",shape="box"];2491 -> 1698[label="",style="dashed", color="red", weight=0]; 2491[label="primCmpNat xuu46000 xuu48000",fontsize=16,color="magenta"];2491 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2492[label="GT",fontsize=16,color="green",shape="box"];2493[label="LT",fontsize=16,color="green",shape="box"];2494[label="EQ",fontsize=16,color="green",shape="box"];2495[label="compare0 xuu460 xuu480 otherwise",fontsize=16,color="black",shape="box"];2495 -> 2542[label="",style="solid", color="black", weight=3]; 2496[label="LT",fontsize=16,color="green",shape="box"];2497[label="compare0 xuu460 xuu480 otherwise",fontsize=16,color="black",shape="box"];2497 -> 2543[label="",style="solid", color="black", weight=3]; 2498[label="LT",fontsize=16,color="green",shape="box"];2499[label="compare0 xuu460 xuu480 otherwise",fontsize=16,color="black",shape="box"];2499 -> 2544[label="",style="solid", color="black", weight=3]; 2500[label="LT",fontsize=16,color="green",shape="box"];2501[label="compare0 xuu460 xuu480 otherwise",fontsize=16,color="black",shape="box"];2501 -> 2545[label="",style="solid", color="black", weight=3]; 2502[label="LT",fontsize=16,color="green",shape="box"];2507[label="xuu4800",fontsize=16,color="green",shape="box"];2508[label="Pos xuu46010",fontsize=16,color="green",shape="box"];2509[label="Pos xuu48010",fontsize=16,color="green",shape="box"];2510[label="xuu4600",fontsize=16,color="green",shape="box"];2511[label="xuu4800",fontsize=16,color="green",shape="box"];2512[label="Neg xuu46010",fontsize=16,color="green",shape="box"];2513[label="Pos xuu48010",fontsize=16,color="green",shape="box"];2514[label="xuu4600",fontsize=16,color="green",shape="box"];2515[label="xuu4800",fontsize=16,color="green",shape="box"];2516[label="Pos xuu46010",fontsize=16,color="green",shape="box"];2517[label="Neg xuu48010",fontsize=16,color="green",shape="box"];2518[label="xuu4600",fontsize=16,color="green",shape="box"];2519[label="xuu4800",fontsize=16,color="green",shape="box"];2520[label="Neg xuu46010",fontsize=16,color="green",shape="box"];2521[label="Neg xuu48010",fontsize=16,color="green",shape="box"];2522[label="xuu4600",fontsize=16,color="green",shape="box"];2356[label="Succ (Succ (primPlusNat xuu38200 xuu10100))",fontsize=16,color="green",shape="box"];2356 -> 2503[label="",style="dashed", color="green", weight=3]; 2357[label="Succ xuu38200",fontsize=16,color="green",shape="box"];2358[label="Succ xuu10100",fontsize=16,color="green",shape="box"];2359[label="Zero",fontsize=16,color="green",shape="box"];2360[label="xuu38200",fontsize=16,color="green",shape="box"];2361[label="xuu10100",fontsize=16,color="green",shape="box"];2362[label="FiniteMap.mkBalBranch6Double_R (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu21",fontsize=16,color="burlywood",shape="box"];3446[label="xuu384/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2362 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 2504[label="",style="solid", color="burlywood", weight=3]; 3447[label="xuu384/FiniteMap.Branch xuu3840 xuu3841 xuu3842 xuu3843 xuu3844",fontsize=10,color="white",style="solid",shape="box"];2362 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 2505[label="",style="solid", color="burlywood", weight=3]; 2364[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];2365[label="xuu21",fontsize=16,color="green",shape="box"];2366[label="xuu16",fontsize=16,color="green",shape="box"];2367[label="xuu17",fontsize=16,color="green",shape="box"];2368[label="xuu383",fontsize=16,color="green",shape="box"];2369[label="xuu384",fontsize=16,color="green",shape="box"];2370[label="xuu380",fontsize=16,color="green",shape="box"];2371[label="xuu381",fontsize=16,color="green",shape="box"];2372[label="xuu18",fontsize=16,color="green",shape="box"];2363[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu151 xuu152 xuu153 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159)",fontsize=16,color="black",shape="triangle"];2363 -> 2506[label="",style="solid", color="black", weight=3]; 2524[label="xuu16",fontsize=16,color="green",shape="box"];2525[label="xuu2131",fontsize=16,color="green",shape="box"];2526[label="xuu17",fontsize=16,color="green",shape="box"];2527[label="xuu18",fontsize=16,color="green",shape="box"];2528[label="xuu211",fontsize=16,color="green",shape="box"];2529[label="xuu38",fontsize=16,color="green",shape="box"];2530[label="xuu2130",fontsize=16,color="green",shape="box"];2531[label="xuu2133",fontsize=16,color="green",shape="box"];2532[label="xuu210",fontsize=16,color="green",shape="box"];2533[label="xuu214",fontsize=16,color="green",shape="box"];2534[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2535[label="xuu2134",fontsize=16,color="green",shape="box"];2523[label="FiniteMap.mkBranch (Pos (Succ xuu161)) xuu162 xuu163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172)",fontsize=16,color="black",shape="triangle"];2523 -> 2546[label="",style="solid", color="black", weight=3]; 2684 -> 2701[label="",style="dashed", color="red", weight=0]; 2684[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213) xuu210 xuu214",fontsize=16,color="magenta"];2684 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2685[label="xuu214",fontsize=16,color="green",shape="box"];2686 -> 2585[label="",style="dashed", color="red", weight=0]; 2686[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213",fontsize=16,color="magenta"];2686 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2687[label="xuu210",fontsize=16,color="green",shape="box"];2537 -> 870[label="",style="dashed", color="red", weight=0]; 2537[label="FiniteMap.mkBranchResult (xuu16,xuu17) xuu18 xuu38 xuu213",fontsize=16,color="magenta"];2537 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2538[label="compare0 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2538 -> 2561[label="",style="solid", color="black", weight=3]; 2539 -> 612[label="",style="dashed", color="red", weight=0]; 2539[label="primMulInt xuu46000 xuu48010",fontsize=16,color="magenta"];2539 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2540[label="xuu48000",fontsize=16,color="green",shape="box"];2541[label="xuu46000",fontsize=16,color="green",shape="box"];2542[label="compare0 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2542 -> 2564[label="",style="solid", color="black", weight=3]; 2543[label="compare0 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2543 -> 2565[label="",style="solid", color="black", weight=3]; 2544[label="compare0 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2544 -> 2566[label="",style="solid", color="black", weight=3]; 2545[label="compare0 xuu460 xuu480 True",fontsize=16,color="black",shape="box"];2545 -> 2567[label="",style="solid", color="black", weight=3]; 2503 -> 1571[label="",style="dashed", color="red", weight=0]; 2503[label="primPlusNat xuu38200 xuu10100",fontsize=16,color="magenta"];2503 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2504[label="FiniteMap.mkBalBranch6Double_R (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 FiniteMap.EmptyFM) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 FiniteMap.EmptyFM) xuu21",fontsize=16,color="black",shape="box"];2504 -> 2549[label="",style="solid", color="black", weight=3]; 2505[label="FiniteMap.mkBalBranch6Double_R (xuu16,xuu17) xuu18 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 (FiniteMap.Branch xuu3840 xuu3841 xuu3842 xuu3843 xuu3844)) xuu21 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 (FiniteMap.Branch xuu3840 xuu3841 xuu3842 xuu3843 xuu3844)) xuu21",fontsize=16,color="black",shape="box"];2505 -> 2550[label="",style="solid", color="black", weight=3]; 2506[label="FiniteMap.mkBranchResult xuu151 xuu152 xuu153 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159)",fontsize=16,color="black",shape="triangle"];2506 -> 2551[label="",style="solid", color="black", weight=3]; 2546[label="FiniteMap.mkBranchResult xuu162 xuu163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172)",fontsize=16,color="black",shape="box"];2546 -> 2568[label="",style="solid", color="black", weight=3]; 2706 -> 2585[label="",style="dashed", color="red", weight=0]; 2706[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213",fontsize=16,color="magenta"];2706 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2585[label="",style="dashed", color="red", weight=0]; 2707[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu16,xuu17) xuu18 xuu38 xuu213",fontsize=16,color="magenta"];2707 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2717[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2718[label="xuu213",fontsize=16,color="green",shape="box"];2719[label="xuu16",fontsize=16,color="green",shape="box"];2720[label="xuu17",fontsize=16,color="green",shape="box"];2721[label="xuu38",fontsize=16,color="green",shape="box"];2722[label="xuu18",fontsize=16,color="green",shape="box"];2585[label="FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159",fontsize=16,color="black",shape="triangle"];2585 -> 2654[label="",style="solid", color="black", weight=3]; 2560[label="xuu213",fontsize=16,color="green",shape="box"];2561[label="GT",fontsize=16,color="green",shape="box"];2562[label="xuu48010",fontsize=16,color="green",shape="box"];2563[label="xuu46000",fontsize=16,color="green",shape="box"];2564[label="GT",fontsize=16,color="green",shape="box"];2565[label="GT",fontsize=16,color="green",shape="box"];2566[label="GT",fontsize=16,color="green",shape="box"];2567[label="GT",fontsize=16,color="green",shape="box"];2547[label="xuu38200",fontsize=16,color="green",shape="box"];2548[label="xuu10100",fontsize=16,color="green",shape="box"];2549[label="error []",fontsize=16,color="red",shape="box"];2550 -> 2618[label="",style="dashed", color="red", weight=0]; 2550[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3840 xuu3841 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu380 xuu381 xuu383 xuu3843) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu16,xuu17) xuu18 xuu3844 xuu21)",fontsize=16,color="magenta"];2550 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2551[label="FiniteMap.Branch xuu151 xuu152 (FiniteMap.mkBranchUnbox xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159) + FiniteMap.mkBranchRight_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159))) xuu153 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159)",fontsize=16,color="green",shape="box"];2551 -> 2584[label="",style="dashed", color="green", weight=3]; 2551 -> 2585[label="",style="dashed", color="green", weight=3]; 2568[label="FiniteMap.Branch xuu162 xuu163 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172))) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172)",fontsize=16,color="green",shape="box"];2568 -> 2586[label="",style="dashed", color="green", weight=3]; 2568 -> 2587[label="",style="dashed", color="green", weight=3]; 2568 -> 2588[label="",style="dashed", color="green", weight=3]; 2723[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2724[label="xuu213",fontsize=16,color="green",shape="box"];2725[label="xuu16",fontsize=16,color="green",shape="box"];2726[label="xuu17",fontsize=16,color="green",shape="box"];2727[label="xuu38",fontsize=16,color="green",shape="box"];2728[label="xuu18",fontsize=16,color="green",shape="box"];2729[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2730[label="xuu213",fontsize=16,color="green",shape="box"];2731[label="xuu16",fontsize=16,color="green",shape="box"];2732[label="xuu17",fontsize=16,color="green",shape="box"];2733[label="xuu38",fontsize=16,color="green",shape="box"];2734[label="xuu18",fontsize=16,color="green",shape="box"];2654 -> 870[label="",style="dashed", color="red", weight=0]; 2654[label="FiniteMap.mkBranchResult (xuu155,xuu156) xuu157 xuu158 xuu159",fontsize=16,color="magenta"];2654 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2619[label="xuu3844",fontsize=16,color="green",shape="box"];2620[label="xuu18",fontsize=16,color="green",shape="box"];2621[label="xuu3843",fontsize=16,color="green",shape="box"];2622[label="xuu17",fontsize=16,color="green",shape="box"];2623[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];2624[label="xuu3840",fontsize=16,color="green",shape="box"];2625[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];2626[label="xuu381",fontsize=16,color="green",shape="box"];2627[label="xuu380",fontsize=16,color="green",shape="box"];2628[label="xuu16",fontsize=16,color="green",shape="box"];2629[label="xuu383",fontsize=16,color="green",shape="box"];2630[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];2631[label="xuu21",fontsize=16,color="green",shape="box"];2632[label="xuu3841",fontsize=16,color="green",shape="box"];2618[label="FiniteMap.mkBranch (Pos (Succ xuu203)) xuu204 xuu205 (FiniteMap.mkBranch (Pos (Succ xuu206)) xuu207 xuu208 xuu209 xuu210) (FiniteMap.mkBranch (Pos (Succ xuu211)) (xuu212,xuu213) xuu214 xuu215 xuu216)",fontsize=16,color="black",shape="triangle"];2618 -> 2650[label="",style="solid", color="black", weight=3]; 2584 -> 2679[label="",style="dashed", color="red", weight=0]; 2584[label="FiniteMap.mkBranchUnbox xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159) + FiniteMap.mkBranchRight_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159))",fontsize=16,color="magenta"];2584 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2679[label="",style="dashed", color="red", weight=0]; 2586[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172))",fontsize=16,color="magenta"];2586 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2585[label="",style="dashed", color="red", weight=0]; 2587[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168",fontsize=16,color="magenta"];2587 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2588[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172",fontsize=16,color="black",shape="triangle"];2588 -> 2665[label="",style="solid", color="black", weight=3]; 2735[label="xuu158",fontsize=16,color="green",shape="box"];2736[label="xuu155",fontsize=16,color="green",shape="box"];2737[label="xuu156",fontsize=16,color="green",shape="box"];2738[label="xuu157",fontsize=16,color="green",shape="box"];2739[label="xuu159",fontsize=16,color="green",shape="box"];2650 -> 2506[label="",style="dashed", color="red", weight=0]; 2650[label="FiniteMap.mkBranchResult xuu204 xuu205 (FiniteMap.mkBranch (Pos (Succ xuu206)) xuu207 xuu208 xuu209 xuu210) (FiniteMap.mkBranch (Pos (Succ xuu211)) (xuu212,xuu213) xuu214 xuu215 xuu216)",fontsize=16,color="magenta"];2650 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2701[label="",style="dashed", color="red", weight=0]; 2688[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159) + FiniteMap.mkBranchRight_size xuu153 xuu151 (FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159)",fontsize=16,color="magenta"];2688 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2585[label="",style="dashed", color="red", weight=0]; 2689[label="FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159",fontsize=16,color="magenta"];2690 -> 2701[label="",style="dashed", color="red", weight=0]; 2690[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168) xuu162 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172)",fontsize=16,color="magenta"];2690 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2588[label="",style="dashed", color="red", weight=0]; 2691[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172",fontsize=16,color="magenta"];2692 -> 2585[label="",style="dashed", color="red", weight=0]; 2692[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168",fontsize=16,color="magenta"];2692 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2693[label="xuu162",fontsize=16,color="green",shape="box"];2659[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2660[label="xuu168",fontsize=16,color="green",shape="box"];2661[label="xuu164",fontsize=16,color="green",shape="box"];2662[label="xuu165",fontsize=16,color="green",shape="box"];2663[label="xuu167",fontsize=16,color="green",shape="box"];2664[label="xuu166",fontsize=16,color="green",shape="box"];2665[label="FiniteMap.mkBranchResult xuu169 xuu170 xuu171 xuu172",fontsize=16,color="black",shape="triangle"];2665 -> 2746[label="",style="solid", color="black", weight=3]; 2666[label="xuu211",fontsize=16,color="green",shape="box"];2667[label="xuu216",fontsize=16,color="green",shape="box"];2668[label="xuu212",fontsize=16,color="green",shape="box"];2669[label="xuu213",fontsize=16,color="green",shape="box"];2670[label="FiniteMap.mkBranch (Pos (Succ xuu206)) xuu207 xuu208 xuu209 xuu210",fontsize=16,color="black",shape="triangle"];2670 -> 2747[label="",style="solid", color="black", weight=3]; 2671[label="xuu215",fontsize=16,color="green",shape="box"];2672[label="xuu204",fontsize=16,color="green",shape="box"];2673[label="xuu205",fontsize=16,color="green",shape="box"];2674[label="xuu214",fontsize=16,color="green",shape="box"];2708 -> 2670[label="",style="dashed", color="red", weight=0]; 2708[label="FiniteMap.mkBranch (Pos (Succ xuu154)) (xuu155,xuu156) xuu157 xuu158 xuu159",fontsize=16,color="magenta"];2708 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2709[label="xuu151",fontsize=16,color="green",shape="box"];2710[label="xuu153",fontsize=16,color="green",shape="box"];2711[label="xuu153",fontsize=16,color="green",shape="box"];2712 -> 2670[label="",style="dashed", color="red", weight=0]; 2712[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu169 xuu170 xuu171 xuu172",fontsize=16,color="magenta"];2712 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2713[label="xuu162",fontsize=16,color="green",shape="box"];2714 -> 2670[label="",style="dashed", color="red", weight=0]; 2714[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168",fontsize=16,color="magenta"];2714 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2670[label="",style="dashed", color="red", weight=0]; 2715[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu164,xuu165) xuu166 xuu167 xuu168",fontsize=16,color="magenta"];2715 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2740[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2741[label="xuu168",fontsize=16,color="green",shape="box"];2742[label="xuu164",fontsize=16,color="green",shape="box"];2743[label="xuu165",fontsize=16,color="green",shape="box"];2744[label="xuu167",fontsize=16,color="green",shape="box"];2745[label="xuu166",fontsize=16,color="green",shape="box"];2746[label="FiniteMap.Branch xuu169 xuu170 (FiniteMap.mkBranchUnbox xuu171 xuu169 xuu172 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu171 xuu169 xuu172 + FiniteMap.mkBranchRight_size xuu171 xuu169 xuu172)) xuu171 xuu172",fontsize=16,color="green",shape="box"];2746 -> 2770[label="",style="dashed", color="green", weight=3]; 2747 -> 2665[label="",style="dashed", color="red", weight=0]; 2747[label="FiniteMap.mkBranchResult xuu207 xuu208 xuu209 xuu210",fontsize=16,color="magenta"];2747 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2748[label="xuu157",fontsize=16,color="green",shape="box"];2749[label="xuu159",fontsize=16,color="green",shape="box"];2750[label="(xuu155,xuu156)",fontsize=16,color="green",shape="box"];2751[label="xuu154",fontsize=16,color="green",shape="box"];2752[label="xuu158",fontsize=16,color="green",shape="box"];2753[label="xuu170",fontsize=16,color="green",shape="box"];2754[label="xuu172",fontsize=16,color="green",shape="box"];2755[label="xuu169",fontsize=16,color="green",shape="box"];2756[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2757[label="xuu171",fontsize=16,color="green",shape="box"];2758[label="xuu166",fontsize=16,color="green",shape="box"];2759[label="xuu168",fontsize=16,color="green",shape="box"];2760[label="(xuu164,xuu165)",fontsize=16,color="green",shape="box"];2761[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2762[label="xuu167",fontsize=16,color="green",shape="box"];2763[label="xuu166",fontsize=16,color="green",shape="box"];2764[label="xuu168",fontsize=16,color="green",shape="box"];2765[label="(xuu164,xuu165)",fontsize=16,color="green",shape="box"];2766[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2767[label="xuu167",fontsize=16,color="green",shape="box"];2770 -> 2679[label="",style="dashed", color="red", weight=0]; 2770[label="FiniteMap.mkBranchUnbox xuu171 xuu169 xuu172 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu171 xuu169 xuu172 + FiniteMap.mkBranchRight_size xuu171 xuu169 xuu172)",fontsize=16,color="magenta"];2770 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2771[label="xuu208",fontsize=16,color="green",shape="box"];2772[label="xuu207",fontsize=16,color="green",shape="box"];2773[label="xuu210",fontsize=16,color="green",shape="box"];2774[label="xuu209",fontsize=16,color="green",shape="box"];2777 -> 2701[label="",style="dashed", color="red", weight=0]; 2777[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu171 xuu169 xuu172 + FiniteMap.mkBranchRight_size xuu171 xuu169 xuu172",fontsize=16,color="magenta"];2777 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2778[label="xuu172",fontsize=16,color="green",shape="box"];2779[label="xuu171",fontsize=16,color="green",shape="box"];2780[label="xuu169",fontsize=16,color="green",shape="box"];2784[label="xuu172",fontsize=16,color="green",shape="box"];2785[label="xuu169",fontsize=16,color="green",shape="box"];2786[label="xuu171",fontsize=16,color="green",shape="box"];2787[label="xuu171",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(xuu46000), Succ(xuu48000)) -> new_primCmpNat(xuu46000, 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(xuu46000), Succ(xuu48000)) -> new_primCmpNat(xuu46000, 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_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_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs18(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu4600)), Pos(xuu480)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare10(xuu460, xuu480, True, ga, gb, gc) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_mkBalBranch6Size_l(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) -> new_sizeFM(xuu38, ff, fg, fh) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs6(xuu40000, xuu3000, bhg, bhh, caa) new_pePe(True, xuu138) -> True new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_mkBalBranch6Size_r(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) -> new_sizeFM(xuu21, ff, fg, fh) new_esEs23(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bce), bcf)) -> new_ltEs8(xuu4610, xuu4810, bce, bcf) new_lt20(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt4(xuu4610, xuu4810, app(ty_Ratio, ca)) -> new_lt9(xuu4610, xuu4810, ca) new_esEs32(xuu34, xuu36, ty_Ordering) -> new_esEs11(xuu34, xuu36) new_compare31(xuu4600, xuu4800, app(ty_Ratio, dbd)) -> new_compare8(xuu4600, xuu4800, dbd) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(xuu40001, xuu3001, app(app(ty_Either, ddh), dea)) -> new_esEs5(xuu40001, xuu3001, ddh, dea) new_lt5(xuu4611, xuu4811, app(ty_[], da)) -> new_lt6(xuu4611, xuu4811, da) new_ltEs16(Nothing, Nothing, bbh) -> True new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare26(xuu46, xuu48, True, bac, bad) -> EQ new_esEs9(xuu4611, xuu4811, ty_Char) -> new_esEs14(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, ty_Double) -> new_esEs13(xuu4611, xuu4811) new_esEs14(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs16(Just(xuu4610), Nothing, bbh) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cef)) -> new_esEs7(xuu40000, xuu3000, cef) new_esEs18(@0, @0) -> True new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, app(ty_Ratio, bef)) -> new_esEs12(xuu40000, xuu3000, bef) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Right(xuu4810), bbf, bbg) -> True new_compare111(xuu460, xuu480, True, baa, bab) -> LT new_esEs32(xuu34, xuu36, app(ty_Ratio, dag)) -> new_esEs12(xuu34, xuu36, dag) new_lt21(xuu460, xuu480, app(ty_Ratio, bah)) -> new_lt9(xuu460, xuu480, bah) new_ltEs19(xuu4611, xuu4811, app(ty_Maybe, chd)) -> new_ltEs16(xuu4611, xuu4811, chd) new_esEs32(xuu34, xuu36, ty_Bool) -> new_esEs16(xuu34, xuu36) new_esEs9(xuu4611, xuu4811, ty_Bool) -> new_esEs16(xuu4611, xuu4811) new_compare32(xuu460, xuu480) -> new_compare210(xuu460, xuu480, new_esEs11(xuu460, xuu480)) new_ltEs19(xuu4611, xuu4811, ty_Char) -> new_ltEs11(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Double) -> new_esEs13(xuu34, xuu36) new_esEs8(xuu4610, xuu4810, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs6(xuu4610, xuu4810, cd, ce, cf) new_esEs23(xuu40001, xuu3001, app(app(ty_Either, bfc), bfd)) -> new_esEs5(xuu40001, xuu3001, bfc, bfd) new_addToFM_C10(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, ff, fg, fh) -> new_mkBalBranch(xuu16, xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, @2(xuu22, xuu23), xuu24, ff, fg, fh), ff, fg, fh) new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt19(xuu460, xuu480) -> new_esEs11(new_compare15(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, ty_Char) -> new_esEs14(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs5(xuu4612, xuu4812, ty_Int) -> new_ltEs15(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Double, bbg) -> new_ltEs10(xuu4610, xuu4810) new_ltEs19(xuu4611, xuu4811, app(ty_[], cgc)) -> new_ltEs6(xuu4611, xuu4811, cgc) new_esEs24(xuu40002, xuu3002, app(app(ty_@2, bgg), bgh)) -> new_esEs4(xuu40002, xuu3002, bgg, bgh) new_ltEs19(xuu4611, xuu4811, ty_Bool) -> new_ltEs14(xuu4611, xuu4811) new_primCmpNat2(Succ(xuu46000), Succ(xuu48000)) -> new_primCmpNat2(xuu46000, xuu48000) new_esEs21(xuu460, xuu480, ty_Bool) -> new_esEs16(xuu460, xuu480) new_ltEs20(xuu461, xuu481, ty_Char) -> new_ltEs11(xuu461, xuu481) new_lt9(xuu460, xuu480, bah) -> new_esEs11(new_compare8(xuu460, xuu480, bah), LT) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt5(xuu4611, xuu4811, app(app(ty_Either, de), df)) -> new_lt12(xuu4611, xuu4811, de, df) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_ltEs20(xuu461, xuu481, app(ty_Ratio, bbe)) -> new_ltEs9(xuu461, xuu481, bbe) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(app(ty_@2, cch), cda)) -> new_esEs4(xuu40000, xuu3000, cch, cda) new_esEs21(xuu460, xuu480, ty_Double) -> new_esEs13(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_mkBranchResult1(xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf) -> Branch(xuu169, xuu170, new_mkBranchUnbox(xuu171, xuu169, xuu172, new_ps(xuu171, xuu169, xuu172, xuu171, bhd, bhe, bhf), bhd, bhe, bhf), xuu171, xuu172) new_not(True) -> False new_lt4(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Float) -> new_ltEs18(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_compare16(xuu460, xuu480, True, bba) -> LT new_primCompAux00(xuu143, LT) -> LT new_esEs21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs6(xuu460, xuu480, ga, gb, gc) new_ltEs9(xuu461, xuu481, bbe) -> new_fsEs(new_compare8(xuu461, xuu481, bbe)) new_mkBranch2(xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, xuu167, xuu168, xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf) -> Branch(xuu162, xuu163, new_mkBranchUnbox(new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu164, xuu165, xuu166, xuu167, xuu168, bhd, bhe, bhf), xuu162, new_mkBranch3(xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf), new_ps(new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu164, xuu165), xuu166, xuu167, xuu168, bhd, bhe, bhf), xuu162, new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf), new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu164, xuu165), xuu166, xuu167, xuu168, bhd, bhe, bhf), bhd, bhe, bhf), bhd, bhe, bhf), new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu164, xuu165, xuu166, xuu167, xuu168, bhd, bhe, bhf), new_mkBranch3(xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf)) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cca), gh) -> new_esEs12(xuu40000, xuu3000, cca) new_lt4(xuu4610, xuu4810, app(app(ty_Either, cb), cc)) -> new_lt12(xuu4610, xuu4810, cb, cc) new_esEs20(xuu4610, xuu4810, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs6(xuu4610, xuu4810, cfg, cfh, cga) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_Either, eg), eh)) -> new_ltEs12(xuu4612, xuu4812, eg, eh) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs32(xuu34, xuu36, ty_Integer) -> new_esEs15(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dee)) -> new_esEs12(xuu40001, xuu3001, dee) new_esEs10(:(xuu40000, xuu40001), :(xuu3000, xuu3001), hc) -> new_asAs(new_esEs25(xuu40000, xuu3000, hc), new_esEs10(xuu40001, xuu3001, hc)) new_esEs9(xuu4611, xuu4811, ty_Ordering) -> new_esEs11(xuu4611, xuu4811) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_compare12(xuu114, xuu115, xuu116, xuu117, False, xuu119, ceg, ceh) -> new_compare11(xuu114, xuu115, xuu116, xuu117, xuu119, ceg, ceh) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_addToFM_C0(Branch(@2(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), @2(xuu4000, xuu4001), xuu401, h, ba, bb) -> new_addToFM_C20(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_esEs30(xuu4000, xuu4001, xuu300, xuu301, new_esEs31(xuu4000, xuu300, h), h, ba), h, ba, bb) new_ltEs18(xuu461, xuu481) -> new_fsEs(new_compare15(xuu461, xuu481)) new_esEs23(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs14(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_primCmpInt0(Branch(xuu380, xuu381, xuu382, xuu383, xuu384), xuu16, xuu17, xuu18, xuu21, ff, fg, fh) -> new_primCmpInt(new_primPlusInt(xuu382, new_mkBalBranch6Size_r(xuu16, xuu17, xuu18, Branch(xuu380, xuu381, xuu382, xuu383, xuu384), xuu21, ff, fg, fh)), Pos(Succ(Succ(Zero)))) new_primCmpNat0(xuu4600, Succ(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_esEs8(xuu4610, xuu4810, app(app(ty_@2, bg), bh)) -> new_esEs4(xuu4610, xuu4810, bg, bh) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(app(app(ty_@3, dgg), dgh), dha)) -> new_ltEs4(xuu4610, xuu4810, dgg, dgh, dha) new_lt20(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, app(ty_Ratio, dd)) -> new_esEs12(xuu4611, xuu4811, dd) new_ltEs20(xuu461, xuu481, ty_Bool) -> new_ltEs14(xuu461, xuu481) new_lt20(xuu4610, xuu4810, app(app(app(ty_@3, cfg), cfh), cga)) -> new_lt13(xuu4610, xuu4810, cfg, cfh, cga) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_@2, deh), dfa), bbg) -> new_ltEs8(xuu4610, xuu4810, deh, dfa) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(ty_Ratio, cdc)) -> new_esEs12(xuu40000, xuu3000, cdc) new_primCompAux00(xuu143, GT) -> GT new_addToFM_C10(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, ff, fg, fh) -> Branch(@2(xuu22, xuu23), xuu24, xuu19, xuu20, xuu21) new_compare24(xuu460, xuu480, False, ga, gb, gc) -> new_compare10(xuu460, xuu480, new_ltEs4(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_primMinusNat0(Succ(xuu38200), Zero) -> Pos(Succ(xuu38200)) new_compare110(xuu460, xuu480, True) -> LT new_compare28(xuu460, xuu480, True, bba) -> EQ new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, dfe), dff), dfg), bbg) -> new_ltEs4(xuu4610, xuu4810, dfe, dff, dfg) new_mkBalBranch6MkBalBranch11(xuu16, xuu17, xuu18, xuu380, xuu381, xuu382, xuu383, EmptyFM, xuu21, False, ff, fg, fh) -> error([]) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, gh) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu460, xuu480, True) -> LT new_primCmpInt(Pos(Succ(xuu4600)), Neg(xuu480)) -> GT new_compare27(xuu460, xuu480, False) -> new_compare14(xuu460, xuu480, new_ltEs14(xuu460, xuu480)) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu4610, xuu4810, app(app(ty_@2, cfb), cfc)) -> new_esEs4(xuu4610, xuu4810, cfb, cfc) new_lt21(xuu460, xuu480, ty_Integer) -> new_lt14(xuu460, xuu480) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs16(xuu4000, xuu300) new_ltEs20(xuu461, xuu481, ty_Double) -> new_ltEs10(xuu461, xuu481) new_esEs24(xuu40002, xuu3002, ty_@0) -> new_esEs18(xuu40002, xuu3002) new_compare11(xuu114, xuu115, xuu116, xuu117, True, ceg, ceh) -> LT new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs13(xuu4000, xuu300) new_ltEs7(GT, GT) -> True new_lt13(xuu460, xuu480, ga, gb, gc) -> new_esEs11(new_compare19(xuu460, xuu480, ga, gb, gc), LT) new_primPlusNat1(Succ(xuu38200), Succ(xuu10100)) -> Succ(Succ(new_primPlusNat1(xuu38200, xuu10100))) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_primCompAux0(xuu4600, xuu4800, xuu139, bae) -> new_primCompAux00(xuu139, new_compare31(xuu4600, xuu4800, bae)) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(xuu4000, xuu300, gd, ge, gf) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Char, bbg) -> new_ltEs11(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, ty_@0) -> new_ltEs17(xuu461, xuu481) new_esEs21(xuu460, xuu480, ty_Ordering) -> new_esEs11(xuu460, xuu480) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(ty_Ratio, dd)) -> new_lt9(xuu4611, xuu4811, dd) new_compare210(xuu460, xuu480, True) -> EQ new_ltEs19(xuu4611, xuu4811, ty_Double) -> new_ltEs10(xuu4611, xuu4811) new_esEs30(xuu33, xuu34, xuu35, xuu36, False, che, chf) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), False, che, chf), LT) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(ty_Maybe, cdd)) -> new_esEs7(xuu40000, xuu3000, cdd) new_esEs8(xuu4610, xuu4810, app(ty_Maybe, cg)) -> new_esEs7(xuu4610, xuu4810, cg) new_sr(Integer(xuu46000), Integer(xuu48010)) -> Integer(new_primMulInt(xuu46000, xuu48010)) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_pePe(False, xuu138) -> xuu138 new_esEs7(Nothing, Just(xuu3000), he) -> False new_esEs7(Just(xuu40000), Nothing, he) -> False new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_mkBranch0(xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh) -> new_mkBranchResult0(xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh) new_lt8(xuu460, xuu480, baf, bag) -> new_esEs11(new_compare18(xuu460, xuu480, baf, bag), LT) new_compare25(xuu460, xuu480, True, baa, bab) -> EQ new_esEs22(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Ordering, bbg) -> new_ltEs7(xuu4610, xuu4810) new_lt20(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Integer, bbg) -> new_ltEs13(xuu4610, xuu4810) new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_primMinusNat0(Succ(xuu38200), Succ(xuu10100)) -> new_primMinusNat0(xuu38200, xuu10100) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cdh), cea)) -> new_esEs5(xuu40000, xuu3000, cdh, cea) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, gh) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Ratio, dfb), bbg) -> new_ltEs9(xuu4610, xuu4810, dfb) new_ltEs10(xuu461, xuu481) -> new_fsEs(new_compare29(xuu461, xuu481)) new_lt5(xuu4611, xuu4811, ty_Double) -> new_lt10(xuu4611, xuu4811) new_lt21(xuu460, xuu480, ty_Float) -> new_lt19(xuu460, xuu480) new_lt4(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Integer) -> new_ltEs13(xuu4612, xuu4812) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbf), cbg), gh) -> new_esEs4(xuu40000, xuu3000, cbf, cbg) new_esEs21(xuu460, xuu480, app(app(ty_@2, baf), bag)) -> new_esEs4(xuu460, xuu480, baf, bag) new_lt21(xuu460, xuu480, ty_Bool) -> new_lt15(xuu460, xuu480) new_esEs32(xuu34, xuu36, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs6(xuu34, xuu36, chg, chh, daa) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, he) -> True new_esEs23(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs14(True, True) -> True new_lt11(xuu460, xuu480) -> new_esEs11(new_compare17(xuu460, xuu480), LT) new_esEs8(xuu4610, xuu4810, app(ty_[], bf)) -> new_esEs10(xuu4610, xuu4810, bf) new_compare31(xuu4600, xuu4800, app(ty_Maybe, dcb)) -> new_compare6(xuu4600, xuu4800, dcb) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, cad), cae)) -> new_esEs4(xuu40000, xuu3000, cad, cae) new_esEs30(xuu33, xuu34, xuu35, xuu36, True, che, chf) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), new_esEs32(xuu34, xuu36, chf), che, chf), LT) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_Either, dfc), dfd), bbg) -> new_ltEs12(xuu4610, xuu4810, dfc, dfd) new_compare30(xuu460, xuu480) -> new_compare27(xuu460, xuu480, new_esEs16(xuu460, xuu480)) new_fsEs(xuu126) -> new_not(new_esEs11(xuu126, GT)) new_primCmpInt0(EmptyFM, xuu16, xuu17, xuu18, xuu21, ff, fg, fh) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu16, xuu17, xuu18, EmptyFM, xuu21, ff, fg, fh)), Pos(Succ(Succ(Zero)))) new_esEs22(xuu40000, xuu3000, app(ty_[], bee)) -> new_esEs10(xuu40000, xuu3000, bee) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(ty_Either, bge), bgf)) -> new_esEs5(xuu40002, xuu3002, bge, bgf) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_emptyFM(h, ba, bb) -> EmptyFM new_esEs21(xuu460, xuu480, app(ty_Ratio, bah)) -> new_esEs12(xuu460, xuu480, bah) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_lt21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_lt13(xuu460, xuu480, ga, gb, gc) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, cah)) -> new_esEs7(xuu40000, xuu3000, cah) new_lt20(xuu4610, xuu4810, app(app(ty_@2, cfb), cfc)) -> new_lt8(xuu4610, xuu4810, cfb, cfc) new_compare31(xuu4600, xuu4800, app(app(ty_Either, dbe), dbf)) -> new_compare5(xuu4600, xuu4800, dbe, dbf) new_esEs9(xuu4611, xuu4811, app(app(ty_@2, db), dc)) -> new_esEs4(xuu4611, xuu4811, db, dc) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs32(xuu34, xuu36, app(app(ty_Either, dab), dac)) -> new_esEs5(xuu34, xuu36, dab, dac) new_lt5(xuu4611, xuu4811, app(app(ty_@2, db), dc)) -> new_lt8(xuu4611, xuu4811, db, dc) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, gh) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(xuu40002, xuu3002, bgb, bgc, bgd) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(app(ty_@2, dgb), dgc)) -> new_ltEs8(xuu4610, xuu4810, dgb, dgc) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu40000, xuu3000, cde, cdf, cdg) new_compare5(xuu460, xuu480, baa, bab) -> new_compare25(xuu460, xuu480, new_esEs5(xuu460, xuu480, baa, bab), baa, bab) new_primPlusInt(Pos(xuu3820), Pos(xuu1010)) -> Pos(new_primPlusNat1(xuu3820, xuu1010)) new_ltEs19(xuu4611, xuu4811, ty_Integer) -> new_ltEs13(xuu4611, xuu4811) new_mkBalBranch6MkBalBranch11(xuu16, xuu17, xuu18, xuu380, xuu381, xuu382, xuu383, xuu384, xuu21, True, ff, fg, fh) -> new_mkBranch(xuu380, xuu381, xuu383, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu16, xuu17, xuu18, xuu384, xuu21, ff, fg, fh) new_esEs22(xuu40000, xuu3000, app(ty_Maybe, beg)) -> new_esEs7(xuu40000, xuu3000, beg) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs18(xuu4000, xuu300) new_esEs24(xuu40002, xuu3002, ty_Int) -> new_esEs17(xuu40002, xuu3002) new_primCmpNat2(Succ(xuu46000), Zero) -> GT new_ltEs17(xuu461, xuu481) -> new_fsEs(new_compare7(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Bool) -> new_ltEs14(xuu4612, xuu4812) new_esEs23(xuu40001, xuu3001, app(ty_Maybe, bga)) -> new_esEs7(xuu40001, xuu3001, bga) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbd), cbe), gh) -> new_esEs5(xuu40000, xuu3000, cbd, cbe) new_lt21(xuu460, xuu480, ty_Int) -> new_lt16(xuu460, xuu480) new_compare28(xuu460, xuu480, False, bba) -> new_compare16(xuu460, xuu480, new_ltEs16(xuu460, xuu480, bba), bba) new_ps(xuu229, xuu210, xuu214, xuu228, ff, fg, fh) -> new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu229, ff, fg, fh)), new_sizeFM(xuu214, ff, fg, fh)) new_lt12(xuu460, xuu480, baa, bab) -> new_esEs11(new_compare5(xuu460, xuu480, baa, bab), LT) new_lt4(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(app(ty_Either, baa), bab)) -> new_esEs5(xuu460, xuu480, baa, bab) new_esEs11(LT, LT) -> True new_esEs24(xuu40002, xuu3002, app(ty_[], bha)) -> new_esEs10(xuu40002, xuu3002, bha) new_esEs22(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_@2, ed), ee)) -> new_ltEs8(xuu4612, xuu4812, ed, ee) new_esEs8(xuu4610, xuu4810, app(ty_Ratio, ca)) -> new_esEs12(xuu4610, xuu4810, ca) new_ltEs20(xuu461, xuu481, app(ty_Maybe, bbh)) -> new_ltEs16(xuu461, xuu481, bbh) new_mkBalBranch6MkBalBranch4(xuu16, xuu17, xuu18, xuu38, Branch(xuu210, xuu211, xuu212, xuu213, xuu214), True, ff, fg, fh) -> new_mkBalBranch6MkBalBranch01(xuu16, xuu17, xuu18, xuu38, xuu210, xuu211, xuu212, xuu213, xuu214, new_lt16(new_sizeFM(xuu213, ff, fg, fh), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu214, ff, fg, fh))), ff, fg, fh) new_mkBalBranch6MkBalBranch01(xuu16, xuu17, xuu18, xuu38, xuu210, xuu211, xuu212, EmptyFM, xuu214, False, ff, fg, fh) -> error([]) new_compare19(xuu460, xuu480, ga, gb, gc) -> new_compare24(xuu460, xuu480, new_esEs6(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_lt21(xuu460, xuu480, app(app(ty_Either, baa), bab)) -> new_lt12(xuu460, xuu480, baa, bab) new_esEs20(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs6(xuu40000, xuu3000, bdf, bdg, bdh) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], ced)) -> new_esEs10(xuu40000, xuu3000, ced) new_primPlusNat1(Succ(xuu38200), Zero) -> Succ(xuu38200) new_primPlusNat1(Zero, Succ(xuu10100)) -> Succ(xuu10100) new_lt20(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, ceb), cec)) -> new_esEs4(xuu40000, xuu3000, ceb, cec) new_esEs9(xuu4611, xuu4811, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs6(xuu4611, xuu4811, dg, dh, ea) new_ltEs19(xuu4611, xuu4811, app(app(ty_@2, cgd), cge)) -> new_ltEs8(xuu4611, xuu4811, cgd, cge) new_mkBalBranch6MkBalBranch4(xuu16, xuu17, xuu18, xuu38, xuu21, False, ff, fg, fh) -> new_mkBalBranch6MkBalBranch3(xuu16, xuu17, xuu18, xuu38, xuu21, new_gt(new_mkBalBranch6Size_l(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh))), ff, fg, fh) new_esEs17(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_compare12(xuu114, xuu115, xuu116, xuu117, True, xuu119, ceg, ceh) -> new_compare11(xuu114, xuu115, xuu116, xuu117, True, ceg, ceh) new_esEs24(xuu40002, xuu3002, app(ty_Maybe, bhc)) -> new_esEs7(xuu40002, xuu3002, bhc) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Bool, bbg) -> new_ltEs14(xuu4610, xuu4810) new_compare31(xuu4600, xuu4800, ty_Double) -> new_compare29(xuu4600, xuu4800) new_mkBalBranch6MkBalBranch3(xuu16, xuu17, xuu18, EmptyFM, xuu21, True, ff, fg, fh) -> error([]) new_esEs13(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs23(xuu40001, xuu3001, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs6(xuu40001, xuu3001, beh, bfa, bfb) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bde)) -> new_ltEs16(xuu4610, xuu4810, bde) new_lt18(xuu460, xuu480) -> new_esEs11(new_compare7(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, app(ty_Ratio, cfd)) -> new_esEs12(xuu4610, xuu4810, cfd) new_ltEs20(xuu461, xuu481, app(app(ty_@2, bbc), bbd)) -> new_ltEs8(xuu461, xuu481, bbc, bbd) new_lt5(xuu4611, xuu4811, ty_Float) -> new_lt19(xuu4611, xuu4811) new_compare26(@2(xuu460, xuu461), @2(xuu480, xuu481), False, bac, bad) -> new_compare12(xuu460, xuu461, xuu480, xuu481, new_lt21(xuu460, xuu480, bac), new_asAs(new_esEs21(xuu460, xuu480, bac), new_ltEs20(xuu461, xuu481, bad)), bac, bad) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(ty_[], cdb)) -> new_esEs10(xuu40000, xuu3000, cdb) new_esEs24(xuu40002, xuu3002, ty_Float) -> new_esEs19(xuu40002, xuu3002) new_lt4(xuu4610, xuu4810, app(app(ty_@2, bg), bh)) -> new_lt8(xuu4610, xuu4810, bg, bh) new_esEs9(xuu4611, xuu4811, app(app(ty_Either, de), df)) -> new_esEs5(xuu4611, xuu4811, de, df) new_compare11(xuu114, xuu115, xuu116, xuu117, False, ceg, ceh) -> GT new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt10(xuu460, xuu480) -> new_esEs11(new_compare29(xuu460, xuu480), LT) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, gh) -> new_esEs11(xuu40000, xuu3000) new_compare9(Integer(xuu4600), Integer(xuu4800)) -> new_primCmpInt(xuu4600, xuu4800) new_mkBalBranch6MkBalBranch3(xuu16, xuu17, xuu18, Branch(xuu380, xuu381, xuu382, xuu383, xuu384), xuu21, True, ff, fg, fh) -> new_mkBalBranch6MkBalBranch11(xuu16, xuu17, xuu18, xuu380, xuu381, xuu382, xuu383, xuu384, xuu21, new_lt16(new_sizeFM(xuu384, ff, fg, fh), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu383, ff, fg, fh))), ff, fg, fh) new_esEs31(xuu4000, xuu300, app(ty_Ratio, hd)) -> new_esEs12(xuu4000, xuu300, hd) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs22(xuu40000, xuu3000, app(app(ty_Either, bea), beb)) -> new_esEs5(xuu40000, xuu3000, bea, beb) new_lt5(xuu4611, xuu4811, ty_Int) -> new_lt16(xuu4611, xuu4811) new_esEs8(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_gt(xuu95, xuu94) -> new_esEs11(new_compare13(xuu95, xuu94), GT) new_esEs23(xuu40001, xuu3001, app(ty_[], bfg)) -> new_esEs10(xuu40001, xuu3001, bfg) new_compare25(xuu460, xuu480, False, baa, bab) -> new_compare111(xuu460, xuu480, new_ltEs12(xuu460, xuu480, baa, bab), baa, bab) new_lt20(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, ty_@0) -> new_esEs18(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, app(app(ty_@2, bfe), bff)) -> new_esEs4(xuu40001, xuu3001, bfe, bff) new_lt5(xuu4611, xuu4811, ty_Char) -> new_lt11(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Integer) -> new_compare9(new_sr(xuu4600, xuu4801), new_sr(xuu4800, xuu4601)) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs17(xuu4000, xuu300) new_ltEs7(LT, LT) -> True new_ltEs20(xuu461, xuu481, ty_Int) -> new_ltEs15(xuu461, xuu481) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(app(ty_Either, dge), dgf)) -> new_ltEs12(xuu4610, xuu4810, dge, dgf) new_lt5(xuu4611, xuu4811, app(ty_Maybe, eb)) -> new_lt17(xuu4611, xuu4811, eb) new_esEs9(xuu4611, xuu4811, app(ty_[], da)) -> new_esEs10(xuu4611, xuu4811, da) new_lt21(xuu460, xuu480, ty_Double) -> new_lt10(xuu460, xuu480) new_esEs20(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(ty_[], dga)) -> new_ltEs6(xuu4610, xuu4810, dga) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccc, ccd, cce) new_primCmpInt(Pos(Succ(xuu4600)), Pos(xuu480)) -> new_primCmpNat0(xuu4600, xuu480) new_esEs22(xuu40000, xuu3000, app(app(ty_@2, bec), bed)) -> new_esEs4(xuu40000, xuu3000, bec, bed) new_ltEs12(Right(xuu4610), Left(xuu4810), bbf, bbg) -> False new_compare31(xuu4600, xuu4800, app(ty_[], dba)) -> new_compare0(xuu4600, xuu4800, dba) new_lt4(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_compare10(xuu460, xuu480, False, ga, gb, gc) -> GT new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, app(ty_[], bae)) -> new_esEs10(xuu460, xuu480, bae) new_esEs24(xuu40002, xuu3002, ty_Ordering) -> new_esEs11(xuu40002, xuu3002) new_compare14(xuu460, xuu480, False) -> GT new_esEs32(xuu34, xuu36, ty_@0) -> new_esEs18(xuu34, xuu36) new_primPlusInt(Neg(xuu3820), Neg(xuu1010)) -> Neg(new_primPlusNat1(xuu3820, xuu1010)) new_esEs21(xuu460, xuu480, ty_Float) -> new_esEs19(xuu460, xuu480) new_ltEs6(xuu461, xuu481, bbb) -> new_fsEs(new_compare0(xuu461, xuu481, bbb)) new_ltEs5(xuu4612, xuu4812, ty_Double) -> new_ltEs10(xuu4612, xuu4812) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs6(xuu40001, xuu3001, dde, ddf, ddg) new_compare210(xuu460, xuu480, False) -> new_compare110(xuu460, xuu480, new_ltEs7(xuu460, xuu480)) new_compare24(xuu460, xuu480, True, ga, gb, gc) -> EQ new_lt4(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt21(xuu460, xuu480, app(app(ty_@2, baf), bag)) -> new_lt8(xuu460, xuu480, baf, bag) new_primCmpNat0(xuu4600, Zero) -> GT new_esEs29(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_lt21(xuu460, xuu480, ty_Char) -> new_lt11(xuu460, xuu480) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs19(xuu4000, xuu300) new_mkBranchResult(xuu151, xuu152, xuu153, xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh) -> Branch(xuu151, xuu152, new_mkBranchUnbox(xuu153, xuu151, new_mkBranch0(xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh), new_ps(xuu153, xuu151, new_mkBranch1(xuu154, @2(xuu155, xuu156), xuu157, xuu158, xuu159, hf, hg, hh), xuu153, hf, hg, hh), hf, hg, hh), xuu153, new_mkBranch0(xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh)) new_primCmpNat2(Zero, Succ(xuu48000)) -> LT new_esEs8(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt16(xuu460, xuu480) -> new_esEs11(new_compare13(xuu460, xuu480), LT) new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(app(app(ty_@3, dg), dh), ea)) -> new_lt13(xuu4611, xuu4811, dg, dh, ea) new_compare0([], :(xuu4800, xuu4801), bae) -> LT new_asAs(True, xuu69) -> xuu69 new_ltEs5(xuu4612, xuu4812, app(ty_Maybe, fd)) -> new_ltEs16(xuu4612, xuu4812, fd) new_lt21(xuu460, xuu480, ty_@0) -> new_lt18(xuu460, xuu480) new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Ratio, bcg)) -> new_ltEs9(xuu4610, xuu4810, bcg) new_ltEs19(xuu4611, xuu4811, ty_Int) -> new_ltEs15(xuu4611, xuu4811) new_compare18(xuu460, xuu480, baf, bag) -> new_compare26(xuu460, xuu480, new_esEs4(xuu460, xuu480, baf, bag), baf, bag) new_esEs9(xuu4611, xuu4811, ty_@0) -> new_esEs18(xuu4611, xuu4811) 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(Left(xuu40000), Left(xuu3000), ty_Integer, gh) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, ty_Int) -> new_esEs17(xuu460, xuu480) new_esEs24(xuu40002, xuu3002, app(ty_Ratio, bhb)) -> new_esEs12(xuu40002, xuu3002, bhb) new_esEs9(xuu4611, xuu4811, app(ty_Maybe, eb)) -> new_esEs7(xuu4611, xuu4811, eb) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs24(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, ty_@0) -> new_compare7(xuu4600, xuu4800) new_esEs24(xuu40002, xuu3002, ty_Double) -> new_esEs13(xuu40002, xuu3002) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cee)) -> new_esEs12(xuu40000, xuu3000, cee) new_compare111(xuu460, xuu480, False, baa, bab) -> GT new_primPlusInt(Pos(xuu3820), Neg(xuu1010)) -> new_primMinusNat0(xuu3820, xuu1010) new_primPlusInt(Neg(xuu3820), Pos(xuu1010)) -> new_primMinusNat0(xuu1010, xuu3820) new_esEs8(xuu4610, xuu4810, app(app(ty_Either, cb), cc)) -> new_esEs5(xuu4610, xuu4810, cb, cc) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs10(:(xuu40000, xuu40001), [], hc) -> False new_esEs10([], :(xuu3000, xuu3001), hc) -> False new_compare110(xuu460, xuu480, False) -> GT new_compare6(xuu460, xuu480, bba) -> new_compare28(xuu460, xuu480, new_esEs7(xuu460, xuu480, bba), bba) new_esEs24(xuu40002, xuu3002, ty_Bool) -> new_esEs16(xuu40002, xuu3002) new_primCompAux00(xuu143, EQ) -> xuu143 new_compare0([], [], bae) -> EQ new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, gh) -> new_esEs16(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, app(app(ty_Either, cfe), cff)) -> new_lt12(xuu4610, xuu4810, cfe, cff) new_esEs9(xuu4611, xuu4811, ty_Int) -> new_esEs17(xuu4611, xuu4811) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, gh) -> new_esEs14(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_compare13(xuu95, xuu94) -> new_primCmpInt(xuu95, xuu94) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, gh) -> new_esEs13(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(ty_[], ec)) -> new_ltEs6(xuu4612, xuu4812, ec) new_esEs23(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_mkBalBranch6MkBalBranch4(xuu16, xuu17, xuu18, xuu38, EmptyFM, True, ff, fg, fh) -> error([]) new_esEs29(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_sizeFM(Branch(xuu210, xuu211, xuu212, xuu213, xuu214), ff, fg, fh) -> xuu212 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat0(xuu4800, Zero) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Float, bbg) -> new_ltEs18(xuu4610, xuu4810) new_lt14(xuu460, xuu480) -> new_esEs11(new_compare9(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, app(ty_[], daf)) -> new_esEs10(xuu34, xuu36, daf) new_esEs31(xuu4000, xuu300, app(ty_Maybe, he)) -> new_esEs7(xuu4000, xuu300, he) new_ltEs7(LT, EQ) -> True new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_primCmpNat1(Zero, xuu4600) -> LT new_ltEs20(xuu461, xuu481, ty_Integer) -> new_ltEs13(xuu461, xuu481) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, app(app(ty_Either, cfe), cff)) -> new_esEs5(xuu4610, xuu4810, cfe, cff) new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, app(ty_[], ddb)) -> new_esEs10(xuu40000, xuu3000, ddb) new_esEs5(Right(xuu40000), Right(xuu3000), gg, app(app(ty_Either, ccf), ccg)) -> new_esEs5(xuu40000, xuu3000, ccf, ccg) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Maybe, dfh), bbg) -> new_ltEs16(xuu4610, xuu4810, dfh) new_lt20(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_esEs8(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_primCmpNat2(Zero, Zero) -> EQ new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba, bb) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba, bb) new_esEs31(xuu4000, xuu300, app(ty_[], hc)) -> new_esEs10(xuu4000, xuu300, hc) new_ltEs14(False, True) -> True new_esEs25(xuu40000, xuu3000, app(ty_[], caf)) -> new_esEs10(xuu40000, xuu3000, caf) new_ltEs19(xuu4611, xuu4811, app(app(ty_Either, cgg), cgh)) -> new_ltEs12(xuu4611, xuu4811, cgg, cgh) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Int, bbg) -> new_ltEs15(xuu4610, xuu4810) new_mkBalBranch6MkBalBranch01(xuu16, xuu17, xuu18, xuu38, xuu210, xuu211, xuu212, Branch(xuu2130, xuu2131, xuu2132, xuu2133, xuu2134), xuu214, False, ff, fg, fh) -> new_mkBranch2(Succ(Succ(Succ(Succ(Zero)))), xuu2130, xuu2131, xuu16, xuu17, xuu18, xuu38, xuu2133, xuu210, xuu211, xuu2134, xuu214, ff, fg, fh) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(ty_Maybe, dhb)) -> new_ltEs16(xuu4610, xuu4810, dhb) new_lt15(xuu460, xuu480) -> new_esEs11(new_compare30(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_ltEs11(xuu461, xuu481) -> new_fsEs(new_compare17(xuu461, xuu481)) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_ltEs20(xuu461, xuu481, app(app(ty_Either, bbf), bbg)) -> new_ltEs12(xuu461, xuu481, bbf, bbg) new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(ty_Maybe, bba)) -> new_esEs7(xuu460, xuu480, bba) new_esEs32(xuu34, xuu36, app(app(ty_@2, dad), dae)) -> new_esEs4(xuu34, xuu36, dad, dae) new_ltEs13(xuu461, xuu481) -> new_fsEs(new_compare9(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Char) -> new_ltEs11(xuu4612, xuu4812) new_esEs11(EQ, EQ) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs9(xuu4611, xuu4811, ty_Float) -> new_esEs19(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dch), dda)) -> new_esEs4(xuu40000, xuu3000, dch, dda) new_lt4(xuu4610, xuu4810, app(app(app(ty_@3, cd), ce), cf)) -> new_lt13(xuu4610, xuu4810, cd, ce, cf) new_esEs16(True, True) -> True new_lt6(xuu460, xuu480, bae) -> new_esEs11(new_compare0(xuu460, xuu480, bae), LT) new_esEs24(xuu40002, xuu3002, ty_Char) -> new_esEs14(xuu40002, xuu3002) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, cab), cac)) -> new_esEs5(xuu40000, xuu3000, cab, cac) new_ltEs16(Nothing, Just(xuu4810), bbh) -> True new_mkBalBranch6MkBalBranch11(xuu16, xuu17, xuu18, xuu380, xuu381, xuu382, xuu383, Branch(xuu3840, xuu3841, xuu3842, xuu3843, xuu3844), xuu21, False, ff, fg, fh) -> new_mkBranch5(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3840, xuu3841, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu380, xuu381, xuu383, xuu3843, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu16, xuu17, xuu18, xuu3844, xuu21, ff, fg, fh) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_[], deg), bbg) -> new_ltEs6(xuu4610, xuu4810, deg) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Int) -> new_compare13(new_sr0(xuu4600, xuu4801), new_sr0(xuu4800, xuu4601)) new_esEs32(xuu34, xuu36, app(ty_Maybe, dah)) -> new_esEs7(xuu34, xuu36, dah) new_esEs31(xuu4000, xuu300, app(app(ty_Either, gg), gh)) -> new_esEs5(xuu4000, xuu300, gg, gh) new_lt5(xuu4611, xuu4811, ty_Bool) -> new_lt15(xuu4611, xuu4811) new_mkBalBranch(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) -> new_mkBalBranch6MkBalBranch5(xuu16, xuu17, xuu18, xuu38, xuu21, new_esEs11(new_primCmpInt0(xuu38, xuu16, xuu17, xuu18, xuu21, ff, fg, fh), LT), ff, fg, fh) new_mkBranch1(xuu206, xuu207, xuu208, xuu209, xuu210, bca, bcb, bcc) -> new_mkBranchResult1(xuu207, xuu208, xuu209, xuu210, bca, bcb, bcc) new_esEs26(xuu40000, xuu3000, app(ty_Maybe, ddd)) -> new_esEs7(xuu40000, xuu3000, ddd) new_esEs8(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(xuu4611, xuu4811, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs4(xuu4611, xuu4811, cha, chb, chc) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dcf), dcg)) -> new_esEs5(xuu40000, xuu3000, dcf, dcg) new_ltEs15(xuu461, xuu481) -> new_fsEs(new_compare13(xuu461, xuu481)) new_esEs8(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_Ratio, bfh)) -> new_esEs12(xuu40001, xuu3001, bfh) new_ltEs19(xuu4611, xuu4811, ty_@0) -> new_ltEs17(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cba), cbb), cbc), gh) -> new_esEs6(xuu40000, xuu3000, cba, cbb, cbc) new_esEs8(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_primCmpNat1(Succ(xuu4800), xuu4600) -> new_primCmpNat2(xuu4800, xuu4600) new_esEs21(xuu460, xuu480, ty_Integer) -> new_esEs15(xuu460, xuu480) new_ltEs5(xuu4612, xuu4812, ty_Ordering) -> new_ltEs7(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_@0, bbg) -> new_ltEs17(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, app(ty_[], cfa)) -> new_esEs10(xuu4610, xuu4810, cfa) new_compare31(xuu4600, xuu4800, ty_Integer) -> new_compare9(xuu4600, xuu4800) new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs6(xuu40000, xuu3000, dcc, dcd, dce) new_esEs27(xuu40001, xuu3001, app(ty_Maybe, def)) -> new_esEs7(xuu40001, xuu3001, def) new_ltEs4(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bc, bd, be) -> new_pePe(new_lt4(xuu4610, xuu4810, bc), new_asAs(new_esEs8(xuu4610, xuu4810, bc), new_pePe(new_lt5(xuu4611, xuu4811, bd), new_asAs(new_esEs9(xuu4611, xuu4811, bd), new_ltEs5(xuu4612, xuu4812, be))))) new_lt7(xuu460, xuu480) -> new_esEs11(new_compare32(xuu460, xuu480), LT) new_lt20(xuu4610, xuu4810, app(ty_Ratio, cfd)) -> new_lt9(xuu4610, xuu4810, cfd) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_[], bcd)) -> new_ltEs6(xuu4610, xuu4810, bcd) new_lt21(xuu460, xuu480, app(ty_Maybe, bba)) -> new_lt17(xuu460, xuu480, bba) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ccb), gh) -> new_esEs7(xuu40000, xuu3000, ccb) new_esEs8(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_lt5(xuu4611, xuu4811, ty_Integer) -> new_lt14(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bch), bda)) -> new_ltEs12(xuu4610, xuu4810, bch, bda) new_esEs31(xuu4000, xuu300, app(app(ty_@2, ha), hb)) -> new_esEs4(xuu4000, xuu300, ha, hb) new_ltEs7(EQ, GT) -> True new_esEs9(xuu4611, xuu4811, ty_Integer) -> new_esEs15(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Int) -> new_esEs17(xuu34, xuu36) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_lt5(xuu4611, xuu4811, ty_@0) -> new_lt18(xuu4611, xuu4811) new_not(False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, app(ty_Ratio, dgd)) -> new_ltEs9(xuu4610, xuu4810, dgd) new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, ff, fg, fh) -> new_addToFM_C10(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_esEs4(@2(xuu22, xuu23), @2(xuu16, xuu17), ff, fg), ff, fg), GT), ff, fg, fh) new_compare31(xuu4600, xuu4800, ty_Char) -> new_compare17(xuu4600, xuu4800) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ha, hb) -> new_asAs(new_esEs26(xuu40000, xuu3000, ha), new_esEs27(xuu40001, xuu3001, hb)) new_esEs20(xuu4610, xuu4810, app(ty_Maybe, cgb)) -> new_esEs7(xuu4610, xuu4810, cgb) new_primCmpInt(Neg(Succ(xuu4600)), Neg(xuu480)) -> new_primCmpNat1(xuu480, xuu4600) new_mkBranch4(xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh) -> new_mkBranchResult0(xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh) new_compare0(:(xuu4600, xuu4601), [], bae) -> GT new_ltEs5(xuu4612, xuu4812, ty_@0) -> new_ltEs17(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs7(EQ, EQ) -> True new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, ty_Ordering) -> new_ltEs7(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Right(xuu3000), gg, gh) -> False new_esEs5(Right(xuu40000), Left(xuu3000), gg, gh) -> False new_lt4(xuu4610, xuu4810, app(ty_Maybe, cg)) -> new_lt17(xuu4610, xuu4810, cg) new_ltEs7(GT, EQ) -> False new_esEs27(xuu40001, xuu3001, app(ty_[], ded)) -> new_esEs10(xuu40001, xuu3001, ded) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], cbh), gh) -> new_esEs10(xuu40000, xuu3000, cbh) new_esEs20(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_esEs19(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare31(xuu4600, xuu4800, app(app(ty_@2, dbb), dbc)) -> new_compare18(xuu4600, xuu4800, dbb, dbc) new_lt4(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_compare17(Char(xuu4600), Char(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_lt21(xuu460, xuu480, app(ty_[], bae)) -> new_lt6(xuu460, xuu480, bae) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gd, ge, gf) -> new_asAs(new_esEs22(xuu40000, xuu3000, gd), new_asAs(new_esEs23(xuu40001, xuu3001, ge), new_esEs24(xuu40002, xuu3002, gf))) new_primPlusNat0(Succ(xuu1050), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1050, xuu300000))) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, app(ty_[], bbb)) -> new_ltEs6(xuu461, xuu481, bbb) new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs20(xuu461, xuu481, ty_Ordering) -> new_ltEs7(xuu461, xuu481) new_esEs32(xuu34, xuu36, ty_Float) -> new_esEs19(xuu34, xuu36) new_esEs12(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), hd) -> new_asAs(new_esEs28(xuu40000, xuu3000, hd), new_esEs29(xuu40001, xuu3001, hd)) new_ltEs5(xuu4612, xuu4812, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs4(xuu4612, xuu4812, fa, fb, fc) new_ltEs12(Right(xuu4610), Right(xuu4810), bbf, ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs20(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_compare0(:(xuu4600, xuu4601), :(xuu4800, xuu4801), bae) -> new_primCompAux0(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, bae), bae) new_primPlusNat1(Zero, Zero) -> Zero new_esEs10([], [], hc) -> True new_mkBranchResult0(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) -> Branch(@2(xuu16, xuu17), xuu18, new_mkBranchUnbox(xuu38, @2(xuu16, xuu17), xuu21, new_ps(xuu38, @2(xuu16, xuu17), xuu21, xuu38, ff, fg, fh), ff, fg, fh), xuu38, xuu21) new_esEs27(xuu40001, xuu3001, app(app(ty_@2, deb), dec)) -> new_esEs4(xuu40001, xuu3001, deb, dec) new_ltEs7(EQ, LT) -> False new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs11(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, ty_Int) -> new_compare13(xuu4600, xuu4800) new_mkBalBranch6MkBalBranch01(xuu16, xuu17, xuu18, xuu38, xuu210, xuu211, xuu212, xuu213, xuu214, True, ff, fg, fh) -> Branch(xuu210, xuu211, new_mkBranchUnbox(new_mkBranch0(Succ(Succ(Succ(Zero))), xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh), xuu210, xuu214, new_ps(new_mkBranch0(Succ(Succ(Succ(Zero))), xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh), xuu210, xuu214, new_mkBranch0(Succ(Succ(Succ(Zero))), xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh), ff, fg, fh), ff, fg, fh), new_mkBranch4(xuu16, xuu17, xuu18, xuu38, xuu213, ff, fg, fh), xuu214) new_esEs22(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch5(xuu16, xuu17, xuu18, xuu38, xuu21, True, ff, fg, fh) -> new_mkBranchResult0(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) new_compare31(xuu4600, xuu4800, app(app(app(ty_@3, dbg), dbh), dca)) -> new_compare19(xuu4600, xuu4800, dbg, dbh, dca) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu4600, xuu4800, ty_Bool) -> new_compare30(xuu4600, xuu4800) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_mkBranch5(xuu203, xuu204, xuu205, xuu206, xuu207, xuu208, xuu209, xuu210, xuu211, xuu212, xuu213, xuu214, xuu215, xuu216, bca, bcb, bcc) -> new_mkBranchResult(xuu204, xuu205, new_mkBranch1(xuu206, xuu207, xuu208, xuu209, xuu210, bca, bcb, bcc), xuu211, xuu212, xuu213, xuu214, xuu215, xuu216, bca, bcb, bcc) new_compare16(xuu460, xuu480, False, bba) -> GT new_ltEs14(False, False) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs7(GT, LT) -> False new_esEs8(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs4(xuu4610, xuu4810, bdb, bdc, bdd) new_mkBranchUnbox(xuu153, xuu151, xuu227, xuu217, hf, hg, hh) -> xuu217 new_sizeFM(EmptyFM, ff, fg, fh) -> Pos(Zero) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat1(Zero, xuu4800) new_esEs16(False, False) -> True new_esEs23(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, app(ty_Ratio, cgf)) -> new_ltEs9(xuu4611, xuu4811, cgf) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_primMinusNat0(Zero, Succ(xuu10100)) -> Neg(Succ(xuu10100)) new_esEs22(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs19(xuu4611, xuu4811, ty_Float) -> new_ltEs18(xuu4611, xuu4811) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_esEs26(xuu40000, xuu3000, app(ty_Ratio, ddc)) -> new_esEs12(xuu40000, xuu3000, ddc) new_mkBranch(xuu151, xuu152, xuu153, xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh) -> new_mkBranchResult(xuu151, xuu152, xuu153, xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, hf, hg, hh) new_lt21(xuu460, xuu480, ty_Ordering) -> new_lt7(xuu460, xuu480) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, cag)) -> new_esEs12(xuu40000, xuu3000, cag) new_esEs5(Right(xuu40000), Right(xuu3000), gg, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs8(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), bbc, bbd) -> new_pePe(new_lt20(xuu4610, xuu4810, bbc), new_asAs(new_esEs20(xuu4610, xuu4810, bbc), new_ltEs19(xuu4611, xuu4811, bbd))) new_esEs23(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, ty_Char) -> new_esEs14(xuu460, xuu480) new_compare31(xuu4600, xuu4800, ty_Float) -> new_compare15(xuu4600, xuu4800) new_lt4(xuu4610, xuu4810, app(ty_[], bf)) -> new_lt6(xuu4610, xuu4810, bf) new_ltEs20(xuu461, xuu481, ty_Float) -> new_ltEs18(xuu461, xuu481) new_mkBalBranch6MkBalBranch5(xuu16, xuu17, xuu18, xuu38, xuu21, False, ff, fg, fh) -> new_mkBalBranch6MkBalBranch4(xuu16, xuu17, xuu18, xuu38, xuu21, new_gt(new_mkBalBranch6Size_r(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh))), ff, fg, fh) new_lt17(xuu460, xuu480, bba) -> new_esEs11(new_compare6(xuu460, xuu480, bba), LT) new_lt20(xuu4610, xuu4810, app(ty_[], cfa)) -> new_lt6(xuu4610, xuu4810, cfa) new_lt5(xuu4611, xuu4811, ty_Ordering) -> new_lt7(xuu4611, xuu4811) new_ltEs14(True, False) -> False new_ltEs5(xuu4612, xuu4812, app(ty_Ratio, ef)) -> new_ltEs9(xuu4612, xuu4812, ef) new_asAs(False, xuu69) -> False new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, ff, fg, fh) -> new_mkBalBranch(xuu16, xuu17, xuu18, new_addToFM_C0(xuu20, @2(xuu22, xuu23), xuu24, ff, fg, fh), xuu21, ff, fg, fh) new_compare7(@0, @0) -> EQ new_lt20(xuu4610, xuu4810, app(ty_Maybe, cgb)) -> new_lt17(xuu4610, xuu4810, cgb) new_compare31(xuu4600, xuu4800, ty_Ordering) -> new_compare32(xuu4600, xuu4800) new_mkBranch3(xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf) -> new_mkBranchResult1(xuu169, xuu170, xuu171, xuu172, bhd, bhe, bhf) new_ltEs20(xuu461, xuu481, app(app(app(ty_@3, bc), bd), be)) -> new_ltEs4(xuu461, xuu481, bc, bd, be) new_mkBalBranch6MkBalBranch3(xuu16, xuu17, xuu18, xuu38, xuu21, False, ff, fg, fh) -> new_mkBranchResult0(xuu16, xuu17, xuu18, xuu38, xuu21, ff, fg, fh) new_compare27(xuu460, xuu480, True) -> EQ new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_esEs16(False, True) -> False new_esEs16(True, False) -> False The set Q consists of the following terms: new_compare0([], [], x0) new_compare11(x0, x1, x2, x3, True, x4, x5) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Integer) new_ltEs13(x0, x1) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare24(x0, x1, True, x2, x3, x4) new_esEs22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs7(Just(x0), Just(x1), ty_@0) new_primPlusNat1(Zero, Zero) new_esEs27(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs11(x0, x1) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_fsEs(x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_lt4(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare28(x0, x1, True, x2) new_lt21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare16(x0, x1, True, x2) new_primMinusNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusInt(Pos(x0), Pos(x1)) new_mkBranch2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_lt21(x0, x1, ty_Bool) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Float) new_primPlusInt(Neg(x0), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_mkBranchResult1(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt5(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs15(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_sIZE_RATIO new_esEs25(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs7(Just(x0), Nothing, x1) new_esEs24(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_compare31(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs14(Char(x0), Char(x1)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1) new_compare18(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_ltEs12(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_compare31(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_ltEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1, x2) new_primCmpNat1(Zero, x0) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare27(x0, x1, False) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_compare110(x0, x1, True) new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs16(Nothing, Just(x0), x1) new_esEs26(x0, x1, ty_Ordering) new_compare9(Integer(x0), Integer(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_ltEs7(EQ, EQ) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(True, True) new_esEs24(x0, x1, ty_Int) new_sizeFM(EmptyFM, x0, x1, x2) new_esEs8(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_primMinusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Ordering) new_compare25(x0, x1, False, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_@0) new_primMulInt(Neg(x0), Neg(x1)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14, x15) new_lt4(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_compare31(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_lt14(x0, x1) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_compare14(x0, x1, False) new_lt9(x0, x1, x2) new_esEs27(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_ltEs16(Nothing, Nothing, x0) new_lt17(x0, x1, x2) new_ltEs6(x0, x1, x2) new_lt15(x0, x1) new_asAs(True, x0) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs12(Right(x0), Right(x1), x2, ty_@0) new_lt4(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(x0, x1, ty_Ordering) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Integer) new_mkBranchResult(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_compare31(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7) new_mkBranch5(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_primMinusNat0(Zero, Succ(x0)) new_compare25(x0, x1, True, x2, x3) new_compare111(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10, x11) new_primEqNat0(Zero, Succ(x0)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, False, x5, x6, x7) new_lt7(x0, x1) new_compare31(x0, x1, ty_Char) new_lt19(x0, x1) new_compare31(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, x2, x3) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6, x7) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Zero, Succ(x0)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Ordering) new_ltEs14(False, False) new_lt5(x0, x1, ty_Char) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Char) new_compare31(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(False, False) new_primCmpNat2(Zero, Succ(x0)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Left(x0), Left(x1), ty_@0, x2) new_compare31(x0, x1, ty_Ordering) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, ty_Int) new_addToFM_C0(Branch(@2(x0, x1), x2, x3, x4, x5), @2(x6, x7), x8, x9, x10, x11) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14, x15) new_esEs10(:(x0, x1), :(x2, x3), x4) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Succ(x0), Zero) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Double) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_ltEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3, x4) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpNat1(Succ(x0), x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2, x3, x4) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Double) new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt5(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], :(x0, x1), x2) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_compare210(x0, x1, True) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5, x6) new_lt5(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_primMinusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_ltEs12(Left(x0), Left(x1), ty_Int, x2) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9, x10) new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_primMulNat0(Zero, Zero) new_esEs9(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare14(x0, x1, True) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_compare7(@0, @0) new_primCompAux00(x0, LT) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare30(x0, x1) new_esEs8(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(LT, LT) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare32(x0, x1) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6, x7) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_primCmpNat2(Zero, Zero) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt5(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt20(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_ltEs12(Right(x0), Right(x1), x2, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6, x7) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_compare0([], :(x0, x1), x2) new_not(True) new_primMulNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpNat0(x0, Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, ty_Int) new_ltEs9(x0, x1, x2) new_lt4(x0, x1, ty_Double) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare0(:(x0, x1), [], x2) new_esEs26(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs10([], [], x0) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) new_compare26(x0, x1, True, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_sr(Integer(x0), Integer(x1)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Double) new_pePe(False, x0) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_ltEs10(x0, x1) new_esEs11(EQ, EQ) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_compare17(Char(x0), Char(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_ltEs16(Just(x0), Nothing, x1) new_esEs32(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpNat2(Succ(x0), Zero) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Bool) new_lt5(x0, x1, ty_@0) new_ltEs7(GT, GT) new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare210(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_esEs22(x0, x1, ty_@0) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, x4, False, x5, x6, x7) new_lt20(x0, x1, ty_Bool) new_esEs17(x0, x1) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, x4, False, x5, x6, x7) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_ps(x0, x1, x2, x3, x4, x5, x6) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt18(x0, x1) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_Float) new_lt4(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs12(Right(x0), Right(x1), x2, ty_Char) new_mkBranch4(x0, x1, x2, x3, x4, x5, x6, x7) new_compare24(x0, x1, False, x2, x3, x4) new_esEs31(x0, x1, ty_Int) new_lt10(x0, x1) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, x2, x3) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_mkBranchResult0(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs7(Nothing, Nothing, x0) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_mkBranchUnbox(x0, x1, x2, x3, x4, x5, x6) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, ty_Integer) new_lt16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Double) new_esEs11(GT, GT) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@0, @0) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_sr0(x0, x1) new_ltEs5(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9, x10) new_esEs26(x0, x1, ty_Int) new_esEs10(:(x0, x1), [], x2) new_esEs20(x0, x1, ty_Ordering) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs13(Double(x0, x1), Double(x2, x3)) new_primEqNat0(Zero, Zero) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_not(False) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_ltEs12(Left(x0), Right(x1), x2, x3) new_ltEs12(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_emptyFM(x0, x1, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt12(x0, x1, x2, x3) new_esEs11(LT, LT) new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, x3, True, x4, x5, x6) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat2(Succ(x0), Succ(x1)) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(False, True) new_esEs16(True, False) new_esEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, True, x9, x10, x11) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare28(x0, x1, False, x2) new_esEs26(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, EmptyFM, True, x4, x5, x6) new_esEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Double) new_compare110(x0, x1, False) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, True, x5, x6, x7) new_esEs26(x0, x1, ty_Char) new_ltEs17(x0, x1) new_compare27(x0, x1, True) new_asAs(False, x0) new_esEs23(x0, x1, ty_Bool) new_mkBranch3(x0, x1, x2, x3, x4, x5, x6) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs32(x0, x1, ty_Float) new_lt11(x0, x1) new_compare19(x0, x1, x2, x3, x4) new_ltEs12(Left(x0), Left(x1), ty_Char, x2) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Char) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10, x11) new_primCmpNat0(x0, Zero) new_compare111(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu3, :(xuu40, xuu41), h, ba, 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 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_esEs4(@2(xuu22, xuu23), @2(xuu16, xuu17), h, ba), h, ba), GT), h, ba, bb) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu20, @2(xuu22, xuu23), xuu24, h, ba, bb) new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu21, @2(xuu22, xuu23), xuu24, h, ba, bb) new_addToFM_C(Branch(@2(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), @2(xuu4000, xuu4001), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_esEs30(xuu4000, xuu4001, xuu300, xuu301, new_esEs31(xuu4000, xuu300, bc), bc, bd), bc, bd, be) The TRS R consists of the following rules: new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs18(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu4600)), Pos(xuu480)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare10(xuu460, xuu480, True, ga, gb, gc) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu40000, xuu3000, cch, cda, cdb) new_pePe(True, xuu138) -> True new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_esEs23(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bga), bgb)) -> new_ltEs8(xuu4610, xuu4810, bga, bgb) new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt4(xuu4610, xuu4810, app(ty_Ratio, cd)) -> new_lt9(xuu4610, xuu4810, cd) new_esEs32(xuu34, xuu36, ty_Ordering) -> new_esEs11(xuu34, xuu36) new_compare31(xuu4600, xuu4800, app(ty_Ratio, cee)) -> new_compare8(xuu4600, xuu4800, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbe), dbf)) -> new_esEs5(xuu40001, xuu3001, dbe, dbf) new_lt5(xuu4611, xuu4811, app(ty_[], dd)) -> new_lt6(xuu4611, xuu4811, dd) new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_ltEs16(Nothing, Nothing, bda) -> True new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare26(xuu46, xuu48, True, bbg, bbh) -> EQ new_esEs9(xuu4611, xuu4811, ty_Char) -> new_esEs14(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, ty_Double) -> new_esEs13(xuu4611, xuu4811) new_esEs14(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs16(Just(xuu4610), Nothing, bda) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, dde)) -> new_esEs7(xuu40000, xuu3000, dde) new_esEs18(@0, @0) -> True new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, app(ty_Ratio, cab)) -> new_esEs12(xuu40000, xuu3000, cab) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Right(xuu4810), bcg, bch) -> True new_compare111(xuu460, xuu480, True, bbd, bbe) -> LT new_esEs32(xuu34, xuu36, app(ty_Ratio, bff)) -> new_esEs12(xuu34, xuu36, bff) new_lt21(xuu460, xuu480, app(ty_Ratio, bcd)) -> new_lt9(xuu460, xuu480, bcd) new_ltEs19(xuu4611, xuu4811, app(ty_Maybe, bbc)) -> new_ltEs16(xuu4611, xuu4811, bbc) new_esEs32(xuu34, xuu36, ty_Bool) -> new_esEs16(xuu34, xuu36) new_esEs9(xuu4611, xuu4811, ty_Bool) -> new_esEs16(xuu4611, xuu4811) new_compare32(xuu460, xuu480) -> new_compare210(xuu460, xuu480, new_esEs11(xuu460, xuu480)) new_ltEs19(xuu4611, xuu4811, ty_Char) -> new_ltEs11(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Double) -> new_esEs13(xuu34, xuu36) new_esEs8(xuu4610, xuu4810, app(app(app(ty_@3, cg), da), db)) -> new_esEs6(xuu4610, xuu4810, cg, da, db) new_esEs23(xuu40001, xuu3001, app(app(ty_Either, cag), cah)) -> new_esEs5(xuu40001, xuu3001, cag, cah) new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt19(xuu460, xuu480) -> new_esEs11(new_compare15(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, ty_Char) -> new_esEs14(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs5(xuu4612, xuu4812, ty_Int) -> new_ltEs15(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Double, bch) -> new_ltEs10(xuu4610, xuu4810) new_ltEs19(xuu4611, xuu4811, app(ty_[], bab)) -> new_ltEs6(xuu4611, xuu4811, bab) new_ltEs19(xuu4611, xuu4811, ty_Bool) -> new_ltEs14(xuu4611, xuu4811) new_esEs24(xuu40002, xuu3002, app(app(ty_@2, ccc), ccd)) -> new_esEs4(xuu40002, xuu3002, ccc, ccd) new_primCmpNat2(Succ(xuu46000), Succ(xuu48000)) -> new_primCmpNat2(xuu46000, xuu48000) new_esEs21(xuu460, xuu480, ty_Bool) -> new_esEs16(xuu460, xuu480) new_ltEs20(xuu461, xuu481, ty_Char) -> new_ltEs11(xuu461, xuu481) new_lt9(xuu460, xuu480, bcd) -> new_esEs11(new_compare8(xuu460, xuu480, bcd), LT) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt5(xuu4611, xuu4811, app(app(ty_Either, dh), ea)) -> new_lt12(xuu4611, xuu4811, dh, ea) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_ltEs20(xuu461, xuu481, app(ty_Ratio, bcf)) -> new_ltEs9(xuu461, xuu481, bcf) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(ty_@2, chc), chd)) -> new_esEs4(xuu40000, xuu3000, chc, chd) new_esEs21(xuu460, xuu480, ty_Double) -> new_esEs13(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_not(True) -> False new_lt4(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Float) -> new_ltEs18(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_compare16(xuu460, xuu480, True, bbf) -> LT new_primCompAux00(xuu143, LT) -> LT new_esEs21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs6(xuu460, xuu480, ga, gb, gc) new_ltEs9(xuu461, xuu481, bcf) -> new_fsEs(new_compare8(xuu461, xuu481, bcf)) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cgd), bdf) -> new_esEs12(xuu40000, xuu3000, cgd) new_lt4(xuu4610, xuu4810, app(app(ty_Either, ce), cf)) -> new_lt12(xuu4610, xuu4810, ce, cf) new_esEs20(xuu4610, xuu4810, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs6(xuu4610, xuu4810, hf, hg, hh) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_Either, fb), fc)) -> new_ltEs12(xuu4612, xuu4812, fb, fc) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs32(xuu34, xuu36, ty_Integer) -> new_esEs15(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcb)) -> new_esEs12(xuu40001, xuu3001, dcb) new_esEs10(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bea) -> new_asAs(new_esEs25(xuu40000, xuu3000, bea), new_esEs10(xuu40001, xuu3001, bea)) new_esEs9(xuu4611, xuu4811, ty_Ordering) -> new_esEs11(xuu4611, xuu4811) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_compare12(xuu114, xuu115, xuu116, xuu117, False, xuu119, gd, ge) -> new_compare11(xuu114, xuu115, xuu116, xuu117, xuu119, gd, ge) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs18(xuu461, xuu481) -> new_fsEs(new_compare15(xuu461, xuu481)) new_esEs23(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs14(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_primCmpNat0(xuu4600, Succ(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_esEs8(xuu4610, xuu4810, app(app(ty_@2, cb), cc)) -> new_esEs4(xuu4610, xuu4810, cb, cc) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs4(xuu4610, xuu4810, dff, dfg, dfh) new_lt20(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, app(ty_Ratio, dg)) -> new_esEs12(xuu4611, xuu4811, dg) new_lt20(xuu4610, xuu4810, app(app(app(ty_@3, hf), hg), hh)) -> new_lt13(xuu4610, xuu4810, hf, hg, hh) new_ltEs20(xuu461, xuu481, ty_Bool) -> new_ltEs14(xuu461, xuu481) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_@2, ddg), ddh), bch) -> new_ltEs8(xuu4610, xuu4810, ddg, ddh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_Ratio, chf)) -> new_esEs12(xuu40000, xuu3000, chf) new_primCompAux00(xuu143, GT) -> GT new_compare24(xuu460, xuu480, False, ga, gb, gc) -> new_compare10(xuu460, xuu480, new_ltEs4(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_compare28(xuu460, xuu480, True, bbf) -> EQ new_compare110(xuu460, xuu480, True) -> LT new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, ded), dee), def), bch) -> new_ltEs4(xuu4610, xuu4810, ded, dee, def) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, bdf) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu460, xuu480, True) -> LT new_primCmpInt(Pos(Succ(xuu4600)), Neg(xuu480)) -> GT new_compare27(xuu460, xuu480, False) -> new_compare14(xuu460, xuu480, new_ltEs14(xuu460, xuu480)) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu4610, xuu4810, app(app(ty_@2, ha), hb)) -> new_esEs4(xuu4610, xuu4810, ha, hb) new_lt21(xuu460, xuu480, ty_Integer) -> new_lt14(xuu460, xuu480) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu461, xuu481, ty_Double) -> new_ltEs10(xuu461, xuu481) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs16(xuu4000, xuu300) new_esEs24(xuu40002, xuu3002, ty_@0) -> new_esEs18(xuu40002, xuu3002) new_compare11(xuu114, xuu115, xuu116, xuu117, True, gd, ge) -> LT new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs13(xuu4000, xuu300) new_ltEs7(GT, GT) -> True new_lt13(xuu460, xuu480, ga, gb, gc) -> new_esEs11(new_compare19(xuu460, xuu480, ga, gb, gc), LT) new_primPlusNat1(Succ(xuu38200), Succ(xuu10100)) -> Succ(Succ(new_primPlusNat1(xuu38200, xuu10100))) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_primCompAux0(xuu4600, xuu4800, xuu139, bca) -> new_primCompAux00(xuu139, new_compare31(xuu4600, xuu4800, bca)) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs6(xuu4000, xuu300, bdb, bdc, bdd) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Char, bch) -> new_ltEs11(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, ty_@0) -> new_ltEs17(xuu461, xuu481) new_esEs21(xuu460, xuu480, ty_Ordering) -> new_esEs11(xuu460, xuu480) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(ty_Ratio, dg)) -> new_lt9(xuu4611, xuu4811, dg) new_compare210(xuu460, xuu480, True) -> EQ new_ltEs19(xuu4611, xuu4811, ty_Double) -> new_ltEs10(xuu4611, xuu4811) new_esEs30(xuu33, xuu34, xuu35, xuu36, False, bed, bee) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), False, bed, bee), LT) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_Maybe, chg)) -> new_esEs7(xuu40000, xuu3000, chg) new_esEs8(xuu4610, xuu4810, app(ty_Maybe, dc)) -> new_esEs7(xuu4610, xuu4810, dc) new_sr(Integer(xuu46000), Integer(xuu48010)) -> Integer(new_primMulInt(xuu46000, xuu48010)) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_pePe(False, xuu138) -> xuu138 new_esEs7(Nothing, Just(xuu3000), bec) -> False new_esEs7(Just(xuu40000), Nothing, bec) -> False new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt8(xuu460, xuu480, bcb, bcc) -> new_esEs11(new_compare18(xuu460, xuu480, bcb, bcc), LT) new_compare25(xuu460, xuu480, True, bbd, bbe) -> EQ new_esEs22(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Ordering, bch) -> new_ltEs7(xuu4610, xuu4810) new_lt20(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Integer, bch) -> new_ltEs13(xuu4610, xuu4810) new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dcg), dch)) -> new_esEs5(xuu40000, xuu3000, dcg, dch) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, bdf) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Ratio, dea), bch) -> new_ltEs9(xuu4610, xuu4810, dea) new_ltEs10(xuu461, xuu481) -> new_fsEs(new_compare29(xuu461, xuu481)) new_lt5(xuu4611, xuu4811, ty_Double) -> new_lt10(xuu4611, xuu4811) new_lt21(xuu460, xuu480, ty_Float) -> new_lt19(xuu460, xuu480) new_lt4(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Integer) -> new_ltEs13(xuu4612, xuu4812) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cga), cgb), bdf) -> new_esEs4(xuu40000, xuu3000, cga, cgb) new_esEs21(xuu460, xuu480, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xuu460, xuu480, bcb, bcc) new_lt21(xuu460, xuu480, ty_Bool) -> new_lt15(xuu460, xuu480) new_esEs32(xuu34, xuu36, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs6(xuu34, xuu36, bef, beg, beh) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, bec) -> True new_esEs23(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs14(True, True) -> True new_lt11(xuu460, xuu480) -> new_esEs11(new_compare17(xuu460, xuu480), LT) new_esEs8(xuu4610, xuu4810, app(ty_[], ca)) -> new_esEs10(xuu4610, xuu4810, ca) new_compare31(xuu4600, xuu4800, app(ty_Maybe, cfc)) -> new_compare6(xuu4600, xuu4800, cfc) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_esEs30(xuu33, xuu34, xuu35, xuu36, True, bed, bee) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), new_esEs32(xuu34, xuu36, bee), bed, bee), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, cde), cdf)) -> new_esEs4(xuu40000, xuu3000, cde, cdf) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_Either, deb), dec), bch) -> new_ltEs12(xuu4610, xuu4810, deb, dec) new_compare30(xuu460, xuu480) -> new_compare27(xuu460, xuu480, new_esEs16(xuu460, xuu480)) new_fsEs(xuu126) -> new_not(new_esEs11(xuu126, GT)) new_esEs22(xuu40000, xuu3000, app(ty_[], caa)) -> new_esEs10(xuu40000, xuu3000, caa) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(ty_Either, cca), ccb)) -> new_esEs5(xuu40002, xuu3002, cca, ccb) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs21(xuu460, xuu480, app(ty_Ratio, bcd)) -> new_esEs12(xuu460, xuu480, bcd) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_lt21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_lt13(xuu460, xuu480, ga, gb, gc) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, cea)) -> new_esEs7(xuu40000, xuu3000, cea) new_lt20(xuu4610, xuu4810, app(app(ty_@2, ha), hb)) -> new_lt8(xuu4610, xuu4810, ha, hb) new_compare31(xuu4600, xuu4800, app(app(ty_Either, cef), ceg)) -> new_compare5(xuu4600, xuu4800, cef, ceg) new_esEs9(xuu4611, xuu4811, app(app(ty_@2, de), df)) -> new_esEs4(xuu4611, xuu4811, de, df) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs32(xuu34, xuu36, app(app(ty_Either, bfa), bfb)) -> new_esEs5(xuu34, xuu36, bfa, bfb) new_lt5(xuu4611, xuu4811, app(app(ty_@2, de), df)) -> new_lt8(xuu4611, xuu4811, de, df) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, bdf) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(xuu40002, xuu3002, cbf, cbg, cbh) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(ty_@2, dfa), dfb)) -> new_ltEs8(xuu4610, xuu4810, dfa, dfb) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu40000, xuu3000, dcd, dce, dcf) new_compare5(xuu460, xuu480, bbd, bbe) -> new_compare25(xuu460, xuu480, new_esEs5(xuu460, xuu480, bbd, bbe), bbd, bbe) new_ltEs19(xuu4611, xuu4811, ty_Integer) -> new_ltEs13(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, app(ty_Maybe, cac)) -> new_esEs7(xuu40000, xuu3000, cac) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs18(xuu4000, xuu300) new_esEs24(xuu40002, xuu3002, ty_Int) -> new_esEs17(xuu40002, xuu3002) new_primCmpNat2(Succ(xuu46000), Zero) -> GT new_ltEs17(xuu461, xuu481) -> new_fsEs(new_compare7(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Bool) -> new_ltEs14(xuu4612, xuu4812) new_esEs23(xuu40001, xuu3001, app(ty_Maybe, cbe)) -> new_esEs7(xuu40001, xuu3001, cbe) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfg), cfh), bdf) -> new_esEs5(xuu40000, xuu3000, cfg, cfh) new_lt21(xuu460, xuu480, ty_Int) -> new_lt16(xuu460, xuu480) new_compare28(xuu460, xuu480, False, bbf) -> new_compare16(xuu460, xuu480, new_ltEs16(xuu460, xuu480, bbf), bbf) new_lt12(xuu460, xuu480, bbd, bbe) -> new_esEs11(new_compare5(xuu460, xuu480, bbd, bbe), LT) new_lt4(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(app(ty_Either, bbd), bbe)) -> new_esEs5(xuu460, xuu480, bbd, bbe) new_esEs11(LT, LT) -> True new_esEs24(xuu40002, xuu3002, app(ty_[], cce)) -> new_esEs10(xuu40002, xuu3002, cce) new_esEs22(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_@2, eg), eh)) -> new_ltEs8(xuu4612, xuu4812, eg, eh) new_esEs8(xuu4610, xuu4810, app(ty_Ratio, cd)) -> new_esEs12(xuu4610, xuu4810, cd) new_ltEs20(xuu461, xuu481, app(ty_Maybe, bda)) -> new_ltEs16(xuu461, xuu481, bda) new_compare19(xuu460, xuu480, ga, gb, gc) -> new_compare24(xuu460, xuu480, new_esEs6(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_lt21(xuu460, xuu480, app(app(ty_Either, bbd), bbe)) -> new_lt12(xuu460, xuu480, bbd, bbe) new_esEs20(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(xuu40000, xuu3000, bhb, bhc, bhd) new_primPlusNat1(Succ(xuu38200), Zero) -> Succ(xuu38200) new_primPlusNat1(Zero, Succ(xuu10100)) -> Succ(xuu10100) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], ddc)) -> new_esEs10(xuu40000, xuu3000, ddc) new_lt20(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu40000, xuu3000, dda, ddb) new_esEs9(xuu4611, xuu4811, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs6(xuu4611, xuu4811, eb, ec, ed) new_ltEs19(xuu4611, xuu4811, app(app(ty_@2, bac), bad)) -> new_ltEs8(xuu4611, xuu4811, bac, bad) new_esEs17(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_compare12(xuu114, xuu115, xuu116, xuu117, True, xuu119, gd, ge) -> new_compare11(xuu114, xuu115, xuu116, xuu117, True, gd, ge) new_esEs24(xuu40002, xuu3002, app(ty_Maybe, ccg)) -> new_esEs7(xuu40002, xuu3002, ccg) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Bool, bch) -> new_ltEs14(xuu4610, xuu4810) new_compare31(xuu4600, xuu4800, ty_Double) -> new_compare29(xuu4600, xuu4800) new_esEs13(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs23(xuu40001, xuu3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(xuu40001, xuu3001, cad, cae, caf) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bha)) -> new_ltEs16(xuu4610, xuu4810, bha) new_lt18(xuu460, xuu480) -> new_esEs11(new_compare7(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, app(ty_Ratio, hc)) -> new_esEs12(xuu4610, xuu4810, hc) new_ltEs20(xuu461, xuu481, app(app(ty_@2, gf), gg)) -> new_ltEs8(xuu461, xuu481, gf, gg) new_lt5(xuu4611, xuu4811, ty_Float) -> new_lt19(xuu4611, xuu4811) new_compare26(@2(xuu460, xuu461), @2(xuu480, xuu481), False, bbg, bbh) -> new_compare12(xuu460, xuu461, xuu480, xuu481, new_lt21(xuu460, xuu480, bbg), new_asAs(new_esEs21(xuu460, xuu480, bbg), new_ltEs20(xuu461, xuu481, bbh)), bbg, bbh) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_[], che)) -> new_esEs10(xuu40000, xuu3000, che) new_esEs24(xuu40002, xuu3002, ty_Float) -> new_esEs19(xuu40002, xuu3002) new_lt4(xuu4610, xuu4810, app(app(ty_@2, cb), cc)) -> new_lt8(xuu4610, xuu4810, cb, cc) new_esEs9(xuu4611, xuu4811, app(app(ty_Either, dh), ea)) -> new_esEs5(xuu4611, xuu4811, dh, ea) new_compare11(xuu114, xuu115, xuu116, xuu117, False, gd, ge) -> GT new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt10(xuu460, xuu480) -> new_esEs11(new_compare29(xuu460, xuu480), LT) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, bdf) -> new_esEs11(xuu40000, xuu3000) new_compare9(Integer(xuu4600), Integer(xuu4800)) -> new_primCmpInt(xuu4600, xuu4800) new_esEs31(xuu4000, xuu300, app(ty_Ratio, beb)) -> new_esEs12(xuu4000, xuu300, beb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs22(xuu40000, xuu3000, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu40000, xuu3000, bhe, bhf) new_lt5(xuu4611, xuu4811, ty_Int) -> new_lt16(xuu4611, xuu4811) new_esEs8(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_[], cbc)) -> new_esEs10(xuu40001, xuu3001, cbc) new_lt20(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_compare25(xuu460, xuu480, False, bbd, bbe) -> new_compare111(xuu460, xuu480, new_ltEs12(xuu460, xuu480, bbd, bbe), bbd, bbe) new_esEs21(xuu460, xuu480, ty_@0) -> new_esEs18(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(xuu40001, xuu3001, cba, cbb) new_lt5(xuu4611, xuu4811, ty_Char) -> new_lt11(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Integer) -> new_compare9(new_sr(xuu4600, xuu4801), new_sr(xuu4800, xuu4601)) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs17(xuu4000, xuu300) new_ltEs7(LT, LT) -> True new_ltEs20(xuu461, xuu481, ty_Int) -> new_ltEs15(xuu461, xuu481) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(xuu4610, xuu4810, dfd, dfe) new_lt5(xuu4611, xuu4811, app(ty_Maybe, ee)) -> new_lt17(xuu4611, xuu4811, ee) new_esEs9(xuu4611, xuu4811, app(ty_[], dd)) -> new_esEs10(xuu4611, xuu4811, dd) new_esEs20(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt21(xuu460, xuu480, ty_Double) -> new_lt10(xuu460, xuu480) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_[], deh)) -> new_ltEs6(xuu4610, xuu4810, deh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu40000, xuu3000, cgf, cgg, cgh) new_primCmpInt(Pos(Succ(xuu4600)), Pos(xuu480)) -> new_primCmpNat0(xuu4600, xuu480) new_esEs22(xuu40000, xuu3000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu40000, xuu3000, bhg, bhh) new_ltEs12(Right(xuu4610), Left(xuu4810), bcg, bch) -> False new_compare31(xuu4600, xuu4800, app(ty_[], ceb)) -> new_compare0(xuu4600, xuu4800, ceb) new_lt4(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_compare10(xuu460, xuu480, False, ga, gb, gc) -> GT new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, app(ty_[], bca)) -> new_esEs10(xuu460, xuu480, bca) new_esEs32(xuu34, xuu36, ty_@0) -> new_esEs18(xuu34, xuu36) new_esEs24(xuu40002, xuu3002, ty_Ordering) -> new_esEs11(xuu40002, xuu3002) new_compare14(xuu460, xuu480, False) -> GT new_esEs21(xuu460, xuu480, ty_Float) -> new_esEs19(xuu460, xuu480) new_ltEs6(xuu461, xuu481, bce) -> new_fsEs(new_compare0(xuu461, xuu481, bce)) new_ltEs5(xuu4612, xuu4812, ty_Double) -> new_ltEs10(xuu4612, xuu4812) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc, dbd) new_compare210(xuu460, xuu480, False) -> new_compare110(xuu460, xuu480, new_ltEs7(xuu460, xuu480)) new_compare24(xuu460, xuu480, True, ga, gb, gc) -> EQ new_lt4(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt21(xuu460, xuu480, app(app(ty_@2, bcb), bcc)) -> new_lt8(xuu460, xuu480, bcb, bcc) new_esEs29(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primCmpNat0(xuu4600, Zero) -> GT new_lt21(xuu460, xuu480, ty_Char) -> new_lt11(xuu460, xuu480) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs19(xuu4000, xuu300) new_primCmpNat2(Zero, Succ(xuu48000)) -> LT new_esEs8(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt16(xuu460, xuu480) -> new_esEs11(new_compare13(xuu460, xuu480), LT) new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(app(app(ty_@3, eb), ec), ed)) -> new_lt13(xuu4611, xuu4811, eb, ec, ed) new_compare0([], :(xuu4800, xuu4801), bca) -> LT new_asAs(True, xuu69) -> xuu69 new_ltEs5(xuu4612, xuu4812, app(ty_Maybe, fh)) -> new_ltEs16(xuu4612, xuu4812, fh) new_lt21(xuu460, xuu480, ty_@0) -> new_lt18(xuu460, xuu480) new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs19(xuu4611, xuu4811, ty_Int) -> new_ltEs15(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Ratio, bgc)) -> new_ltEs9(xuu4610, xuu4810, bgc) new_compare18(xuu460, xuu480, bcb, bcc) -> new_compare26(xuu460, xuu480, new_esEs4(xuu460, xuu480, bcb, bcc), bcb, bcc) new_esEs9(xuu4611, xuu4811, ty_@0) -> new_esEs18(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, bdf) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, ty_Int) -> new_esEs17(xuu460, xuu480) new_esEs24(xuu40002, xuu3002, app(ty_Ratio, ccf)) -> new_esEs12(xuu40002, xuu3002, ccf) new_esEs9(xuu4611, xuu4811, app(ty_Maybe, ee)) -> new_esEs7(xuu4611, xuu4811, ee) new_esEs24(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) new_compare31(xuu4600, xuu4800, ty_@0) -> new_compare7(xuu4600, xuu4800) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs13(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, ty_Double) -> new_esEs13(xuu40002, xuu3002) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, ddd)) -> new_esEs12(xuu40000, xuu3000, ddd) new_compare111(xuu460, xuu480, False, bbd, bbe) -> GT new_esEs8(xuu4610, xuu4810, app(app(ty_Either, ce), cf)) -> new_esEs5(xuu4610, xuu4810, ce, cf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs10(:(xuu40000, xuu40001), [], bea) -> False new_esEs10([], :(xuu3000, xuu3001), bea) -> False new_compare110(xuu460, xuu480, False) -> GT new_compare6(xuu460, xuu480, bbf) -> new_compare28(xuu460, xuu480, new_esEs7(xuu460, xuu480, bbf), bbf) new_esEs24(xuu40002, xuu3002, ty_Bool) -> new_esEs16(xuu40002, xuu3002) new_primCompAux00(xuu143, EQ) -> xuu143 new_compare0([], [], bca) -> EQ new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, bdf) -> new_esEs16(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, app(app(ty_Either, hd), he)) -> new_lt12(xuu4610, xuu4810, hd, he) new_esEs9(xuu4611, xuu4811, ty_Int) -> new_esEs17(xuu4611, xuu4811) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, bdf) -> new_esEs14(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_compare13(xuu95, xuu94) -> new_primCmpInt(xuu95, xuu94) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, bdf) -> new_esEs13(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(ty_[], ef)) -> new_ltEs6(xuu4612, xuu4812, ef) new_esEs23(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs29(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat0(xuu4800, Zero) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Float, bch) -> new_ltEs18(xuu4610, xuu4810) new_lt14(xuu460, xuu480) -> new_esEs11(new_compare9(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, app(ty_[], bfe)) -> new_esEs10(xuu34, xuu36, bfe) new_esEs31(xuu4000, xuu300, app(ty_Maybe, bec)) -> new_esEs7(xuu4000, xuu300, bec) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs7(LT, EQ) -> True new_primCmpNat1(Zero, xuu4600) -> LT new_ltEs20(xuu461, xuu481, ty_Integer) -> new_ltEs13(xuu461, xuu481) new_esEs20(xuu4610, xuu4810, app(app(ty_Either, hd), he)) -> new_esEs5(xuu4610, xuu4810, hd, he) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, app(ty_[], dag)) -> new_esEs10(xuu40000, xuu3000, dag) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(ty_Either, cha), chb)) -> new_esEs5(xuu40000, xuu3000, cha, chb) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Maybe, deg), bch) -> new_ltEs16(xuu4610, xuu4810, deg) new_lt20(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_esEs8(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_primCmpNat2(Zero, Zero) -> EQ new_esEs31(xuu4000, xuu300, app(ty_[], bea)) -> new_esEs10(xuu4000, xuu300, bea) new_ltEs19(xuu4611, xuu4811, app(app(ty_Either, baf), bag)) -> new_ltEs12(xuu4611, xuu4811, baf, bag) new_ltEs14(False, True) -> True new_esEs25(xuu40000, xuu3000, app(ty_[], cdg)) -> new_esEs10(xuu40000, xuu3000, cdg) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Int, bch) -> new_ltEs15(xuu4610, xuu4810) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_Maybe, dga)) -> new_ltEs16(xuu4610, xuu4810, dga) new_lt15(xuu460, xuu480) -> new_esEs11(new_compare30(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_ltEs11(xuu461, xuu481) -> new_fsEs(new_compare17(xuu461, xuu481)) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_ltEs20(xuu461, xuu481, app(app(ty_Either, bcg), bch)) -> new_ltEs12(xuu461, xuu481, bcg, bch) new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(ty_Maybe, bbf)) -> new_esEs7(xuu460, xuu480, bbf) new_esEs32(xuu34, xuu36, app(app(ty_@2, bfc), bfd)) -> new_esEs4(xuu34, xuu36, bfc, bfd) new_ltEs13(xuu461, xuu481) -> new_fsEs(new_compare9(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Char) -> new_ltEs11(xuu4612, xuu4812) new_esEs11(EQ, EQ) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs9(xuu4611, xuu4811, ty_Float) -> new_esEs19(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dae), daf)) -> new_esEs4(xuu40000, xuu3000, dae, daf) new_lt4(xuu4610, xuu4810, app(app(app(ty_@3, cg), da), db)) -> new_lt13(xuu4610, xuu4810, cg, da, db) new_esEs16(True, True) -> True new_lt6(xuu460, xuu480, bca) -> new_esEs11(new_compare0(xuu460, xuu480, bca), LT) new_esEs24(xuu40002, xuu3002, ty_Char) -> new_esEs14(xuu40002, xuu3002) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, cdc), cdd)) -> new_esEs5(xuu40000, xuu3000, cdc, cdd) new_ltEs16(Nothing, Just(xuu4810), bda) -> True new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_[], ddf), bch) -> new_ltEs6(xuu4610, xuu4810, ddf) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Int) -> new_compare13(new_sr0(xuu4600, xuu4801), new_sr0(xuu4800, xuu4601)) new_esEs32(xuu34, xuu36, app(ty_Maybe, bfg)) -> new_esEs7(xuu34, xuu36, bfg) new_esEs31(xuu4000, xuu300, app(app(ty_Either, bde), bdf)) -> new_esEs5(xuu4000, xuu300, bde, bdf) new_lt5(xuu4611, xuu4811, ty_Bool) -> new_lt15(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dba)) -> new_esEs7(xuu40000, xuu3000, dba) new_esEs8(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(xuu4611, xuu4811, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs4(xuu4611, xuu4811, bah, bba, bbb) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dac), dad)) -> new_esEs5(xuu40000, xuu3000, dac, dad) new_ltEs15(xuu461, xuu481) -> new_fsEs(new_compare13(xuu461, xuu481)) new_esEs8(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_Ratio, cbd)) -> new_esEs12(xuu40001, xuu3001, cbd) new_ltEs19(xuu4611, xuu4811, ty_@0) -> new_ltEs17(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cfd), cfe), cff), bdf) -> new_esEs6(xuu40000, xuu3000, cfd, cfe, cff) new_esEs8(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_primCmpNat1(Succ(xuu4800), xuu4600) -> new_primCmpNat2(xuu4800, xuu4600) new_esEs21(xuu460, xuu480, ty_Integer) -> new_esEs15(xuu460, xuu480) new_ltEs5(xuu4612, xuu4812, ty_Ordering) -> new_ltEs7(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_@0, bch) -> new_ltEs17(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, app(ty_[], gh)) -> new_esEs10(xuu4610, xuu4810, gh) new_compare31(xuu4600, xuu4800, ty_Integer) -> new_compare9(xuu4600, xuu4800) new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu40000, xuu3000, chh, daa, dab) new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dcc)) -> new_esEs7(xuu40001, xuu3001, dcc) new_ltEs4(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bf, bg, bh) -> new_pePe(new_lt4(xuu4610, xuu4810, bf), new_asAs(new_esEs8(xuu4610, xuu4810, bf), new_pePe(new_lt5(xuu4611, xuu4811, bg), new_asAs(new_esEs9(xuu4611, xuu4811, bg), new_ltEs5(xuu4612, xuu4812, bh))))) new_lt7(xuu460, xuu480) -> new_esEs11(new_compare32(xuu460, xuu480), LT) new_lt20(xuu4610, xuu4810, app(ty_Ratio, hc)) -> new_lt9(xuu4610, xuu4810, hc) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_[], bfh)) -> new_ltEs6(xuu4610, xuu4810, bfh) new_lt21(xuu460, xuu480, app(ty_Maybe, bbf)) -> new_lt17(xuu460, xuu480, bbf) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cge), bdf) -> new_esEs7(xuu40000, xuu3000, cge) new_esEs8(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_lt5(xuu4611, xuu4811, ty_Integer) -> new_lt14(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bgd), bge)) -> new_ltEs12(xuu4610, xuu4810, bgd, bge) new_esEs31(xuu4000, xuu300, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xuu4000, xuu300, bdg, bdh) new_ltEs7(EQ, GT) -> True new_esEs9(xuu4611, xuu4811, ty_Integer) -> new_esEs15(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Int) -> new_esEs17(xuu34, xuu36) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_lt5(xuu4611, xuu4811, ty_@0) -> new_lt18(xuu4611, xuu4811) new_not(False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_Ratio, dfc)) -> new_ltEs9(xuu4610, xuu4810, dfc) new_compare31(xuu4600, xuu4800, ty_Char) -> new_compare17(xuu4600, xuu4800) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdg, bdh) -> new_asAs(new_esEs26(xuu40000, xuu3000, bdg), new_esEs27(xuu40001, xuu3001, bdh)) new_esEs20(xuu4610, xuu4810, app(ty_Maybe, baa)) -> new_esEs7(xuu4610, xuu4810, baa) new_primCmpInt(Neg(Succ(xuu4600)), Neg(xuu480)) -> new_primCmpNat1(xuu480, xuu4600) new_compare0(:(xuu4600, xuu4601), [], bca) -> GT new_ltEs5(xuu4612, xuu4812, ty_@0) -> new_ltEs17(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs7(EQ, EQ) -> True new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, ty_Ordering) -> new_ltEs7(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Right(xuu3000), bde, bdf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), bde, bdf) -> False new_lt4(xuu4610, xuu4810, app(ty_Maybe, dc)) -> new_lt17(xuu4610, xuu4810, dc) new_ltEs7(GT, EQ) -> False new_esEs27(xuu40001, xuu3001, app(ty_[], dca)) -> new_esEs10(xuu40001, xuu3001, dca) new_esEs20(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], cgc), bdf) -> new_esEs10(xuu40000, xuu3000, cgc) new_esEs19(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare31(xuu4600, xuu4800, app(app(ty_@2, cec), ced)) -> new_compare18(xuu4600, xuu4800, cec, ced) new_lt4(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_compare17(Char(xuu4600), Char(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_lt21(xuu460, xuu480, app(ty_[], bca)) -> new_lt6(xuu460, xuu480, bca) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bdb, bdc, bdd) -> new_asAs(new_esEs22(xuu40000, xuu3000, bdb), new_asAs(new_esEs23(xuu40001, xuu3001, bdc), new_esEs24(xuu40002, xuu3002, bdd))) new_primPlusNat0(Succ(xuu1050), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1050, xuu300000))) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, app(ty_[], bce)) -> new_ltEs6(xuu461, xuu481, bce) new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs20(xuu461, xuu481, ty_Ordering) -> new_ltEs7(xuu461, xuu481) new_esEs32(xuu34, xuu36, ty_Float) -> new_esEs19(xuu34, xuu36) new_esEs12(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), beb) -> new_asAs(new_esEs28(xuu40000, xuu3000, beb), new_esEs29(xuu40001, xuu3001, beb)) new_ltEs5(xuu4612, xuu4812, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs4(xuu4612, xuu4812, fd, ff, fg) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs20(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_compare0(:(xuu4600, xuu4601), :(xuu4800, xuu4801), bca) -> new_primCompAux0(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, bca), bca) new_primPlusNat1(Zero, Zero) -> Zero new_esEs10([], [], bea) -> True new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh) new_ltEs7(EQ, LT) -> False new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs11(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, ty_Int) -> new_compare13(xuu4600, xuu4800) new_esEs22(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare19(xuu4600, xuu4800, ceh, cfa, cfb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu4600, xuu4800, ty_Bool) -> new_compare30(xuu4600, xuu4800) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare16(xuu460, xuu480, False, bbf) -> GT new_ltEs14(False, False) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs7(GT, LT) -> False new_esEs8(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs4(xuu4610, xuu4810, bgf, bgg, bgh) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat1(Zero, xuu4800) new_esEs16(False, False) -> True new_esEs23(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, app(ty_Ratio, bae)) -> new_ltEs9(xuu4611, xuu4811, bae) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs19(xuu4611, xuu4811, ty_Float) -> new_ltEs18(xuu4611, xuu4811) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dah)) -> new_esEs12(xuu40000, xuu3000, dah) new_lt21(xuu460, xuu480, ty_Ordering) -> new_lt7(xuu460, xuu480) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, cdh)) -> new_esEs12(xuu40000, xuu3000, cdh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs8(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), gf, gg) -> new_pePe(new_lt20(xuu4610, xuu4810, gf), new_asAs(new_esEs20(xuu4610, xuu4810, gf), new_ltEs19(xuu4611, xuu4811, gg))) new_esEs23(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, ty_Char) -> new_esEs14(xuu460, xuu480) new_compare31(xuu4600, xuu4800, ty_Float) -> new_compare15(xuu4600, xuu4800) new_lt4(xuu4610, xuu4810, app(ty_[], ca)) -> new_lt6(xuu4610, xuu4810, ca) new_ltEs20(xuu461, xuu481, ty_Float) -> new_ltEs18(xuu461, xuu481) new_lt17(xuu460, xuu480, bbf) -> new_esEs11(new_compare6(xuu460, xuu480, bbf), LT) new_lt20(xuu4610, xuu4810, app(ty_[], gh)) -> new_lt6(xuu4610, xuu4810, gh) new_lt5(xuu4611, xuu4811, ty_Ordering) -> new_lt7(xuu4611, xuu4811) new_ltEs14(True, False) -> False new_ltEs5(xuu4612, xuu4812, app(ty_Ratio, fa)) -> new_ltEs9(xuu4612, xuu4812, fa) new_asAs(False, xuu69) -> False new_compare7(@0, @0) -> EQ new_lt20(xuu4610, xuu4810, app(ty_Maybe, baa)) -> new_lt17(xuu4610, xuu4810, baa) new_compare31(xuu4600, xuu4800, ty_Ordering) -> new_compare32(xuu4600, xuu4800) new_ltEs20(xuu461, xuu481, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xuu461, xuu481, bf, bg, bh) new_compare27(xuu460, xuu480, True) -> EQ new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_esEs16(False, True) -> False new_esEs16(True, False) -> False The set Q consists of the following terms: new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, ty_Double) new_compare31(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs13(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Char) new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_@0) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs11(x0, x1) new_fsEs(x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs12(Right(x0), Right(x1), x2, ty_@0) new_lt4(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, ty_Bool) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare18(x0, x1, x2, x3) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt4(x0, x1, ty_Float) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs7(Just(x0), Nothing, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt5(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(x0, x1) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare5(x0, x1, x2, x3) new_ltEs16(Nothing, Nothing, x0) new_esEs24(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_compare31(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs14(Char(x0), Char(x1)) new_compare25(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_compare31(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpNat1(Zero, x0) new_esEs20(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, False, x2) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare27(x0, x1, False) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_ltEs16(Nothing, Just(x0), x1) new_compare110(x0, x1, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt12(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Ordering) new_compare9(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(EQ, EQ) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(True, True) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_@0) new_primMulInt(Neg(x0), Neg(x1)) new_lt4(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_ltEs9(x0, x1, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt14(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) new_compare14(x0, x1, False) new_esEs27(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare28(x0, x1, False, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, x2, x3, False, x4, x5) new_lt15(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_ltEs16(Just(x0), Just(x1), ty_Int) new_lt4(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs24(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Integer) new_ltEs12(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Zero, Succ(x0)) new_lt7(x0, x1) new_compare31(x0, x1, ty_Char) new_lt19(x0, x1) new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Zero, Succ(x0)) new_lt6(x0, x1, x2) new_esEs24(x0, x1, ty_Ordering) new_ltEs14(False, False) new_lt5(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs31(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(False, False) new_primCmpNat2(Zero, Succ(x0)) new_lt5(x0, x1, ty_Int) new_compare31(x0, x1, ty_Ordering) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Char) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(x0, x1, ty_Int) new_primCmpNat1(Succ(x0), x1) new_lt13(x0, x1, x2, x3, x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_compare11(x0, x1, x2, x3, True, x4, x5) new_compare210(x0, x1, True) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Double) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primPlusNat0(Zero, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_esEs9(x0, x1, ty_Float) new_compare28(x0, x1, True, x2) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare14(x0, x1, True) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(@0, @0) new_primCompAux00(x0, LT) new_lt20(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1) new_esEs8(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(LT, LT) new_esEs7(Nothing, Nothing, x0) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare32(x0, x1) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_compare16(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_primCmpNat2(Zero, Zero) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_ltEs12(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Ordering) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Char) new_primCmpNat0(x0, Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare13(x0, x1) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Double) new_ltEs16(Just(x0), Nothing, x1) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Integer) new_esEs10(:(x0, x1), [], x2) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_primCompAux00(x0, EQ) new_sr(Integer(x0), Integer(x1)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_pePe(False, x0) new_compare6(x0, x1, x2) new_ltEs10(x0, x1) new_esEs11(EQ, EQ) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_compare17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_compare111(x0, x1, False, x2, x3) new_compare0(:(x0, x1), [], x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat2(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Bool) new_lt5(x0, x1, ty_@0) new_ltEs7(GT, GT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs22(x0, x1, ty_@0) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs17(x0, x1) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_ltEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt18(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_ltEs5(x0, x1, ty_Float) new_lt4(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_compare24(x0, x1, False, x2, x3, x4) new_esEs31(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_compare111(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Nothing, Just(x0), x1) new_lt4(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs10([], :(x0, x1), x2) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs29(x0, x1, ty_Integer) new_lt16(x0, x1) new_lt9(x0, x1, x2) new_esEs22(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Double) new_esEs11(GT, GT) new_esEs18(@0, @0) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs12(Right(x0), Right(x1), x2, ty_Char) new_sr0(x0, x1) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Float) new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Ordering) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs13(Double(x0, x1), Double(x2, x3)) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_ltEs12(Left(x0), Left(x1), ty_Int, x2) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs12(Left(x0), Right(x1), x2, x3) new_ltEs12(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs11(LT, LT) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs16(False, True) new_esEs16(True, False) new_lt20(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Double) new_compare110(x0, x1, False) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_ltEs17(x0, x1) new_compare27(x0, x1, True) new_lt8(x0, x1, x2, x3) new_lt17(x0, x1, x2) new_asAs(False, x0) new_esEs23(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_lt11(x0, x1) new_compare19(x0, x1, x2, x3, x4) new_esEs9(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Char) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) new_primCmpNat0(x0, Zero) new_ltEs20(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_esEs4(@2(xuu22, xuu23), @2(xuu16, xuu17), h, ba), h, ba), GT), h, ba, bb) at position [9,0,2] we obtained the following new rules [LPAR04]: (new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_asAs(new_esEs26(xuu22, xuu16, h), new_esEs27(xuu23, xuu17, ba)), h, ba), GT), h, ba, bb),new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_asAs(new_esEs26(xuu22, xuu16, h), new_esEs27(xuu23, xuu17, ba)), h, ba), GT), h, ba, bb)) ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu20, @2(xuu22, xuu23), xuu24, h, ba, bb) new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu21, @2(xuu22, xuu23), xuu24, h, ba, bb) new_addToFM_C(Branch(@2(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), @2(xuu4000, xuu4001), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_esEs30(xuu4000, xuu4001, xuu300, xuu301, new_esEs31(xuu4000, xuu300, bc), bc, bd), bc, bd, be) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_asAs(new_esEs26(xuu22, xuu16, h), new_esEs27(xuu23, xuu17, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs18(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu4600)), Pos(xuu480)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare10(xuu460, xuu480, True, ga, gb, gc) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu40000, xuu3000, cch, cda, cdb) new_pePe(True, xuu138) -> True new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_esEs23(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bga), bgb)) -> new_ltEs8(xuu4610, xuu4810, bga, bgb) new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt4(xuu4610, xuu4810, app(ty_Ratio, cd)) -> new_lt9(xuu4610, xuu4810, cd) new_esEs32(xuu34, xuu36, ty_Ordering) -> new_esEs11(xuu34, xuu36) new_compare31(xuu4600, xuu4800, app(ty_Ratio, cee)) -> new_compare8(xuu4600, xuu4800, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbe), dbf)) -> new_esEs5(xuu40001, xuu3001, dbe, dbf) new_lt5(xuu4611, xuu4811, app(ty_[], dd)) -> new_lt6(xuu4611, xuu4811, dd) new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_ltEs16(Nothing, Nothing, bda) -> True new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare26(xuu46, xuu48, True, bbg, bbh) -> EQ new_esEs9(xuu4611, xuu4811, ty_Char) -> new_esEs14(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, ty_Double) -> new_esEs13(xuu4611, xuu4811) new_esEs14(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs16(Just(xuu4610), Nothing, bda) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, dde)) -> new_esEs7(xuu40000, xuu3000, dde) new_esEs18(@0, @0) -> True new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, app(ty_Ratio, cab)) -> new_esEs12(xuu40000, xuu3000, cab) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Right(xuu4810), bcg, bch) -> True new_compare111(xuu460, xuu480, True, bbd, bbe) -> LT new_esEs32(xuu34, xuu36, app(ty_Ratio, bff)) -> new_esEs12(xuu34, xuu36, bff) new_lt21(xuu460, xuu480, app(ty_Ratio, bcd)) -> new_lt9(xuu460, xuu480, bcd) new_ltEs19(xuu4611, xuu4811, app(ty_Maybe, bbc)) -> new_ltEs16(xuu4611, xuu4811, bbc) new_esEs32(xuu34, xuu36, ty_Bool) -> new_esEs16(xuu34, xuu36) new_esEs9(xuu4611, xuu4811, ty_Bool) -> new_esEs16(xuu4611, xuu4811) new_compare32(xuu460, xuu480) -> new_compare210(xuu460, xuu480, new_esEs11(xuu460, xuu480)) new_ltEs19(xuu4611, xuu4811, ty_Char) -> new_ltEs11(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Double) -> new_esEs13(xuu34, xuu36) new_esEs8(xuu4610, xuu4810, app(app(app(ty_@3, cg), da), db)) -> new_esEs6(xuu4610, xuu4810, cg, da, db) new_esEs23(xuu40001, xuu3001, app(app(ty_Either, cag), cah)) -> new_esEs5(xuu40001, xuu3001, cag, cah) new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt19(xuu460, xuu480) -> new_esEs11(new_compare15(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, ty_Char) -> new_esEs14(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs5(xuu4612, xuu4812, ty_Int) -> new_ltEs15(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Double, bch) -> new_ltEs10(xuu4610, xuu4810) new_ltEs19(xuu4611, xuu4811, app(ty_[], bab)) -> new_ltEs6(xuu4611, xuu4811, bab) new_ltEs19(xuu4611, xuu4811, ty_Bool) -> new_ltEs14(xuu4611, xuu4811) new_esEs24(xuu40002, xuu3002, app(app(ty_@2, ccc), ccd)) -> new_esEs4(xuu40002, xuu3002, ccc, ccd) new_primCmpNat2(Succ(xuu46000), Succ(xuu48000)) -> new_primCmpNat2(xuu46000, xuu48000) new_esEs21(xuu460, xuu480, ty_Bool) -> new_esEs16(xuu460, xuu480) new_ltEs20(xuu461, xuu481, ty_Char) -> new_ltEs11(xuu461, xuu481) new_lt9(xuu460, xuu480, bcd) -> new_esEs11(new_compare8(xuu460, xuu480, bcd), LT) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt5(xuu4611, xuu4811, app(app(ty_Either, dh), ea)) -> new_lt12(xuu4611, xuu4811, dh, ea) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_ltEs20(xuu461, xuu481, app(ty_Ratio, bcf)) -> new_ltEs9(xuu461, xuu481, bcf) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(ty_@2, chc), chd)) -> new_esEs4(xuu40000, xuu3000, chc, chd) new_esEs21(xuu460, xuu480, ty_Double) -> new_esEs13(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_not(True) -> False new_lt4(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Float) -> new_ltEs18(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_compare16(xuu460, xuu480, True, bbf) -> LT new_primCompAux00(xuu143, LT) -> LT new_esEs21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs6(xuu460, xuu480, ga, gb, gc) new_ltEs9(xuu461, xuu481, bcf) -> new_fsEs(new_compare8(xuu461, xuu481, bcf)) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cgd), bdf) -> new_esEs12(xuu40000, xuu3000, cgd) new_lt4(xuu4610, xuu4810, app(app(ty_Either, ce), cf)) -> new_lt12(xuu4610, xuu4810, ce, cf) new_esEs20(xuu4610, xuu4810, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs6(xuu4610, xuu4810, hf, hg, hh) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_Either, fb), fc)) -> new_ltEs12(xuu4612, xuu4812, fb, fc) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs32(xuu34, xuu36, ty_Integer) -> new_esEs15(xuu34, xuu36) new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcb)) -> new_esEs12(xuu40001, xuu3001, dcb) new_esEs10(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bea) -> new_asAs(new_esEs25(xuu40000, xuu3000, bea), new_esEs10(xuu40001, xuu3001, bea)) new_esEs9(xuu4611, xuu4811, ty_Ordering) -> new_esEs11(xuu4611, xuu4811) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_compare12(xuu114, xuu115, xuu116, xuu117, False, xuu119, gd, ge) -> new_compare11(xuu114, xuu115, xuu116, xuu117, xuu119, gd, ge) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs18(xuu461, xuu481) -> new_fsEs(new_compare15(xuu461, xuu481)) new_esEs23(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs14(xuu4000, xuu300) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_primCmpNat0(xuu4600, Succ(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_esEs8(xuu4610, xuu4810, app(app(ty_@2, cb), cc)) -> new_esEs4(xuu4610, xuu4810, cb, cc) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs4(xuu4610, xuu4810, dff, dfg, dfh) new_lt20(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, app(ty_Ratio, dg)) -> new_esEs12(xuu4611, xuu4811, dg) new_lt20(xuu4610, xuu4810, app(app(app(ty_@3, hf), hg), hh)) -> new_lt13(xuu4610, xuu4810, hf, hg, hh) new_ltEs20(xuu461, xuu481, ty_Bool) -> new_ltEs14(xuu461, xuu481) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_@2, ddg), ddh), bch) -> new_ltEs8(xuu4610, xuu4810, ddg, ddh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_Ratio, chf)) -> new_esEs12(xuu40000, xuu3000, chf) new_primCompAux00(xuu143, GT) -> GT new_compare24(xuu460, xuu480, False, ga, gb, gc) -> new_compare10(xuu460, xuu480, new_ltEs4(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_compare28(xuu460, xuu480, True, bbf) -> EQ new_compare110(xuu460, xuu480, True) -> LT new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, ded), dee), def), bch) -> new_ltEs4(xuu4610, xuu4810, ded, dee, def) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, bdf) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu460, xuu480, True) -> LT new_primCmpInt(Pos(Succ(xuu4600)), Neg(xuu480)) -> GT new_compare27(xuu460, xuu480, False) -> new_compare14(xuu460, xuu480, new_ltEs14(xuu460, xuu480)) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu4610, xuu4810, app(app(ty_@2, ha), hb)) -> new_esEs4(xuu4610, xuu4810, ha, hb) new_lt21(xuu460, xuu480, ty_Integer) -> new_lt14(xuu460, xuu480) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu461, xuu481, ty_Double) -> new_ltEs10(xuu461, xuu481) new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs16(xuu4000, xuu300) new_esEs24(xuu40002, xuu3002, ty_@0) -> new_esEs18(xuu40002, xuu3002) new_compare11(xuu114, xuu115, xuu116, xuu117, True, gd, ge) -> LT new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs13(xuu4000, xuu300) new_ltEs7(GT, GT) -> True new_lt13(xuu460, xuu480, ga, gb, gc) -> new_esEs11(new_compare19(xuu460, xuu480, ga, gb, gc), LT) new_primPlusNat1(Succ(xuu38200), Succ(xuu10100)) -> Succ(Succ(new_primPlusNat1(xuu38200, xuu10100))) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_primCompAux0(xuu4600, xuu4800, xuu139, bca) -> new_primCompAux00(xuu139, new_compare31(xuu4600, xuu4800, bca)) new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs6(xuu4000, xuu300, bdb, bdc, bdd) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Char, bch) -> new_ltEs11(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, ty_@0) -> new_ltEs17(xuu461, xuu481) new_esEs21(xuu460, xuu480, ty_Ordering) -> new_esEs11(xuu460, xuu480) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(ty_Ratio, dg)) -> new_lt9(xuu4611, xuu4811, dg) new_compare210(xuu460, xuu480, True) -> EQ new_ltEs19(xuu4611, xuu4811, ty_Double) -> new_ltEs10(xuu4611, xuu4811) new_esEs30(xuu33, xuu34, xuu35, xuu36, False, bed, bee) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), False, bed, bee), LT) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_Maybe, chg)) -> new_esEs7(xuu40000, xuu3000, chg) new_esEs8(xuu4610, xuu4810, app(ty_Maybe, dc)) -> new_esEs7(xuu4610, xuu4810, dc) new_sr(Integer(xuu46000), Integer(xuu48010)) -> Integer(new_primMulInt(xuu46000, xuu48010)) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_pePe(False, xuu138) -> xuu138 new_esEs7(Nothing, Just(xuu3000), bec) -> False new_esEs7(Just(xuu40000), Nothing, bec) -> False new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt8(xuu460, xuu480, bcb, bcc) -> new_esEs11(new_compare18(xuu460, xuu480, bcb, bcc), LT) new_compare25(xuu460, xuu480, True, bbd, bbe) -> EQ new_esEs22(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Ordering, bch) -> new_ltEs7(xuu4610, xuu4810) new_lt20(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Integer, bch) -> new_ltEs13(xuu4610, xuu4810) new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dcg), dch)) -> new_esEs5(xuu40000, xuu3000, dcg, dch) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, bdf) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Ratio, dea), bch) -> new_ltEs9(xuu4610, xuu4810, dea) new_ltEs10(xuu461, xuu481) -> new_fsEs(new_compare29(xuu461, xuu481)) new_lt5(xuu4611, xuu4811, ty_Double) -> new_lt10(xuu4611, xuu4811) new_lt21(xuu460, xuu480, ty_Float) -> new_lt19(xuu460, xuu480) new_lt4(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Integer) -> new_ltEs13(xuu4612, xuu4812) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cga), cgb), bdf) -> new_esEs4(xuu40000, xuu3000, cga, cgb) new_esEs21(xuu460, xuu480, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xuu460, xuu480, bcb, bcc) new_lt21(xuu460, xuu480, ty_Bool) -> new_lt15(xuu460, xuu480) new_esEs32(xuu34, xuu36, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs6(xuu34, xuu36, bef, beg, beh) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, bec) -> True new_esEs23(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs14(True, True) -> True new_lt11(xuu460, xuu480) -> new_esEs11(new_compare17(xuu460, xuu480), LT) new_esEs8(xuu4610, xuu4810, app(ty_[], ca)) -> new_esEs10(xuu4610, xuu4810, ca) new_compare31(xuu4600, xuu4800, app(ty_Maybe, cfc)) -> new_compare6(xuu4600, xuu4800, cfc) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_esEs30(xuu33, xuu34, xuu35, xuu36, True, bed, bee) -> new_esEs11(new_compare26(@2(xuu33, xuu34), @2(xuu35, xuu36), new_esEs32(xuu34, xuu36, bee), bed, bee), LT) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, cde), cdf)) -> new_esEs4(xuu40000, xuu3000, cde, cdf) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_Either, deb), dec), bch) -> new_ltEs12(xuu4610, xuu4810, deb, dec) new_compare30(xuu460, xuu480) -> new_compare27(xuu460, xuu480, new_esEs16(xuu460, xuu480)) new_fsEs(xuu126) -> new_not(new_esEs11(xuu126, GT)) new_esEs22(xuu40000, xuu3000, app(ty_[], caa)) -> new_esEs10(xuu40000, xuu3000, caa) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(ty_Either, cca), ccb)) -> new_esEs5(xuu40002, xuu3002, cca, ccb) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs21(xuu460, xuu480, app(ty_Ratio, bcd)) -> new_esEs12(xuu460, xuu480, bcd) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_lt21(xuu460, xuu480, app(app(app(ty_@3, ga), gb), gc)) -> new_lt13(xuu460, xuu480, ga, gb, gc) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, cea)) -> new_esEs7(xuu40000, xuu3000, cea) new_lt20(xuu4610, xuu4810, app(app(ty_@2, ha), hb)) -> new_lt8(xuu4610, xuu4810, ha, hb) new_compare31(xuu4600, xuu4800, app(app(ty_Either, cef), ceg)) -> new_compare5(xuu4600, xuu4800, cef, ceg) new_esEs9(xuu4611, xuu4811, app(app(ty_@2, de), df)) -> new_esEs4(xuu4611, xuu4811, de, df) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs32(xuu34, xuu36, app(app(ty_Either, bfa), bfb)) -> new_esEs5(xuu34, xuu36, bfa, bfb) new_lt5(xuu4611, xuu4811, app(app(ty_@2, de), df)) -> new_lt8(xuu4611, xuu4811, de, df) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, bdf) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(xuu40002, xuu3002, cbf, cbg, cbh) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(ty_@2, dfa), dfb)) -> new_ltEs8(xuu4610, xuu4810, dfa, dfb) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu40000, xuu3000, dcd, dce, dcf) new_compare5(xuu460, xuu480, bbd, bbe) -> new_compare25(xuu460, xuu480, new_esEs5(xuu460, xuu480, bbd, bbe), bbd, bbe) new_ltEs19(xuu4611, xuu4811, ty_Integer) -> new_ltEs13(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, app(ty_Maybe, cac)) -> new_esEs7(xuu40000, xuu3000, cac) new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs18(xuu4000, xuu300) new_esEs24(xuu40002, xuu3002, ty_Int) -> new_esEs17(xuu40002, xuu3002) new_primCmpNat2(Succ(xuu46000), Zero) -> GT new_ltEs17(xuu461, xuu481) -> new_fsEs(new_compare7(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Bool) -> new_ltEs14(xuu4612, xuu4812) new_esEs23(xuu40001, xuu3001, app(ty_Maybe, cbe)) -> new_esEs7(xuu40001, xuu3001, cbe) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfg), cfh), bdf) -> new_esEs5(xuu40000, xuu3000, cfg, cfh) new_lt21(xuu460, xuu480, ty_Int) -> new_lt16(xuu460, xuu480) new_compare28(xuu460, xuu480, False, bbf) -> new_compare16(xuu460, xuu480, new_ltEs16(xuu460, xuu480, bbf), bbf) new_lt12(xuu460, xuu480, bbd, bbe) -> new_esEs11(new_compare5(xuu460, xuu480, bbd, bbe), LT) new_lt4(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(app(ty_Either, bbd), bbe)) -> new_esEs5(xuu460, xuu480, bbd, bbe) new_esEs11(LT, LT) -> True new_esEs24(xuu40002, xuu3002, app(ty_[], cce)) -> new_esEs10(xuu40002, xuu3002, cce) new_esEs22(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_@2, eg), eh)) -> new_ltEs8(xuu4612, xuu4812, eg, eh) new_esEs8(xuu4610, xuu4810, app(ty_Ratio, cd)) -> new_esEs12(xuu4610, xuu4810, cd) new_ltEs20(xuu461, xuu481, app(ty_Maybe, bda)) -> new_ltEs16(xuu461, xuu481, bda) new_compare19(xuu460, xuu480, ga, gb, gc) -> new_compare24(xuu460, xuu480, new_esEs6(xuu460, xuu480, ga, gb, gc), ga, gb, gc) new_lt21(xuu460, xuu480, app(app(ty_Either, bbd), bbe)) -> new_lt12(xuu460, xuu480, bbd, bbe) new_esEs20(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(xuu40000, xuu3000, bhb, bhc, bhd) new_primPlusNat1(Succ(xuu38200), Zero) -> Succ(xuu38200) new_primPlusNat1(Zero, Succ(xuu10100)) -> Succ(xuu10100) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], ddc)) -> new_esEs10(xuu40000, xuu3000, ddc) new_lt20(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu40000, xuu3000, dda, ddb) new_esEs9(xuu4611, xuu4811, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs6(xuu4611, xuu4811, eb, ec, ed) new_ltEs19(xuu4611, xuu4811, app(app(ty_@2, bac), bad)) -> new_ltEs8(xuu4611, xuu4811, bac, bad) new_esEs17(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_compare12(xuu114, xuu115, xuu116, xuu117, True, xuu119, gd, ge) -> new_compare11(xuu114, xuu115, xuu116, xuu117, True, gd, ge) new_esEs24(xuu40002, xuu3002, app(ty_Maybe, ccg)) -> new_esEs7(xuu40002, xuu3002, ccg) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Bool, bch) -> new_ltEs14(xuu4610, xuu4810) new_compare31(xuu4600, xuu4800, ty_Double) -> new_compare29(xuu4600, xuu4800) new_esEs13(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs23(xuu40001, xuu3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(xuu40001, xuu3001, cad, cae, caf) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bha)) -> new_ltEs16(xuu4610, xuu4810, bha) new_lt18(xuu460, xuu480) -> new_esEs11(new_compare7(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, app(ty_Ratio, hc)) -> new_esEs12(xuu4610, xuu4810, hc) new_ltEs20(xuu461, xuu481, app(app(ty_@2, gf), gg)) -> new_ltEs8(xuu461, xuu481, gf, gg) new_lt5(xuu4611, xuu4811, ty_Float) -> new_lt19(xuu4611, xuu4811) new_compare26(@2(xuu460, xuu461), @2(xuu480, xuu481), False, bbg, bbh) -> new_compare12(xuu460, xuu461, xuu480, xuu481, new_lt21(xuu460, xuu480, bbg), new_asAs(new_esEs21(xuu460, xuu480, bbg), new_ltEs20(xuu461, xuu481, bbh)), bbg, bbh) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(ty_[], che)) -> new_esEs10(xuu40000, xuu3000, che) new_esEs24(xuu40002, xuu3002, ty_Float) -> new_esEs19(xuu40002, xuu3002) new_lt4(xuu4610, xuu4810, app(app(ty_@2, cb), cc)) -> new_lt8(xuu4610, xuu4810, cb, cc) new_esEs9(xuu4611, xuu4811, app(app(ty_Either, dh), ea)) -> new_esEs5(xuu4611, xuu4811, dh, ea) new_compare11(xuu114, xuu115, xuu116, xuu117, False, gd, ge) -> GT new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt10(xuu460, xuu480) -> new_esEs11(new_compare29(xuu460, xuu480), LT) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, bdf) -> new_esEs11(xuu40000, xuu3000) new_compare9(Integer(xuu4600), Integer(xuu4800)) -> new_primCmpInt(xuu4600, xuu4800) new_esEs31(xuu4000, xuu300, app(ty_Ratio, beb)) -> new_esEs12(xuu4000, xuu300, beb) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs22(xuu40000, xuu3000, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu40000, xuu3000, bhe, bhf) new_lt5(xuu4611, xuu4811, ty_Int) -> new_lt16(xuu4611, xuu4811) new_esEs8(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_[], cbc)) -> new_esEs10(xuu40001, xuu3001, cbc) new_lt20(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_compare25(xuu460, xuu480, False, bbd, bbe) -> new_compare111(xuu460, xuu480, new_ltEs12(xuu460, xuu480, bbd, bbe), bbd, bbe) new_esEs21(xuu460, xuu480, ty_@0) -> new_esEs18(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(xuu40001, xuu3001, cba, cbb) new_lt5(xuu4611, xuu4811, ty_Char) -> new_lt11(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Integer) -> new_compare9(new_sr(xuu4600, xuu4801), new_sr(xuu4800, xuu4601)) new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs17(xuu4000, xuu300) new_ltEs7(LT, LT) -> True new_ltEs20(xuu461, xuu481, ty_Int) -> new_ltEs15(xuu461, xuu481) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(xuu4610, xuu4810, dfd, dfe) new_lt5(xuu4611, xuu4811, app(ty_Maybe, ee)) -> new_lt17(xuu4611, xuu4811, ee) new_esEs9(xuu4611, xuu4811, app(ty_[], dd)) -> new_esEs10(xuu4611, xuu4811, dd) new_esEs20(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt21(xuu460, xuu480, ty_Double) -> new_lt10(xuu460, xuu480) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_[], deh)) -> new_ltEs6(xuu4610, xuu4810, deh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu40000, xuu3000, cgf, cgg, cgh) new_primCmpInt(Pos(Succ(xuu4600)), Pos(xuu480)) -> new_primCmpNat0(xuu4600, xuu480) new_esEs22(xuu40000, xuu3000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu40000, xuu3000, bhg, bhh) new_ltEs12(Right(xuu4610), Left(xuu4810), bcg, bch) -> False new_compare31(xuu4600, xuu4800, app(ty_[], ceb)) -> new_compare0(xuu4600, xuu4800, ceb) new_lt4(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_compare10(xuu460, xuu480, False, ga, gb, gc) -> GT new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, app(ty_[], bca)) -> new_esEs10(xuu460, xuu480, bca) new_esEs32(xuu34, xuu36, ty_@0) -> new_esEs18(xuu34, xuu36) new_esEs24(xuu40002, xuu3002, ty_Ordering) -> new_esEs11(xuu40002, xuu3002) new_compare14(xuu460, xuu480, False) -> GT new_esEs21(xuu460, xuu480, ty_Float) -> new_esEs19(xuu460, xuu480) new_ltEs6(xuu461, xuu481, bce) -> new_fsEs(new_compare0(xuu461, xuu481, bce)) new_ltEs5(xuu4612, xuu4812, ty_Double) -> new_ltEs10(xuu4612, xuu4812) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc, dbd) new_compare210(xuu460, xuu480, False) -> new_compare110(xuu460, xuu480, new_ltEs7(xuu460, xuu480)) new_compare24(xuu460, xuu480, True, ga, gb, gc) -> EQ new_lt4(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt21(xuu460, xuu480, app(app(ty_@2, bcb), bcc)) -> new_lt8(xuu460, xuu480, bcb, bcc) new_esEs29(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primCmpNat0(xuu4600, Zero) -> GT new_lt21(xuu460, xuu480, ty_Char) -> new_lt11(xuu460, xuu480) new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs19(xuu4000, xuu300) new_primCmpNat2(Zero, Succ(xuu48000)) -> LT new_esEs8(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt16(xuu460, xuu480) -> new_esEs11(new_compare13(xuu460, xuu480), LT) new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(app(app(ty_@3, eb), ec), ed)) -> new_lt13(xuu4611, xuu4811, eb, ec, ed) new_compare0([], :(xuu4800, xuu4801), bca) -> LT new_asAs(True, xuu69) -> xuu69 new_ltEs5(xuu4612, xuu4812, app(ty_Maybe, fh)) -> new_ltEs16(xuu4612, xuu4812, fh) new_lt21(xuu460, xuu480, ty_@0) -> new_lt18(xuu460, xuu480) new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs19(xuu4611, xuu4811, ty_Int) -> new_ltEs15(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Ratio, bgc)) -> new_ltEs9(xuu4610, xuu4810, bgc) new_compare18(xuu460, xuu480, bcb, bcc) -> new_compare26(xuu460, xuu480, new_esEs4(xuu460, xuu480, bcb, bcc), bcb, bcc) new_esEs9(xuu4611, xuu4811, ty_@0) -> new_esEs18(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, bdf) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, ty_Int) -> new_esEs17(xuu460, xuu480) new_esEs24(xuu40002, xuu3002, app(ty_Ratio, ccf)) -> new_esEs12(xuu40002, xuu3002, ccf) new_esEs9(xuu4611, xuu4811, app(ty_Maybe, ee)) -> new_esEs7(xuu4611, xuu4811, ee) new_esEs24(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) new_compare31(xuu4600, xuu4800, ty_@0) -> new_compare7(xuu4600, xuu4800) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs13(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, ty_Double) -> new_esEs13(xuu40002, xuu3002) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, ddd)) -> new_esEs12(xuu40000, xuu3000, ddd) new_compare111(xuu460, xuu480, False, bbd, bbe) -> GT new_esEs8(xuu4610, xuu4810, app(app(ty_Either, ce), cf)) -> new_esEs5(xuu4610, xuu4810, ce, cf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs10(:(xuu40000, xuu40001), [], bea) -> False new_esEs10([], :(xuu3000, xuu3001), bea) -> False new_compare110(xuu460, xuu480, False) -> GT new_compare6(xuu460, xuu480, bbf) -> new_compare28(xuu460, xuu480, new_esEs7(xuu460, xuu480, bbf), bbf) new_esEs24(xuu40002, xuu3002, ty_Bool) -> new_esEs16(xuu40002, xuu3002) new_primCompAux00(xuu143, EQ) -> xuu143 new_compare0([], [], bca) -> EQ new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, bdf) -> new_esEs16(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, app(app(ty_Either, hd), he)) -> new_lt12(xuu4610, xuu4810, hd, he) new_esEs9(xuu4611, xuu4811, ty_Int) -> new_esEs17(xuu4611, xuu4811) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, bdf) -> new_esEs14(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_compare13(xuu95, xuu94) -> new_primCmpInt(xuu95, xuu94) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, bdf) -> new_esEs13(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(ty_[], ef)) -> new_ltEs6(xuu4612, xuu4812, ef) new_esEs23(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs29(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat0(xuu4800, Zero) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Float, bch) -> new_ltEs18(xuu4610, xuu4810) new_lt14(xuu460, xuu480) -> new_esEs11(new_compare9(xuu460, xuu480), LT) new_esEs32(xuu34, xuu36, app(ty_[], bfe)) -> new_esEs10(xuu34, xuu36, bfe) new_esEs31(xuu4000, xuu300, app(ty_Maybe, bec)) -> new_esEs7(xuu4000, xuu300, bec) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs7(LT, EQ) -> True new_primCmpNat1(Zero, xuu4600) -> LT new_ltEs20(xuu461, xuu481, ty_Integer) -> new_ltEs13(xuu461, xuu481) new_esEs20(xuu4610, xuu4810, app(app(ty_Either, hd), he)) -> new_esEs5(xuu4610, xuu4810, hd, he) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, app(ty_[], dag)) -> new_esEs10(xuu40000, xuu3000, dag) new_esEs5(Right(xuu40000), Right(xuu3000), bde, app(app(ty_Either, cha), chb)) -> new_esEs5(xuu40000, xuu3000, cha, chb) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Maybe, deg), bch) -> new_ltEs16(xuu4610, xuu4810, deg) new_lt20(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_esEs8(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_primCmpNat2(Zero, Zero) -> EQ new_esEs31(xuu4000, xuu300, app(ty_[], bea)) -> new_esEs10(xuu4000, xuu300, bea) new_ltEs19(xuu4611, xuu4811, app(app(ty_Either, baf), bag)) -> new_ltEs12(xuu4611, xuu4811, baf, bag) new_ltEs14(False, True) -> True new_esEs25(xuu40000, xuu3000, app(ty_[], cdg)) -> new_esEs10(xuu40000, xuu3000, cdg) new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Int, bch) -> new_ltEs15(xuu4610, xuu4810) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_Maybe, dga)) -> new_ltEs16(xuu4610, xuu4810, dga) new_lt15(xuu460, xuu480) -> new_esEs11(new_compare30(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_ltEs11(xuu461, xuu481) -> new_fsEs(new_compare17(xuu461, xuu481)) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_ltEs20(xuu461, xuu481, app(app(ty_Either, bcg), bch)) -> new_ltEs12(xuu461, xuu481, bcg, bch) new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(ty_Maybe, bbf)) -> new_esEs7(xuu460, xuu480, bbf) new_esEs32(xuu34, xuu36, app(app(ty_@2, bfc), bfd)) -> new_esEs4(xuu34, xuu36, bfc, bfd) new_ltEs13(xuu461, xuu481) -> new_fsEs(new_compare9(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Char) -> new_ltEs11(xuu4612, xuu4812) new_esEs11(EQ, EQ) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs9(xuu4611, xuu4811, ty_Float) -> new_esEs19(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dae), daf)) -> new_esEs4(xuu40000, xuu3000, dae, daf) new_lt4(xuu4610, xuu4810, app(app(app(ty_@3, cg), da), db)) -> new_lt13(xuu4610, xuu4810, cg, da, db) new_esEs16(True, True) -> True new_lt6(xuu460, xuu480, bca) -> new_esEs11(new_compare0(xuu460, xuu480, bca), LT) new_esEs24(xuu40002, xuu3002, ty_Char) -> new_esEs14(xuu40002, xuu3002) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, cdc), cdd)) -> new_esEs5(xuu40000, xuu3000, cdc, cdd) new_ltEs16(Nothing, Just(xuu4810), bda) -> True new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_[], ddf), bch) -> new_ltEs6(xuu4610, xuu4810, ddf) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Int) -> new_compare13(new_sr0(xuu4600, xuu4801), new_sr0(xuu4800, xuu4601)) new_esEs32(xuu34, xuu36, app(ty_Maybe, bfg)) -> new_esEs7(xuu34, xuu36, bfg) new_esEs31(xuu4000, xuu300, app(app(ty_Either, bde), bdf)) -> new_esEs5(xuu4000, xuu300, bde, bdf) new_lt5(xuu4611, xuu4811, ty_Bool) -> new_lt15(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dba)) -> new_esEs7(xuu40000, xuu3000, dba) new_esEs8(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(xuu4611, xuu4811, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs4(xuu4611, xuu4811, bah, bba, bbb) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dac), dad)) -> new_esEs5(xuu40000, xuu3000, dac, dad) new_ltEs15(xuu461, xuu481) -> new_fsEs(new_compare13(xuu461, xuu481)) new_esEs8(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_Ratio, cbd)) -> new_esEs12(xuu40001, xuu3001, cbd) new_ltEs19(xuu4611, xuu4811, ty_@0) -> new_ltEs17(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cfd), cfe), cff), bdf) -> new_esEs6(xuu40000, xuu3000, cfd, cfe, cff) new_esEs8(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_primCmpNat1(Succ(xuu4800), xuu4600) -> new_primCmpNat2(xuu4800, xuu4600) new_esEs21(xuu460, xuu480, ty_Integer) -> new_esEs15(xuu460, xuu480) new_ltEs5(xuu4612, xuu4812, ty_Ordering) -> new_ltEs7(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_@0, bch) -> new_ltEs17(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, app(ty_[], gh)) -> new_esEs10(xuu4610, xuu4810, gh) new_compare31(xuu4600, xuu4800, ty_Integer) -> new_compare9(xuu4600, xuu4800) new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu40000, xuu3000, chh, daa, dab) new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dcc)) -> new_esEs7(xuu40001, xuu3001, dcc) new_ltEs4(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bf, bg, bh) -> new_pePe(new_lt4(xuu4610, xuu4810, bf), new_asAs(new_esEs8(xuu4610, xuu4810, bf), new_pePe(new_lt5(xuu4611, xuu4811, bg), new_asAs(new_esEs9(xuu4611, xuu4811, bg), new_ltEs5(xuu4612, xuu4812, bh))))) new_lt7(xuu460, xuu480) -> new_esEs11(new_compare32(xuu460, xuu480), LT) new_lt20(xuu4610, xuu4810, app(ty_Ratio, hc)) -> new_lt9(xuu4610, xuu4810, hc) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_[], bfh)) -> new_ltEs6(xuu4610, xuu4810, bfh) new_lt21(xuu460, xuu480, app(ty_Maybe, bbf)) -> new_lt17(xuu460, xuu480, bbf) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cge), bdf) -> new_esEs7(xuu40000, xuu3000, cge) new_esEs8(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_lt5(xuu4611, xuu4811, ty_Integer) -> new_lt14(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bgd), bge)) -> new_ltEs12(xuu4610, xuu4810, bgd, bge) new_esEs31(xuu4000, xuu300, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xuu4000, xuu300, bdg, bdh) new_ltEs7(EQ, GT) -> True new_esEs9(xuu4611, xuu4811, ty_Integer) -> new_esEs15(xuu4611, xuu4811) new_esEs32(xuu34, xuu36, ty_Int) -> new_esEs17(xuu34, xuu36) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_lt5(xuu4611, xuu4811, ty_@0) -> new_lt18(xuu4611, xuu4811) new_not(False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, app(ty_Ratio, dfc)) -> new_ltEs9(xuu4610, xuu4810, dfc) new_compare31(xuu4600, xuu4800, ty_Char) -> new_compare17(xuu4600, xuu4800) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdg, bdh) -> new_asAs(new_esEs26(xuu40000, xuu3000, bdg), new_esEs27(xuu40001, xuu3001, bdh)) new_esEs20(xuu4610, xuu4810, app(ty_Maybe, baa)) -> new_esEs7(xuu4610, xuu4810, baa) new_primCmpInt(Neg(Succ(xuu4600)), Neg(xuu480)) -> new_primCmpNat1(xuu480, xuu4600) new_compare0(:(xuu4600, xuu4601), [], bca) -> GT new_ltEs5(xuu4612, xuu4812, ty_@0) -> new_ltEs17(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs7(EQ, EQ) -> True new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, ty_Ordering) -> new_ltEs7(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Right(xuu3000), bde, bdf) -> False new_esEs5(Right(xuu40000), Left(xuu3000), bde, bdf) -> False new_lt4(xuu4610, xuu4810, app(ty_Maybe, dc)) -> new_lt17(xuu4610, xuu4810, dc) new_ltEs7(GT, EQ) -> False new_esEs27(xuu40001, xuu3001, app(ty_[], dca)) -> new_esEs10(xuu40001, xuu3001, dca) new_esEs20(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], cgc), bdf) -> new_esEs10(xuu40000, xuu3000, cgc) new_esEs19(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare31(xuu4600, xuu4800, app(app(ty_@2, cec), ced)) -> new_compare18(xuu4600, xuu4800, cec, ced) new_lt4(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_compare17(Char(xuu4600), Char(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_lt21(xuu460, xuu480, app(ty_[], bca)) -> new_lt6(xuu460, xuu480, bca) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bdb, bdc, bdd) -> new_asAs(new_esEs22(xuu40000, xuu3000, bdb), new_asAs(new_esEs23(xuu40001, xuu3001, bdc), new_esEs24(xuu40002, xuu3002, bdd))) new_primPlusNat0(Succ(xuu1050), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1050, xuu300000))) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, app(ty_[], bce)) -> new_ltEs6(xuu461, xuu481, bce) new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs20(xuu461, xuu481, ty_Ordering) -> new_ltEs7(xuu461, xuu481) new_esEs32(xuu34, xuu36, ty_Float) -> new_esEs19(xuu34, xuu36) new_esEs12(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), beb) -> new_asAs(new_esEs28(xuu40000, xuu3000, beb), new_esEs29(xuu40001, xuu3001, beb)) new_ltEs5(xuu4612, xuu4812, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs4(xuu4612, xuu4812, fd, ff, fg) new_ltEs12(Right(xuu4610), Right(xuu4810), bcg, ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs20(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_compare0(:(xuu4600, xuu4601), :(xuu4800, xuu4801), bca) -> new_primCompAux0(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, bca), bca) new_primPlusNat1(Zero, Zero) -> Zero new_esEs10([], [], bea) -> True new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh) new_ltEs7(EQ, LT) -> False new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs11(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, ty_Int) -> new_compare13(xuu4600, xuu4800) new_esEs22(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare19(xuu4600, xuu4800, ceh, cfa, cfb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu4600, xuu4800, ty_Bool) -> new_compare30(xuu4600, xuu4800) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare16(xuu460, xuu480, False, bbf) -> GT new_ltEs14(False, False) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs7(GT, LT) -> False new_esEs8(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs4(xuu4610, xuu4810, bgf, bgg, bgh) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat1(Zero, xuu4800) new_esEs16(False, False) -> True new_esEs23(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, app(ty_Ratio, bae)) -> new_ltEs9(xuu4611, xuu4811, bae) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs19(xuu4611, xuu4811, ty_Float) -> new_ltEs18(xuu4611, xuu4811) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dah)) -> new_esEs12(xuu40000, xuu3000, dah) new_lt21(xuu460, xuu480, ty_Ordering) -> new_lt7(xuu460, xuu480) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, cdh)) -> new_esEs12(xuu40000, xuu3000, cdh) new_esEs5(Right(xuu40000), Right(xuu3000), bde, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs8(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), gf, gg) -> new_pePe(new_lt20(xuu4610, xuu4810, gf), new_asAs(new_esEs20(xuu4610, xuu4810, gf), new_ltEs19(xuu4611, xuu4811, gg))) new_esEs23(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, ty_Char) -> new_esEs14(xuu460, xuu480) new_compare31(xuu4600, xuu4800, ty_Float) -> new_compare15(xuu4600, xuu4800) new_lt4(xuu4610, xuu4810, app(ty_[], ca)) -> new_lt6(xuu4610, xuu4810, ca) new_ltEs20(xuu461, xuu481, ty_Float) -> new_ltEs18(xuu461, xuu481) new_lt17(xuu460, xuu480, bbf) -> new_esEs11(new_compare6(xuu460, xuu480, bbf), LT) new_lt20(xuu4610, xuu4810, app(ty_[], gh)) -> new_lt6(xuu4610, xuu4810, gh) new_lt5(xuu4611, xuu4811, ty_Ordering) -> new_lt7(xuu4611, xuu4811) new_ltEs14(True, False) -> False new_ltEs5(xuu4612, xuu4812, app(ty_Ratio, fa)) -> new_ltEs9(xuu4612, xuu4812, fa) new_asAs(False, xuu69) -> False new_compare7(@0, @0) -> EQ new_lt20(xuu4610, xuu4810, app(ty_Maybe, baa)) -> new_lt17(xuu4610, xuu4810, baa) new_compare31(xuu4600, xuu4800, ty_Ordering) -> new_compare32(xuu4600, xuu4800) new_ltEs20(xuu461, xuu481, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xuu461, xuu481, bf, bg, bh) new_compare27(xuu460, xuu480, True) -> EQ new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_esEs16(False, True) -> False new_esEs16(True, False) -> False The set Q consists of the following terms: new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, ty_Double) new_compare31(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs13(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Char) new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_@0) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs11(x0, x1) new_fsEs(x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs12(Right(x0), Right(x1), x2, ty_@0) new_lt4(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, ty_Bool) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare18(x0, x1, x2, x3) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt4(x0, x1, ty_Float) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs7(Just(x0), Nothing, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt5(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(x0, x1) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare5(x0, x1, x2, x3) new_ltEs16(Nothing, Nothing, x0) new_esEs24(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_compare31(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs14(Char(x0), Char(x1)) new_compare25(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_compare31(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpNat1(Zero, x0) new_esEs20(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, False, x2) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare27(x0, x1, False) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_ltEs16(Nothing, Just(x0), x1) new_compare110(x0, x1, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt12(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Ordering) new_compare9(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(EQ, EQ) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(True, True) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_@0) new_primMulInt(Neg(x0), Neg(x1)) new_lt4(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_ltEs9(x0, x1, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt14(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) new_compare14(x0, x1, False) new_esEs27(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare28(x0, x1, False, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, x2, x3, False, x4, x5) new_lt15(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_ltEs16(Just(x0), Just(x1), ty_Int) new_lt4(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs24(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Integer) new_ltEs12(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Zero, Succ(x0)) new_lt7(x0, x1) new_compare31(x0, x1, ty_Char) new_lt19(x0, x1) new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Zero, Succ(x0)) new_lt6(x0, x1, x2) new_esEs24(x0, x1, ty_Ordering) new_ltEs14(False, False) new_lt5(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs31(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(False, False) new_primCmpNat2(Zero, Succ(x0)) new_lt5(x0, x1, ty_Int) new_compare31(x0, x1, ty_Ordering) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Char) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(x0, x1, ty_Int) new_primCmpNat1(Succ(x0), x1) new_lt13(x0, x1, x2, x3, x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_compare11(x0, x1, x2, x3, True, x4, x5) new_compare210(x0, x1, True) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Double) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primPlusNat0(Zero, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_esEs9(x0, x1, ty_Float) new_compare28(x0, x1, True, x2) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare14(x0, x1, True) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(@0, @0) new_primCompAux00(x0, LT) new_lt20(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1) new_esEs8(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(LT, LT) new_esEs7(Nothing, Nothing, x0) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare32(x0, x1) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_compare16(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_primCmpNat2(Zero, Zero) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_ltEs12(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Ordering) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Char) new_primCmpNat0(x0, Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare13(x0, x1) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Double) new_ltEs16(Just(x0), Nothing, x1) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Integer) new_esEs10(:(x0, x1), [], x2) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_primCompAux00(x0, EQ) new_sr(Integer(x0), Integer(x1)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_pePe(False, x0) new_compare6(x0, x1, x2) new_ltEs10(x0, x1) new_esEs11(EQ, EQ) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_compare17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_compare111(x0, x1, False, x2, x3) new_compare0(:(x0, x1), [], x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat2(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Bool) new_lt5(x0, x1, ty_@0) new_ltEs7(GT, GT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs22(x0, x1, ty_@0) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs17(x0, x1) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_ltEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt18(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_ltEs5(x0, x1, ty_Float) new_lt4(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_compare24(x0, x1, False, x2, x3, x4) new_esEs31(x0, x1, ty_Int) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_compare111(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Nothing, Just(x0), x1) new_lt4(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs10([], :(x0, x1), x2) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs29(x0, x1, ty_Integer) new_lt16(x0, x1) new_lt9(x0, x1, x2) new_esEs22(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Double) new_esEs11(GT, GT) new_esEs18(@0, @0) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs12(Right(x0), Right(x1), x2, ty_Char) new_sr0(x0, x1) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Float) new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Ordering) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs13(Double(x0, x1), Double(x2, x3)) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_ltEs12(Left(x0), Left(x1), ty_Int, x2) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs12(Left(x0), Right(x1), x2, x3) new_ltEs12(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs11(LT, LT) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs16(False, True) new_esEs16(True, False) new_lt20(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Double) new_compare110(x0, x1, False) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_ltEs17(x0, x1) new_compare27(x0, x1, True) new_lt8(x0, x1, x2, x3) new_lt17(x0, x1, x2) new_asAs(False, x0) new_esEs23(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_lt11(x0, x1) new_compare19(x0, x1, x2, x3, x4) new_esEs9(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Char) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) new_primCmpNat0(x0, Zero) new_ltEs20(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C(Branch(@2(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), @2(xuu4000, xuu4001), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_esEs30(xuu4000, xuu4001, xuu300, xuu301, new_esEs31(xuu4000, xuu300, bc), bc, bd), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12, 6 >= 13 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_esEs11(new_compare26(@2(xuu22, xuu23), @2(xuu16, xuu17), new_asAs(new_esEs26(xuu22, xuu16, h), new_esEs27(xuu23, xuu17, ba)), 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, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12, 13 >= 13 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu20, @2(xuu22, xuu23), xuu24, h, ba, bb) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 *new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, True, h, ba, bb) -> new_addToFM_C(xuu21, @2(xuu22, xuu23), xuu24, h, ba, bb) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(xuu4600, xuu4800, xuu139, app(ty_Maybe, cb)) -> new_compare4(xuu4600, xuu4800, cb) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs2(xuu4612, xuu4812, bdb, bdc, bdd) new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(ty_Maybe, bfe), beg) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(ty_Maybe, fb)) -> new_ltEs3(xuu4611, xuu4811, fb) new_ltEs(xuu461, xuu481, h) -> new_compare(xuu461, xuu481, h) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(ty_@2, ec), ed))) -> new_ltEs0(xuu4611, xuu4811, ec, ed) new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(ty_Either, hb), hc))) -> new_ltEs1(xuu4610, xuu4810, hb, hc) new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(ty_@2, ff), fg)), fd)) -> new_ltEs0(xuu4610, xuu4810, ff, fg) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(ty_[], bbd), bab) -> new_lt(xuu4611, xuu4811, bbd) new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, ce, app(ty_[], h)) -> new_compare(xuu461, xuu481, h) new_primCompAux(xuu4600, xuu4800, xuu139, app(app(app(ty_@3, bg), bh), ca)) -> new_compare3(xuu4600, xuu4800, bg, bh, ca) new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(ty_[], gg)) -> new_ltEs(xuu4610, xuu4810, gg) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(ty_@2, bcf), bcg)) -> new_ltEs0(xuu4612, xuu4812, bcf, bcg) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(ty_[], cf)), cg)) -> new_lt(xuu4610, xuu4810, cf) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(ty_@2, ec), ed)) -> new_ltEs0(xuu4611, xuu4811, ec, ed) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(ty_@2, bac), bad), baa, bab) -> new_lt0(xuu4610, xuu4810, bac, bad) new_ltEs1(Left(xuu4610), Left(xuu4810), app(ty_[], fc), fd) -> new_ltEs(xuu4610, xuu4810, fc) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(ty_[], eb))) -> new_ltEs(xuu4611, xuu4811, eb) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(ty_@2, bbe), bbf), bab) -> new_lt0(xuu4611, xuu4811, bbe, bbf) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(ty_@2, bcf), bcg))) -> new_ltEs0(xuu4612, xuu4812, bcf, bcg) new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(ty_@2, bdg), bdh))) -> new_ltEs0(xuu4610, xuu4810, bdg, bdh) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(ty_Maybe, dh), cg) -> new_lt3(xuu4610, xuu4810, dh) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(ty_Maybe, bbb), baa, bab) -> new_lt3(xuu4610, xuu4810, bbb) new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(ty_Either, hb), hc)) -> new_ltEs1(xuu4610, xuu4810, hb, hc) new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(ty_Maybe, bef))) -> new_ltEs3(xuu4610, xuu4810, bef) new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(ty_Maybe, ge)), fd)) -> new_ltEs3(xuu4610, xuu4810, ge) new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bdg), bdh)) -> new_ltEs0(xuu4610, xuu4810, bdg, bdh) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(ty_Maybe, bcd)), bab)) -> new_lt3(xuu4611, xuu4811, bcd) new_lt2(xuu460, xuu480, bfb, bfc, bfd) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(ty_@2, cc), cd), beg) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(ty_[], bce)) -> new_ltEs(xuu4612, xuu4812, bce) new_compare2(xuu460, xuu480, beh, bfa) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) new_compare23(xuu460, xuu480, False, bfe) -> new_ltEs3(xuu460, xuu480, bfe) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(ty_Maybe, dh)), cg)) -> new_lt3(xuu4610, xuu4810, dh) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(ty_Either, bae), baf)), baa), bab)) -> new_lt1(xuu4610, xuu4810, bae, baf) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(ty_Either, ee), ef)) -> new_ltEs1(xuu4611, xuu4811, ee, ef) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(ty_@2, da), db), cg) -> new_lt0(xuu4610, xuu4810, da, db) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(ty_Either, bbg), bbh), bab) -> new_lt1(xuu4611, xuu4811, bbg, bbh) new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(ty_Maybe, hg)) -> new_ltEs3(xuu4610, xuu4810, hg) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(ty_Maybe, bcd), bab) -> new_lt3(xuu4611, xuu4811, bcd) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(ty_Either, ee), ef))) -> new_ltEs1(xuu4611, xuu4811, ee, ef) new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(app(ty_@3, bfb), bfc), bfd), beg) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) new_ltEs1(Left(xuu4610), Left(xuu4810), app(ty_Maybe, ge), fd) -> new_ltEs3(xuu4610, xuu4810, ge) new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(ty_[], gg))) -> new_ltEs(xuu4610, xuu4810, gg) new_lt(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_compare(xuu4601, xuu4801, ba) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(app(ty_@3, de), df), dg)), cg)) -> new_lt2(xuu4610, xuu4810, de, df, dg) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(app(ty_@3, bag), bah), bba), baa, bab) -> new_lt2(xuu4610, xuu4810, bag, bah, bba) new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(ty_Maybe, hg))) -> new_ltEs3(xuu4610, xuu4810, hg) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(ty_Maybe, bde)) -> new_ltEs3(xuu4612, xuu4812, bde) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(app(ty_@3, eg), eh), fa))) -> new_ltEs2(xuu4611, xuu4811, eg, eh, fa) new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(ty_Either, beh), bfa), beg) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) new_compare21(xuu460, xuu480, False, beh, bfa) -> new_ltEs1(xuu460, xuu480, beh, bfa) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(app(ty_@3, bca), bcb), bcc)), bab)) -> new_lt2(xuu4611, xuu4811, bca, bcb, bcc) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(ty_Either, bae), baf), baa, bab) -> new_lt1(xuu4610, xuu4810, bae, baf) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(ty_[], cf), cg) -> new_lt(xuu4610, xuu4810, cf) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(ty_[], hh), baa, bab) -> new_lt(xuu4610, xuu4810, hh) new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(ty_[], fc)), fd)) -> new_ltEs(xuu4610, xuu4810, fc) new_lt0(xuu460, xuu480, cc, cd) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(ty_Either, bch), bda))) -> new_ltEs1(xuu4612, xuu4812, bch, bda) new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(ty_@2, ff), fg), fd) -> new_ltEs0(xuu4610, xuu4810, ff, fg) new_ltEs3(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bef)) -> new_ltEs3(xuu4610, xuu4810, bef) new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(ty_@2, gh), ha)) -> new_ltEs0(xuu4610, xuu4810, gh, ha) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(ty_Maybe, bbb)), baa), bab)) -> new_lt3(xuu4610, xuu4810, bbb) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(ty_Either, bch), bda)) -> new_ltEs1(xuu4612, xuu4812, bch, bda) new_compare3(xuu460, xuu480, bfb, bfc, bfd) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) new_lt3(xuu460, xuu480, bfe) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(ty_Either, dc), dd)), cg)) -> new_lt1(xuu4610, xuu4810, dc, dd) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs2(xuu4611, xuu4811, eg, eh, fa) new_primCompAux(xuu4600, xuu4800, xuu139, app(app(ty_Either, be), bf)) -> new_compare2(xuu4600, xuu4800, be, bf) new_compare4(xuu460, xuu480, bfe) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(ty_Maybe, fb))) -> new_ltEs3(xuu4611, xuu4811, fb) new_compare20(@2(:(xuu4600, xuu4601), xuu461), @2(:(xuu4800, xuu4801), xuu481), False, app(ty_[], ba), beg) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(ty_[], hh)), baa), bab)) -> new_lt(xuu4610, xuu4810, hh) new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, gb), gc), gd), fd) -> new_ltEs2(xuu4610, xuu4810, gb, gc, gd) new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs2(xuu4610, xuu4810, hd, he, hf) new_compare(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(ty_[], bdf))) -> new_ltEs(xuu4610, xuu4810, bdf) new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(ty_@2, gh), ha))) -> new_ltEs0(xuu4610, xuu4810, gh, ha) new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs2(xuu4610, xuu4810, hd, he, hf) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(ty_[], bce))) -> new_ltEs(xuu4612, xuu4812, bce) new_compare20(@2(:(xuu4600, xuu4601), xuu461), @2(:(xuu4800, xuu4801), xuu481), False, app(ty_[], ba), beg) -> new_compare(xuu4601, xuu4801, ba) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(ty_[], eb)) -> new_ltEs(xuu4611, xuu4811, eb) new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(ty_Either, fh), ga), fd) -> new_ltEs1(xuu4610, xuu4810, fh, ga) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(ty_Either, bbg), bbh)), bab)) -> new_lt1(xuu4611, xuu4811, bbg, bbh) new_compare22(xuu460, xuu480, False, bfb, bfc, bfd) -> new_ltEs2(xuu460, xuu480, bfb, bfc, bfd) new_primCompAux(xuu4600, xuu4800, xuu139, app(ty_[], bb)) -> new_compare(xuu4600, xuu4800, bb) new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bea), beb)) -> new_ltEs1(xuu4610, xuu4810, bea, beb) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs2(xuu4612, xuu4812, bdb, bdc, bdd) new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs2(xuu4610, xuu4810, bec, bed, bee) new_ltEs3(Just(xuu4610), Just(xuu4810), app(ty_[], bdf)) -> new_ltEs(xuu4610, xuu4810, bdf) new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(ty_Either, fh), ga)), fd)) -> new_ltEs1(xuu4610, xuu4810, fh, ga) new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_ltEs2(xuu4610, xuu4810, gb, gc, gd) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(ty_Maybe, bde))) -> new_ltEs3(xuu4612, xuu4812, bde) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(ty_Either, dc), dd), cg) -> new_lt1(xuu4610, xuu4810, dc, dd) new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(app(ty_@3, bec), bed), bee))) -> new_ltEs2(xuu4610, xuu4810, bec, bed, bee) new_compare(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_compare(xuu4601, xuu4801, ba) new_compare1(xuu460, xuu480, cc, cd) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) new_lt(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(app(ty_@3, de), df), dg), cg) -> new_lt2(xuu4610, xuu4810, de, df, dg) new_lt1(xuu460, xuu480, beh, bfa) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(app(ty_@3, bca), bcb), bcc), bab) -> new_lt2(xuu4611, xuu4811, bca, bcb, bcc) new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(ty_Either, bea), beb))) -> new_ltEs1(xuu4610, xuu4810, bea, beb) new_primCompAux(xuu4600, xuu4800, xuu139, app(app(ty_@2, bc), bd)) -> new_compare1(xuu4600, xuu4800, bc, bd) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(ty_@2, bac), bad)), baa), bab)) -> new_lt0(xuu4610, xuu4810, bac, bad) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(ty_[], bbd)), bab)) -> new_lt(xuu4611, xuu4811, bbd) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(ty_@2, bbe), bbf)), bab)) -> new_lt0(xuu4611, xuu4811, bbe, bbf) new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(ty_@2, da), db)), cg)) -> new_lt0(xuu4610, xuu4810, da, db) new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(app(ty_@3, bag), bah), bba)), baa), bab)) -> new_lt2(xuu4610, xuu4810, bag, bah, bba) The TRS R consists of the following rules: new_esEs7(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs18(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu4600)), Pos(xuu480)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare10(xuu460, xuu480, True, bfb, bfc, bfd) -> LT new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs25(xuu40000, xuu3000, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs6(xuu40000, xuu3000, cdc, cdd, cde) new_pePe(True, xuu138) -> True new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_esEs23(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bdg), bdh)) -> new_ltEs8(xuu4610, xuu4810, bdg, bdh) new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt4(xuu4610, xuu4810, app(ty_Ratio, bff)) -> new_lt9(xuu4610, xuu4810, bff) new_compare31(xuu4600, xuu4800, app(ty_Ratio, cee)) -> new_compare8(xuu4600, xuu4800, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbc), dbd)) -> new_esEs5(xuu40001, xuu3001, dbc, dbd) new_lt5(xuu4611, xuu4811, app(ty_[], bbd)) -> new_lt6(xuu4611, xuu4811, bbd) new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT new_ltEs16(Nothing, Nothing, bgg) -> True new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare26(xuu46, xuu48, True, ce, beg) -> EQ new_esEs9(xuu4611, xuu4811, ty_Char) -> new_esEs14(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, ty_Double) -> new_esEs13(xuu4611, xuu4811) new_esEs14(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs16(Just(xuu4610), Nothing, bgg) -> False new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Maybe, ddd)) -> new_esEs7(xuu40000, xuu3000, ddd) new_esEs18(@0, @0) -> True new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, app(ty_Ratio, cad)) -> new_esEs12(xuu40000, xuu3000, cad) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Right(xuu4810), gf, fd) -> True new_compare111(xuu460, xuu480, True, beh, bfa) -> LT new_lt21(xuu460, xuu480, app(ty_Ratio, bge)) -> new_lt9(xuu460, xuu480, bge) new_ltEs19(xuu4611, xuu4811, app(ty_Maybe, fb)) -> new_ltEs16(xuu4611, xuu4811, fb) new_esEs9(xuu4611, xuu4811, ty_Bool) -> new_esEs16(xuu4611, xuu4811) new_compare32(xuu460, xuu480) -> new_compare210(xuu460, xuu480, new_esEs11(xuu460, xuu480)) new_ltEs19(xuu4611, xuu4811, ty_Char) -> new_ltEs11(xuu4611, xuu4811) new_esEs8(xuu4610, xuu4810, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs6(xuu4610, xuu4810, bag, bah, bba) new_esEs23(xuu40001, xuu3001, app(app(ty_Either, cba), cbb)) -> new_esEs5(xuu40001, xuu3001, cba, cbb) new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs22(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_lt19(xuu460, xuu480) -> new_esEs11(new_compare15(xuu460, xuu480), LT) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs5(xuu4612, xuu4812, ty_Int) -> new_ltEs15(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Double, fd) -> new_ltEs10(xuu4610, xuu4810) new_ltEs19(xuu4611, xuu4811, app(ty_[], eb)) -> new_ltEs6(xuu4611, xuu4811, eb) new_ltEs19(xuu4611, xuu4811, ty_Bool) -> new_ltEs14(xuu4611, xuu4811) new_esEs24(xuu40002, xuu3002, app(app(ty_@2, cce), ccf)) -> new_esEs4(xuu40002, xuu3002, cce, ccf) new_primCmpNat2(Succ(xuu46000), Succ(xuu48000)) -> new_primCmpNat2(xuu46000, xuu48000) new_esEs21(xuu460, xuu480, ty_Bool) -> new_esEs16(xuu460, xuu480) new_ltEs20(xuu461, xuu481, ty_Char) -> new_ltEs11(xuu461, xuu481) new_lt9(xuu460, xuu480, bge) -> new_esEs11(new_compare8(xuu460, xuu480, bge), LT) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt5(xuu4611, xuu4811, app(app(ty_Either, bbg), bbh)) -> new_lt12(xuu4611, xuu4811, bbg, bbh) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_ltEs20(xuu461, xuu481, app(ty_Ratio, bgf)) -> new_ltEs9(xuu461, xuu481, bgf) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(app(ty_@2, cgg), cgh)) -> new_esEs4(xuu40000, xuu3000, cgg, cgh) new_esEs21(xuu460, xuu480, ty_Double) -> new_esEs13(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_not(True) -> False new_lt4(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Float) -> new_ltEs18(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs19(xuu40001, xuu3001) new_compare16(xuu460, xuu480, True, bfe) -> LT new_primCompAux00(xuu143, LT) -> LT new_esEs21(xuu460, xuu480, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs6(xuu460, xuu480, bfb, bfc, bfd) new_ltEs9(xuu461, xuu481, bgf) -> new_fsEs(new_compare8(xuu461, xuu481, bgf)) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cfg), cef) -> new_esEs12(xuu40000, xuu3000, cfg) new_lt4(xuu4610, xuu4810, app(app(ty_Either, bae), baf)) -> new_lt12(xuu4610, xuu4810, bae, baf) new_esEs20(xuu4610, xuu4810, app(app(app(ty_@3, de), df), dg)) -> new_esEs6(xuu4610, xuu4810, de, df, dg) new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_Either, bch), bda)) -> new_ltEs12(xuu4612, xuu4812, bch, bda) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dbh)) -> new_esEs12(xuu40001, xuu3001, dbh) new_esEs10(:(xuu40000, xuu40001), :(xuu3000, xuu3001), cdb) -> new_asAs(new_esEs25(xuu40000, xuu3000, cdb), new_esEs10(xuu40001, xuu3001, cdb)) new_esEs9(xuu4611, xuu4811, ty_Ordering) -> new_esEs11(xuu4611, xuu4811) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_compare12(xuu114, xuu115, xuu116, xuu117, False, xuu119, bga, bgb) -> new_compare11(xuu114, xuu115, xuu116, xuu117, xuu119, bga, bgb) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs18(xuu461, xuu481) -> new_fsEs(new_compare15(xuu461, xuu481)) new_esEs23(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_primCmpNat0(xuu4600, Succ(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_esEs8(xuu4610, xuu4810, app(app(ty_@2, bac), bad)) -> new_esEs4(xuu4610, xuu4810, bac, bad) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs4(xuu4610, xuu4810, hd, he, hf) new_lt20(xuu4610, xuu4810, ty_Integer) -> new_lt14(xuu4610, xuu4810) new_esEs9(xuu4611, xuu4811, app(ty_Ratio, bfg)) -> new_esEs12(xuu4611, xuu4811, bfg) new_lt20(xuu4610, xuu4810, app(app(app(ty_@3, de), df), dg)) -> new_lt13(xuu4610, xuu4810, de, df, dg) new_ltEs20(xuu461, xuu481, ty_Bool) -> new_ltEs14(xuu461, xuu481) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_@2, ff), fg), fd) -> new_ltEs8(xuu4610, xuu4810, ff, fg) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(ty_Ratio, chb)) -> new_esEs12(xuu40000, xuu3000, chb) new_primCompAux00(xuu143, GT) -> GT new_compare24(xuu460, xuu480, False, bfb, bfc, bfd) -> new_compare10(xuu460, xuu480, new_ltEs4(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) new_compare28(xuu460, xuu480, True, bfe) -> EQ new_compare110(xuu460, xuu480, True) -> LT new_esEs25(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, gb), gc), gd), fd) -> new_ltEs4(xuu4610, xuu4810, gb, gc, gd) new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, cef) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu460, xuu480, True) -> LT new_primCmpInt(Pos(Succ(xuu4600)), Neg(xuu480)) -> GT new_compare27(xuu460, xuu480, False) -> new_compare14(xuu460, xuu480, new_ltEs14(xuu460, xuu480)) new_esEs25(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu4610, xuu4810, app(app(ty_@2, da), db)) -> new_esEs4(xuu4610, xuu4810, da, db) new_lt21(xuu460, xuu480, ty_Integer) -> new_lt14(xuu460, xuu480) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs20(xuu461, xuu481, ty_Double) -> new_ltEs10(xuu461, xuu481) new_esEs24(xuu40002, xuu3002, ty_@0) -> new_esEs18(xuu40002, xuu3002) new_compare11(xuu114, xuu115, xuu116, xuu117, True, bga, bgb) -> LT new_ltEs7(GT, GT) -> True new_lt13(xuu460, xuu480, bfb, bfc, bfd) -> new_esEs11(new_compare19(xuu460, xuu480, bfb, bfc, bfd), LT) new_primPlusNat1(Succ(xuu38200), Succ(xuu10100)) -> Succ(Succ(new_primPlusNat1(xuu38200, xuu10100))) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_primCompAux0(xuu4600, xuu4800, xuu139, ba) -> new_primCompAux00(xuu139, new_compare31(xuu4600, xuu4800, ba)) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Char, fd) -> new_ltEs11(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, ty_@0) -> new_ltEs17(xuu461, xuu481) new_esEs21(xuu460, xuu480, ty_Ordering) -> new_esEs11(xuu460, xuu480) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(ty_Ratio, bfg)) -> new_lt9(xuu4611, xuu4811, bfg) new_compare210(xuu460, xuu480, True) -> EQ new_ltEs19(xuu4611, xuu4811, ty_Double) -> new_ltEs10(xuu4611, xuu4811) new_esEs25(xuu40000, xuu3000, ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(ty_Maybe, chc)) -> new_esEs7(xuu40000, xuu3000, chc) new_esEs8(xuu4610, xuu4810, app(ty_Maybe, bbb)) -> new_esEs7(xuu4610, xuu4810, bbb) new_sr(Integer(xuu46000), Integer(xuu48010)) -> Integer(new_primMulInt(xuu46000, xuu48010)) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_pePe(False, xuu138) -> xuu138 new_esEs7(Nothing, Just(xuu3000), dcb) -> False new_esEs7(Just(xuu40000), Nothing, dcb) -> False new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_lt20(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt8(xuu460, xuu480, cc, cd) -> new_esEs11(new_compare18(xuu460, xuu480, cc, cd), LT) new_compare25(xuu460, xuu480, True, beh, bfa) -> EQ new_esEs22(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Ordering, fd) -> new_ltEs7(xuu4610, xuu4810) new_lt20(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Integer, fd) -> new_ltEs13(xuu4610, xuu4810) new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dcf), dcg)) -> new_esEs5(xuu40000, xuu3000, dcf, dcg) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, cef) -> new_esEs19(xuu40000, xuu3000) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Ratio, ddf), fd) -> new_ltEs9(xuu4610, xuu4810, ddf) new_ltEs10(xuu461, xuu481) -> new_fsEs(new_compare29(xuu461, xuu481)) new_lt5(xuu4611, xuu4811, ty_Double) -> new_lt10(xuu4611, xuu4811) new_lt21(xuu460, xuu480, ty_Float) -> new_lt19(xuu460, xuu480) new_lt4(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_ltEs5(xuu4612, xuu4812, ty_Integer) -> new_ltEs13(xuu4612, xuu4812) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cfd), cfe), cef) -> new_esEs4(xuu40000, xuu3000, cfd, cfe) new_esEs21(xuu460, xuu480, app(app(ty_@2, cc), cd)) -> new_esEs4(xuu460, xuu480, cc, cd) new_lt21(xuu460, xuu480, ty_Bool) -> new_lt15(xuu460, xuu480) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs7(Nothing, Nothing, dcb) -> True new_esEs23(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs14(True, True) -> True new_lt11(xuu460, xuu480) -> new_esEs11(new_compare17(xuu460, xuu480), LT) new_esEs8(xuu4610, xuu4810, app(ty_[], hh)) -> new_esEs10(xuu4610, xuu4810, hh) new_compare31(xuu4600, xuu4800, app(ty_Maybe, cb)) -> new_compare6(xuu4600, xuu4800, cb) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_esEs25(xuu40000, xuu3000, app(app(ty_@2, cdh), cea)) -> new_esEs4(xuu40000, xuu3000, cdh, cea) new_ltEs12(Left(xuu4610), Left(xuu4810), app(app(ty_Either, fh), ga), fd) -> new_ltEs12(xuu4610, xuu4810, fh, ga) new_compare30(xuu460, xuu480) -> new_compare27(xuu460, xuu480, new_esEs16(xuu460, xuu480)) new_fsEs(xuu126) -> new_not(new_esEs11(xuu126, GT)) new_esEs22(xuu40000, xuu3000, app(ty_[], cac)) -> new_esEs10(xuu40000, xuu3000, cac) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(ty_Either, ccc), ccd)) -> new_esEs5(xuu40002, xuu3002, ccc, ccd) new_esEs25(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT new_esEs21(xuu460, xuu480, app(ty_Ratio, bge)) -> new_esEs12(xuu460, xuu480, bge) new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_lt21(xuu460, xuu480, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_lt13(xuu460, xuu480, bfb, bfc, bfd) new_esEs25(xuu40000, xuu3000, app(ty_Maybe, ced)) -> new_esEs7(xuu40000, xuu3000, ced) new_lt20(xuu4610, xuu4810, app(app(ty_@2, da), db)) -> new_lt8(xuu4610, xuu4810, da, db) new_compare31(xuu4600, xuu4800, app(app(ty_Either, be), bf)) -> new_compare5(xuu4600, xuu4800, be, bf) new_esEs9(xuu4611, xuu4811, app(app(ty_@2, bbe), bbf)) -> new_esEs4(xuu4611, xuu4811, bbe, bbf) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_lt5(xuu4611, xuu4811, app(app(ty_@2, bbe), bbf)) -> new_lt8(xuu4611, xuu4811, bbe, bbf) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, cef) -> new_esEs17(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs6(xuu40002, xuu3002, cbh, cca, ccb) new_primMulNat0(Succ(xuu4000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300000)) -> Zero new_primPlusNat0(Zero, xuu300000) -> Succ(xuu300000) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(app(ty_@2, gh), ha)) -> new_ltEs8(xuu4610, xuu4810, gh, ha) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs6(xuu40000, xuu3000, dcc, dcd, dce) new_compare5(xuu460, xuu480, beh, bfa) -> new_compare25(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) new_ltEs19(xuu4611, xuu4811, ty_Integer) -> new_ltEs13(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, app(ty_Maybe, cae)) -> new_esEs7(xuu40000, xuu3000, cae) new_esEs24(xuu40002, xuu3002, ty_Int) -> new_esEs17(xuu40002, xuu3002) new_primCmpNat2(Succ(xuu46000), Zero) -> GT new_ltEs17(xuu461, xuu481) -> new_fsEs(new_compare7(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Bool) -> new_ltEs14(xuu4612, xuu4812) new_esEs23(xuu40001, xuu3001, app(ty_Maybe, cbg)) -> new_esEs7(xuu40001, xuu3001, cbg) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfb), cfc), cef) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) new_lt21(xuu460, xuu480, ty_Int) -> new_lt16(xuu460, xuu480) new_compare28(xuu460, xuu480, False, bfe) -> new_compare16(xuu460, xuu480, new_ltEs16(xuu460, xuu480, bfe), bfe) new_lt12(xuu460, xuu480, beh, bfa) -> new_esEs11(new_compare5(xuu460, xuu480, beh, bfa), LT) new_lt4(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(app(ty_Either, beh), bfa)) -> new_esEs5(xuu460, xuu480, beh, bfa) new_esEs11(LT, LT) -> True new_esEs24(xuu40002, xuu3002, app(ty_[], ccg)) -> new_esEs10(xuu40002, xuu3002, ccg) new_esEs22(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(app(ty_@2, bcf), bcg)) -> new_ltEs8(xuu4612, xuu4812, bcf, bcg) new_esEs8(xuu4610, xuu4810, app(ty_Ratio, bff)) -> new_esEs12(xuu4610, xuu4810, bff) new_ltEs20(xuu461, xuu481, app(ty_Maybe, bgg)) -> new_ltEs16(xuu461, xuu481, bgg) new_compare19(xuu460, xuu480, bfb, bfc, bfd) -> new_compare24(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) new_lt21(xuu460, xuu480, app(app(ty_Either, beh), bfa)) -> new_lt12(xuu460, xuu480, beh, bfa) new_esEs20(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(xuu40000, xuu3000, bhd, bhe, bhf) new_primPlusNat1(Succ(xuu38200), Zero) -> Succ(xuu38200) new_primPlusNat1(Zero, Succ(xuu10100)) -> Succ(xuu10100) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_[], ddb)) -> new_esEs10(xuu40000, xuu3000, ddb) new_lt20(xuu4610, xuu4810, ty_Int) -> new_lt16(xuu4610, xuu4810) new_esEs7(Just(xuu40000), Just(xuu3000), app(app(ty_@2, dch), dda)) -> new_esEs4(xuu40000, xuu3000, dch, dda) new_esEs9(xuu4611, xuu4811, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(xuu4611, xuu4811, bca, bcb, bcc) new_ltEs19(xuu4611, xuu4811, app(app(ty_@2, ec), ed)) -> new_ltEs8(xuu4611, xuu4811, ec, ed) new_esEs17(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs25(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_compare12(xuu114, xuu115, xuu116, xuu117, True, xuu119, bga, bgb) -> new_compare11(xuu114, xuu115, xuu116, xuu117, True, bga, bgb) new_esEs24(xuu40002, xuu3002, app(ty_Maybe, cda)) -> new_esEs7(xuu40002, xuu3002, cda) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Bool, fd) -> new_ltEs14(xuu4610, xuu4810) new_compare31(xuu4600, xuu4800, ty_Double) -> new_compare29(xuu4600, xuu4800) new_esEs13(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs23(xuu40001, xuu3001, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu40001, xuu3001, caf, cag, cah) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bef)) -> new_ltEs16(xuu4610, xuu4810, bef) new_lt18(xuu460, xuu480) -> new_esEs11(new_compare7(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, app(ty_Ratio, bgc)) -> new_esEs12(xuu4610, xuu4810, bgc) new_ltEs20(xuu461, xuu481, app(app(ty_@2, ea), cg)) -> new_ltEs8(xuu461, xuu481, ea, cg) new_lt5(xuu4611, xuu4811, ty_Float) -> new_lt19(xuu4611, xuu4811) new_compare26(@2(xuu460, xuu461), @2(xuu480, xuu481), False, ce, beg) -> new_compare12(xuu460, xuu461, xuu480, xuu481, new_lt21(xuu460, xuu480, ce), new_asAs(new_esEs21(xuu460, xuu480, ce), new_ltEs20(xuu461, xuu481, beg)), ce, beg) new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(ty_[], cha)) -> new_esEs10(xuu40000, xuu3000, cha) new_esEs24(xuu40002, xuu3002, ty_Float) -> new_esEs19(xuu40002, xuu3002) new_lt4(xuu4610, xuu4810, app(app(ty_@2, bac), bad)) -> new_lt8(xuu4610, xuu4810, bac, bad) new_esEs9(xuu4611, xuu4811, app(app(ty_Either, bbg), bbh)) -> new_esEs5(xuu4611, xuu4811, bbg, bbh) new_compare11(xuu114, xuu115, xuu116, xuu117, False, bga, bgb) -> GT new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_lt10(xuu460, xuu480) -> new_esEs11(new_compare29(xuu460, xuu480), LT) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, cef) -> new_esEs11(xuu40000, xuu3000) new_compare9(Integer(xuu4600), Integer(xuu4800)) -> new_primCmpInt(xuu4600, xuu4800) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs11(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs22(xuu40000, xuu3000, app(app(ty_Either, bhg), bhh)) -> new_esEs5(xuu40000, xuu3000, bhg, bhh) new_lt5(xuu4611, xuu4811, ty_Int) -> new_lt16(xuu4611, xuu4811) new_esEs8(xuu4610, xuu4810, ty_@0) -> new_esEs18(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_[], cbe)) -> new_esEs10(xuu40001, xuu3001, cbe) new_lt20(xuu4610, xuu4810, ty_Float) -> new_lt19(xuu4610, xuu4810) new_compare25(xuu460, xuu480, False, beh, bfa) -> new_compare111(xuu460, xuu480, new_ltEs12(xuu460, xuu480, beh, bfa), beh, bfa) new_esEs21(xuu460, xuu480, ty_@0) -> new_esEs18(xuu460, xuu480) new_esEs23(xuu40001, xuu3001, app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu40001, xuu3001, cbc, cbd) new_lt5(xuu4611, xuu4811, ty_Char) -> new_lt11(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Integer) -> new_compare9(new_sr(xuu4600, xuu4801), new_sr(xuu4800, xuu4601)) new_ltEs7(LT, LT) -> True new_ltEs20(xuu461, xuu481, ty_Int) -> new_ltEs15(xuu461, xuu481) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(app(ty_Either, hb), hc)) -> new_ltEs12(xuu4610, xuu4810, hb, hc) new_lt5(xuu4611, xuu4811, app(ty_Maybe, bcd)) -> new_lt17(xuu4611, xuu4811, bcd) new_esEs9(xuu4611, xuu4811, app(ty_[], bbd)) -> new_esEs10(xuu4611, xuu4811, bbd) new_esEs20(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt21(xuu460, xuu480, ty_Double) -> new_lt10(xuu460, xuu480) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(ty_[], gg)) -> new_ltEs6(xuu4610, xuu4810, gg) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(xuu40000, xuu3000, cgb, cgc, cgd) new_primCmpInt(Pos(Succ(xuu4600)), Pos(xuu480)) -> new_primCmpNat0(xuu4600, xuu480) new_esEs22(xuu40000, xuu3000, app(app(ty_@2, caa), cab)) -> new_esEs4(xuu40000, xuu3000, caa, cab) new_ltEs12(Right(xuu4610), Left(xuu4810), gf, fd) -> False new_compare31(xuu4600, xuu4800, app(ty_[], bb)) -> new_compare0(xuu4600, xuu4800, bb) new_lt4(xuu4610, xuu4810, ty_Char) -> new_lt11(xuu4610, xuu4810) new_compare10(xuu460, xuu480, False, bfb, bfc, bfd) -> GT new_esEs25(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, app(ty_[], ba)) -> new_esEs10(xuu460, xuu480, ba) new_esEs24(xuu40002, xuu3002, ty_Ordering) -> new_esEs11(xuu40002, xuu3002) new_compare14(xuu460, xuu480, False) -> GT new_esEs21(xuu460, xuu480, ty_Float) -> new_esEs19(xuu460, xuu480) new_ltEs6(xuu461, xuu481, h) -> new_fsEs(new_compare0(xuu461, xuu481, h)) new_ltEs5(xuu4612, xuu4812, ty_Double) -> new_ltEs10(xuu4612, xuu4812) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs6(xuu40001, xuu3001, dah, dba, dbb) new_compare210(xuu460, xuu480, False) -> new_compare110(xuu460, xuu480, new_ltEs7(xuu460, xuu480)) new_compare24(xuu460, xuu480, True, bfb, bfc, bfd) -> EQ new_lt4(xuu4610, xuu4810, ty_Double) -> new_lt10(xuu4610, xuu4810) new_lt21(xuu460, xuu480, app(app(ty_@2, cc), cd)) -> new_lt8(xuu460, xuu480, cc, cd) new_esEs29(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primCmpNat0(xuu4600, Zero) -> GT new_lt21(xuu460, xuu480, ty_Char) -> new_lt11(xuu460, xuu480) new_primCmpNat2(Zero, Succ(xuu48000)) -> LT new_esEs8(xuu4610, xuu4810, ty_Integer) -> new_esEs15(xuu4610, xuu4810) new_lt16(xuu460, xuu480) -> new_esEs11(new_compare13(xuu460, xuu480), LT) new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_lt5(xuu4611, xuu4811, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(xuu4611, xuu4811, bca, bcb, bcc) new_compare0([], :(xuu4800, xuu4801), ba) -> LT new_asAs(True, xuu69) -> xuu69 new_ltEs5(xuu4612, xuu4812, app(ty_Maybe, bde)) -> new_ltEs16(xuu4612, xuu4812, bde) new_lt21(xuu460, xuu480, ty_@0) -> new_lt18(xuu460, xuu480) new_compare15(Float(xuu4600, Pos(xuu46010)), Float(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs19(xuu4611, xuu4811, ty_Int) -> new_ltEs15(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_Ratio, bgh)) -> new_ltEs9(xuu4610, xuu4810, bgh) new_compare18(xuu460, xuu480, cc, cd) -> new_compare26(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) new_esEs9(xuu4611, xuu4811, ty_@0) -> new_esEs18(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, cef) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu460, xuu480, ty_Int) -> new_esEs17(xuu460, xuu480) new_esEs24(xuu40002, xuu3002, app(ty_Ratio, cch)) -> new_esEs12(xuu40002, xuu3002, cch) new_esEs9(xuu4611, xuu4811, app(ty_Maybe, bcd)) -> new_esEs7(xuu4611, xuu4811, bcd) new_esEs24(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) new_compare31(xuu4600, xuu4800, ty_@0) -> new_compare7(xuu4600, xuu4800) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs13(xuu40000, xuu3000) new_esEs24(xuu40002, xuu3002, ty_Double) -> new_esEs13(xuu40002, xuu3002) new_esEs7(Just(xuu40000), Just(xuu3000), app(ty_Ratio, ddc)) -> new_esEs12(xuu40000, xuu3000, ddc) new_compare111(xuu460, xuu480, False, beh, bfa) -> GT new_esEs8(xuu4610, xuu4810, app(app(ty_Either, bae), baf)) -> new_esEs5(xuu4610, xuu4810, bae, baf) new_esEs7(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_esEs10(:(xuu40000, xuu40001), [], cdb) -> False new_esEs10([], :(xuu3000, xuu3001), cdb) -> False new_compare110(xuu460, xuu480, False) -> GT new_compare6(xuu460, xuu480, bfe) -> new_compare28(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) new_esEs24(xuu40002, xuu3002, ty_Bool) -> new_esEs16(xuu40002, xuu3002) new_primCompAux00(xuu143, EQ) -> xuu143 new_compare0([], [], ba) -> EQ new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, cef) -> new_esEs16(xuu40000, xuu3000) new_lt20(xuu4610, xuu4810, app(app(ty_Either, dc), dd)) -> new_lt12(xuu4610, xuu4810, dc, dd) new_esEs9(xuu4611, xuu4811, ty_Int) -> new_esEs17(xuu4611, xuu4811) new_esEs25(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, cef) -> new_esEs14(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_compare13(xuu95, xuu94) -> new_primCmpInt(xuu95, xuu94) new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, cef) -> new_esEs13(xuu40000, xuu3000) new_ltEs5(xuu4612, xuu4812, app(ty_[], bce)) -> new_ltEs6(xuu4612, xuu4812, bce) new_esEs23(xuu40001, xuu3001, ty_Char) -> new_esEs14(xuu40001, xuu3001) new_esEs29(xuu40001, xuu3001, ty_Int) -> new_esEs17(xuu40001, xuu3001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat0(xuu4800, Zero) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Float, fd) -> new_ltEs18(xuu4610, xuu4810) new_lt14(xuu460, xuu480) -> new_esEs11(new_compare9(xuu460, xuu480), LT) new_compare29(Double(xuu4600, Pos(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Pos(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Pos(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Pos(xuu46010), xuu4800)) new_ltEs7(LT, EQ) -> True new_primCmpNat1(Zero, xuu4600) -> LT new_ltEs20(xuu461, xuu481, ty_Integer) -> new_ltEs13(xuu461, xuu481) new_esEs20(xuu4610, xuu4810, app(app(ty_Either, dc), dd)) -> new_esEs5(xuu4610, xuu4810, dc, dd) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Double) -> new_ltEs10(xuu4610, xuu4810) new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_esEs26(xuu40000, xuu3000, app(ty_[], dae)) -> new_esEs10(xuu40000, xuu3000, dae) new_esEs5(Right(xuu40000), Right(xuu3000), cga, app(app(ty_Either, cge), cgf)) -> new_esEs5(xuu40000, xuu3000, cge, cgf) new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_Maybe, ge), fd) -> new_ltEs16(xuu4610, xuu4810, ge) new_lt20(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_esEs8(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_primCmpNat2(Zero, Zero) -> EQ new_ltEs19(xuu4611, xuu4811, app(app(ty_Either, ee), ef)) -> new_ltEs12(xuu4611, xuu4811, ee, ef) new_ltEs14(False, True) -> True new_esEs25(xuu40000, xuu3000, app(ty_[], ceb)) -> new_esEs10(xuu40000, xuu3000, ceb) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_@0) -> new_ltEs17(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_@0) -> new_lt18(xuu4610, xuu4810) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_Int, fd) -> new_ltEs15(xuu4610, xuu4810) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(ty_Maybe, hg)) -> new_ltEs16(xuu4610, xuu4810, hg) new_lt15(xuu460, xuu480) -> new_esEs11(new_compare30(xuu460, xuu480), LT) new_esEs20(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_ltEs11(xuu461, xuu481) -> new_fsEs(new_compare17(xuu461, xuu481)) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_ltEs20(xuu461, xuu481, app(app(ty_Either, gf), fd)) -> new_ltEs12(xuu461, xuu481, gf, fd) new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, app(ty_Maybe, bfe)) -> new_esEs7(xuu460, xuu480, bfe) new_ltEs13(xuu461, xuu481) -> new_fsEs(new_compare9(xuu461, xuu481)) new_ltEs5(xuu4612, xuu4812, ty_Char) -> new_ltEs11(xuu4612, xuu4812) new_esEs11(EQ, EQ) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs14(xuu40000, xuu3000) new_esEs9(xuu4611, xuu4811, ty_Float) -> new_esEs19(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs4(xuu40000, xuu3000, dac, dad) new_lt4(xuu4610, xuu4810, app(app(app(ty_@3, bag), bah), bba)) -> new_lt13(xuu4610, xuu4810, bag, bah, bba) new_esEs16(True, True) -> True new_lt6(xuu460, xuu480, ba) -> new_esEs11(new_compare0(xuu460, xuu480, ba), LT) new_esEs24(xuu40002, xuu3002, ty_Char) -> new_esEs14(xuu40002, xuu3002) new_esEs25(xuu40000, xuu3000, app(app(ty_Either, cdf), cdg)) -> new_esEs5(xuu40000, xuu3000, cdf, cdg) new_ltEs16(Nothing, Just(xuu4810), bgg) -> True new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs12(Left(xuu4610), Left(xuu4810), app(ty_[], fc), fd) -> new_ltEs6(xuu4610, xuu4810, fc) new_compare8(:%(xuu4600, xuu4601), :%(xuu4800, xuu4801), ty_Int) -> new_compare13(new_sr0(xuu4600, xuu4801), new_sr0(xuu4800, xuu4601)) new_lt5(xuu4611, xuu4811, ty_Bool) -> new_lt15(xuu4611, xuu4811) new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dag)) -> new_esEs7(xuu40000, xuu3000, dag) new_esEs8(xuu4610, xuu4810, ty_Ordering) -> new_esEs11(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(xuu4611, xuu4811, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs4(xuu4611, xuu4811, eg, eh, fa) new_compare15(Float(xuu4600, Neg(xuu46010)), Float(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_esEs26(xuu40000, xuu3000, app(app(ty_Either, daa), dab)) -> new_esEs5(xuu40000, xuu3000, daa, dab) new_ltEs15(xuu461, xuu481) -> new_fsEs(new_compare13(xuu461, xuu481)) new_esEs8(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_esEs23(xuu40001, xuu3001, app(ty_Ratio, cbf)) -> new_esEs12(xuu40001, xuu3001, cbf) new_ltEs19(xuu4611, xuu4811, ty_@0) -> new_ltEs17(xuu4611, xuu4811) new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa), cef) -> new_esEs6(xuu40000, xuu3000, ceg, ceh, cfa) new_esEs8(xuu4610, xuu4810, ty_Double) -> new_esEs13(xuu4610, xuu4810) new_primCmpNat1(Succ(xuu4800), xuu4600) -> new_primCmpNat2(xuu4800, xuu4600) new_esEs21(xuu460, xuu480, ty_Integer) -> new_esEs15(xuu460, xuu480) new_ltEs5(xuu4612, xuu4812, ty_Ordering) -> new_ltEs7(xuu4612, xuu4812) new_ltEs12(Left(xuu4610), Left(xuu4810), ty_@0, fd) -> new_ltEs17(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, app(ty_[], cf)) -> new_esEs10(xuu4610, xuu4810, cf) new_compare31(xuu4600, xuu4800, ty_Integer) -> new_compare9(xuu4600, xuu4800) new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(xuu40000, xuu3000, chf, chg, chh) new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dca)) -> new_esEs7(xuu40001, xuu3001, dca) new_ltEs4(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, bab) -> new_pePe(new_lt4(xuu4610, xuu4810, bbc), new_asAs(new_esEs8(xuu4610, xuu4810, bbc), new_pePe(new_lt5(xuu4611, xuu4811, baa), new_asAs(new_esEs9(xuu4611, xuu4811, baa), new_ltEs5(xuu4612, xuu4812, bab))))) new_lt7(xuu460, xuu480) -> new_esEs11(new_compare32(xuu460, xuu480), LT) new_lt20(xuu4610, xuu4810, app(ty_Ratio, bgc)) -> new_lt9(xuu4610, xuu4810, bgc) new_ltEs16(Just(xuu4610), Just(xuu4810), app(ty_[], bdf)) -> new_ltEs6(xuu4610, xuu4810, bdf) new_lt21(xuu460, xuu480, app(ty_Maybe, bfe)) -> new_lt17(xuu460, xuu480, bfe) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cfh), cef) -> new_esEs7(xuu40000, xuu3000, cfh) new_esEs8(xuu4610, xuu4810, ty_Bool) -> new_esEs16(xuu4610, xuu4810) new_lt5(xuu4611, xuu4811, ty_Integer) -> new_lt14(xuu4611, xuu4811) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bea), beb)) -> new_ltEs12(xuu4610, xuu4810, bea, beb) new_ltEs7(EQ, GT) -> True new_esEs9(xuu4611, xuu4811, ty_Integer) -> new_esEs15(xuu4611, xuu4811) new_compare29(Double(xuu4600, Neg(xuu46010)), Double(xuu4800, Neg(xuu48010))) -> new_compare13(new_sr0(xuu4600, Neg(xuu48010)), new_sr0(Neg(xuu46010), xuu4800)) new_lt5(xuu4611, xuu4811, ty_@0) -> new_lt18(xuu4611, xuu4811) new_not(False) -> True new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, app(ty_Ratio, ddg)) -> new_ltEs9(xuu4610, xuu4810, ddg) new_compare31(xuu4600, xuu4800, ty_Char) -> new_compare17(xuu4600, xuu4800) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), chd, che) -> new_asAs(new_esEs26(xuu40000, xuu3000, chd), new_esEs27(xuu40001, xuu3001, che)) new_esEs20(xuu4610, xuu4810, app(ty_Maybe, dh)) -> new_esEs7(xuu4610, xuu4810, dh) new_primCmpInt(Neg(Succ(xuu4600)), Neg(xuu480)) -> new_primCmpNat1(xuu480, xuu4600) new_compare0(:(xuu4600, xuu4601), [], ba) -> GT new_ltEs5(xuu4612, xuu4812, ty_@0) -> new_ltEs17(xuu4612, xuu4812) new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs11(xuu40001, xuu3001) new_ltEs7(EQ, EQ) -> True new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs18(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, ty_Ordering) -> new_ltEs7(xuu4611, xuu4811) new_esEs22(xuu40000, xuu3000, ty_Int) -> new_esEs17(xuu40000, xuu3000) new_esEs5(Left(xuu40000), Right(xuu3000), cga, cef) -> False new_esEs5(Right(xuu40000), Left(xuu3000), cga, cef) -> False new_lt4(xuu4610, xuu4810, app(ty_Maybe, bbb)) -> new_lt17(xuu4610, xuu4810, bbb) new_ltEs7(GT, EQ) -> False new_esEs27(xuu40001, xuu3001, app(ty_[], dbg)) -> new_esEs10(xuu40001, xuu3001, dbg) new_esEs20(xuu4610, xuu4810, ty_Float) -> new_esEs19(xuu4610, xuu4810) new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], cff), cef) -> new_esEs10(xuu40000, xuu3000, cff) new_esEs19(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs17(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) new_compare31(xuu4600, xuu4800, app(app(ty_@2, bc), bd)) -> new_compare18(xuu4600, xuu4800, bc, bd) new_lt4(xuu4610, xuu4810, ty_Ordering) -> new_lt7(xuu4610, xuu4810) new_compare17(Char(xuu4600), Char(xuu4800)) -> new_primCmpNat2(xuu4600, xuu4800) new_lt21(xuu460, xuu480, app(ty_[], ba)) -> new_lt6(xuu460, xuu480, ba) new_esEs6(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bha, bhb, bhc) -> new_asAs(new_esEs22(xuu40000, xuu3000, bha), new_asAs(new_esEs23(xuu40001, xuu3001, bhb), new_esEs24(xuu40002, xuu3002, bhc))) new_primPlusNat0(Succ(xuu1050), xuu300000) -> Succ(Succ(new_primPlusNat1(xuu1050, xuu300000))) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Integer) -> new_ltEs13(xuu4610, xuu4810) new_lt4(xuu4610, xuu4810, ty_Bool) -> new_lt15(xuu4610, xuu4810) new_ltEs20(xuu461, xuu481, app(ty_[], h)) -> new_ltEs6(xuu461, xuu481, h) new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) new_ltEs20(xuu461, xuu481, ty_Ordering) -> new_ltEs7(xuu461, xuu481) new_esEs12(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), dde) -> new_asAs(new_esEs28(xuu40000, xuu3000, dde), new_esEs29(xuu40001, xuu3001, dde)) new_ltEs5(xuu4612, xuu4812, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs4(xuu4612, xuu4812, bdb, bdc, bdd) new_ltEs12(Right(xuu4610), Right(xuu4810), gf, ty_Bool) -> new_ltEs14(xuu4610, xuu4810) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs20(xuu4610, xuu4810, ty_Char) -> new_esEs14(xuu4610, xuu4810) new_compare0(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_primCompAux0(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) new_primPlusNat1(Zero, Zero) -> Zero new_esEs10([], [], cdb) -> True new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs4(xuu40001, xuu3001, dbe, dbf) new_ltEs7(EQ, LT) -> False new_esEs25(xuu40000, xuu3000, ty_@0) -> new_esEs18(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, ty_Int) -> new_compare13(xuu4600, xuu4800) new_esEs22(xuu40000, xuu3000, ty_Bool) -> new_esEs16(xuu40000, xuu3000) new_compare31(xuu4600, xuu4800, app(app(app(ty_@3, bg), bh), ca)) -> new_compare19(xuu4600, xuu4800, bg, bh, ca) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu4600, xuu4800, ty_Bool) -> new_compare30(xuu4600, xuu4800) new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat0(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Ordering) -> new_ltEs7(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Double) -> new_esEs13(xuu40000, xuu3000) new_compare16(xuu460, xuu480, False, bfe) -> GT new_ltEs14(False, False) -> True new_esEs7(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) new_ltEs7(GT, LT) -> False new_esEs8(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_ltEs16(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs4(xuu4610, xuu4810, bec, bed, bee) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat1(Zero, xuu4800) new_esEs16(False, False) -> True new_esEs23(xuu40001, xuu3001, ty_Bool) -> new_esEs16(xuu40001, xuu3001) new_ltEs19(xuu4611, xuu4811, app(ty_Ratio, bgd)) -> new_ltEs9(xuu4611, xuu4811, bgd) new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Char) -> new_ltEs11(xuu4610, xuu4810) new_esEs22(xuu40000, xuu3000, ty_Char) -> new_esEs14(xuu40000, xuu3000) new_ltEs19(xuu4611, xuu4811, ty_Float) -> new_ltEs18(xuu4611, xuu4811) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(xuu40001, xuu3001, ty_Double) -> new_esEs13(xuu40001, xuu3001) new_esEs26(xuu40000, xuu3000, app(ty_Ratio, daf)) -> new_esEs12(xuu40000, xuu3000, daf) new_lt21(xuu460, xuu480, ty_Ordering) -> new_lt7(xuu460, xuu480) new_esEs25(xuu40000, xuu3000, app(ty_Ratio, cec)) -> new_esEs12(xuu40000, xuu3000, cec) new_esEs5(Right(xuu40000), Right(xuu3000), cga, ty_Float) -> new_esEs19(xuu40000, xuu3000) new_ltEs8(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, cg) -> new_pePe(new_lt20(xuu4610, xuu4810, ea), new_asAs(new_esEs20(xuu4610, xuu4810, ea), new_ltEs19(xuu4611, xuu4811, cg))) new_esEs23(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Int) -> new_ltEs15(xuu4610, xuu4810) new_esEs21(xuu460, xuu480, ty_Char) -> new_esEs14(xuu460, xuu480) new_compare31(xuu4600, xuu4800, ty_Float) -> new_compare15(xuu4600, xuu4800) new_lt4(xuu4610, xuu4810, app(ty_[], hh)) -> new_lt6(xuu4610, xuu4810, hh) new_ltEs20(xuu461, xuu481, ty_Float) -> new_ltEs18(xuu461, xuu481) new_lt17(xuu460, xuu480, bfe) -> new_esEs11(new_compare6(xuu460, xuu480, bfe), LT) new_lt20(xuu4610, xuu4810, app(ty_[], cf)) -> new_lt6(xuu4610, xuu4810, cf) new_lt5(xuu4611, xuu4811, ty_Ordering) -> new_lt7(xuu4611, xuu4811) new_ltEs14(True, False) -> False new_ltEs5(xuu4612, xuu4812, app(ty_Ratio, bfh)) -> new_ltEs9(xuu4612, xuu4812, bfh) new_asAs(False, xuu69) -> False new_compare7(@0, @0) -> EQ new_lt20(xuu4610, xuu4810, app(ty_Maybe, dh)) -> new_lt17(xuu4610, xuu4810, dh) new_compare31(xuu4600, xuu4800, ty_Ordering) -> new_compare32(xuu4600, xuu4800) new_ltEs20(xuu461, xuu481, app(app(app(ty_@3, bbc), baa), bab)) -> new_ltEs4(xuu461, xuu481, bbc, baa, bab) new_compare27(xuu460, xuu480, True) -> EQ new_ltEs16(Just(xuu4610), Just(xuu4810), ty_Float) -> new_ltEs18(xuu4610, xuu4810) new_esEs20(xuu4610, xuu4810, ty_Int) -> new_esEs17(xuu4610, xuu4810) new_esEs16(False, True) -> False new_esEs16(True, False) -> False The set Q consists of the following terms: new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Left(x0), Left(x1), ty_Double, x2) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare31(x0, x1, ty_Integer) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs13(x0, x1) new_esEs22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_@0) new_primPlusNat1(Zero, Zero) new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs27(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs11(x0, x1) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_fsEs(x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs23(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Char) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs16(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt4(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs12(Right(x0), Right(x1), x2, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs12(Left(x0), Left(x1), ty_Int, x2) new_lt4(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt5(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs15(x0, x1) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_compare31(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare0([], [], x0) new_esEs14(Char(x0), Char(x1)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_compare31(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_primCmpNat1(Zero, x0) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare27(x0, x1, False) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(Nothing, Nothing, x0) new_primMulNat0(Zero, Succ(x0)) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, True) new_esEs7(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_compare9(Integer(x0), Integer(x1)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs7(EQ, EQ) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(True, True) new_lt4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_esEs24(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_@0) new_primMulInt(Neg(x0), Neg(x1)) new_lt4(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs7(Nothing, Just(x0), x1) new_esEs25(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs24(x0, x1, ty_Char) new_lt14(x0, x1) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1, x2, x3, x4) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_compare14(x0, x1, False) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Double) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, ty_@0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt15(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_lt4(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt7(x0, x1) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_compare31(x0, x1, ty_Char) new_lt19(x0, x1) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Zero, Succ(x0)) new_esEs24(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(False, False) new_lt5(x0, x1, ty_Char) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Char) new_compare31(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(False, False) new_primCmpNat2(Zero, Succ(x0)) new_lt5(x0, x1, ty_Int) new_compare31(x0, x1, ty_Ordering) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, ty_Int) new_pePe(True, x0) new_compare6(x0, x1, x2) new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare24(x0, x1, False, x2, x3, x4) new_compare16(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Succ(x0), Zero) new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(:(x0, x1), [], x2) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, ty_@0) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_primCmpNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Double) new_lt5(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_compare210(x0, x1, True) new_lt5(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_esEs9(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare14(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(@0, @0) new_primCompAux00(x0, LT) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1) new_esEs8(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1) new_compare16(x0, x1, True, x2) new_ltEs7(LT, LT) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True, x2) new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_primCmpNat2(Zero, Zero) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, x2, x3) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_lt4(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Nothing, x1) new_esEs10([], :(x0, x1), x2) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(True, True) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_lt12(x0, x1, x2, x3) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_esEs10([], [], x0) new_esEs24(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_primCmpNat0(x0, Succ(x1)) new_compare13(x0, x1) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs20(x0, x1, ty_Int) new_lt4(x0, x1, ty_Double) new_lt9(x0, x1, x2) new_esEs15(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_ltEs12(Left(x0), Right(x1), x2, x3) new_ltEs12(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, False, x2) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_primCompAux00(x0, EQ) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_sr(Integer(x0), Integer(x1)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_pePe(False, x0) new_ltEs10(x0, x1) new_esEs11(EQ, EQ) new_lt8(x0, x1, x2, x3) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_compare26(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, ty_Char) new_compare17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat2(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Bool) new_lt5(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(GT, GT) new_lt6(x0, x1, x2) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_@0) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_primMulInt(Pos(x0), Pos(x1)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs8(x0, x1, ty_@0) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare0([], :(x0, x1), x2) new_esEs17(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs12(Left(x0), Left(x1), ty_@0, x2) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt18(x0, x1) new_lt5(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Float) new_lt4(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_lt17(x0, x1, x2) new_lt10(x0, x1) new_compare31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_ltEs12(Right(x0), Right(x1), x2, ty_Int) new_compare5(x0, x1, x2, x3) new_ltEs19(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3, x4) new_lt4(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare11(x0, x1, x2, x3, True, x4, x5) new_ltEs9(x0, x1, x2) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_lt16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_compare31(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(GT, GT) new_esEs18(@0, @0) new_ltEs12(Right(x0), Right(x1), x2, ty_Float) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_sr0(x0, x1) new_ltEs5(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Ordering) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_primEqNat0(Zero, Zero) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(Right(x0), Right(x1), x2, ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs11(LT, LT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primCmpNat2(Succ(x0), Succ(x1)) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs16(False, True) new_esEs16(True, False) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Double) new_compare110(x0, x1, False) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_ltEs17(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs23(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt11(x0, x1) new_esEs9(x0, x1, ty_Ordering) new_compare10(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, x2, x3, x4) new_primCmpNat0(x0, Zero) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs20(x0, x1, ty_Integer) new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) 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_compare4(xuu460, xuu480, bfe) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare23(xuu460, xuu480, False, bfe) -> new_ltEs3(xuu460, xuu480, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(ty_@2, bcf), bcg)) -> new_ltEs0(xuu4612, xuu4812, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(ty_@2, bdg), bdh)) -> new_ltEs0(xuu4610, xuu4810, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(ty_[], bce)) -> new_ltEs(xuu4612, xuu4812, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(Just(xuu4610), Just(xuu4810), app(ty_[], bdf)) -> new_ltEs(xuu4610, xuu4810, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_compare(xuu4601, xuu4801, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(ty_@2, ec), ed)) -> new_ltEs0(xuu4611, xuu4811, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(ty_[], eb)) -> new_ltEs(xuu4611, xuu4811, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare20(@2(:(xuu4600, xuu4601), xuu461), @2(:(xuu4800, xuu4801), xuu481), False, app(ty_[], ba), beg) -> new_primCompAux(xuu4600, xuu4800, new_compare0(xuu4601, xuu4801, ba), ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs2(xuu4612, xuu4812, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs2(xuu4610, xuu4810, bec, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs2(xuu4611, xuu4811, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt(:(xuu4600, xuu4601), :(xuu4800, xuu4801), ba) -> new_compare(xuu4601, xuu4801, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare3(xuu460, xuu480, bfb, bfc, bfd) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(app(ty_Either, bch), bda)) -> new_ltEs1(xuu4612, xuu4812, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(xuu4610), Just(xuu4810), app(app(ty_Either, bea), beb)) -> new_ltEs1(xuu4610, xuu4810, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(xuu4610), Just(xuu4810), app(ty_Maybe, bef)) -> new_ltEs3(xuu4610, xuu4810, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(app(ty_Either, ee), ef)) -> new_ltEs1(xuu4611, xuu4811, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(xuu461, xuu481, h) -> new_compare(xuu461, xuu481, h) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt0(xuu460, xuu480, cc, cd) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt3(xuu460, xuu480, bfe) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, baa, app(ty_Maybe, bde)) -> new_ltEs3(xuu4612, xuu4812, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), ea, app(ty_Maybe, fb)) -> new_ltEs3(xuu4611, xuu4811, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(app(ty_@3, de), df), dg), cg) -> new_lt2(xuu4610, xuu4810, de, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(xuu460, xuu480, False, bfb, bfc, bfd) -> new_ltEs2(xuu460, xuu480, bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(ty_@2, cc), cd), beg) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare1(xuu460, xuu480, cc, cd) -> new_compare20(xuu460, xuu480, new_esEs4(xuu460, xuu480, cc, cd), cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(xuu460, xuu480, False, beh, bfa) -> new_ltEs1(xuu460, xuu480, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(xuu4600, xuu4800, xuu139, app(app(ty_Either, be), bf)) -> new_compare2(xuu4600, xuu4800, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(ty_Maybe, bfe), beg) -> new_compare23(xuu460, xuu480, new_esEs7(xuu460, xuu480, bfe), bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt1(xuu460, xuu480, beh, bfa) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(ty_[], cf), cg) -> new_lt(xuu4610, xuu4810, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt2(xuu460, xuu480, bfb, bfc, bfd) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(ty_Either, beh), bfa), beg) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(xuu460, xuu480, beh, bfa) -> new_compare21(xuu460, xuu480, new_esEs5(xuu460, xuu480, beh, bfa), beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(ty_@2, da), db), cg) -> new_lt0(xuu4610, xuu4810, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(xuu4600, xuu4800, xuu139, app(app(app(ty_@3, bg), bh), ca)) -> new_compare3(xuu4600, xuu4800, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(ty_Maybe, dh), cg) -> new_lt3(xuu4610, xuu4810, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu4610, xuu4611), @2(xuu4810, xuu4811), app(app(ty_Either, dc), dd), cg) -> new_lt1(xuu4610, xuu4810, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(xuu4600, xuu4800, xuu139, app(ty_Maybe, cb)) -> new_compare4(xuu4600, xuu4800, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu4600, xuu4800, xuu139, app(ty_[], bb)) -> new_compare(xuu4600, xuu4800, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu4600, xuu4800, xuu139, app(app(ty_@2, bc), bd)) -> new_compare1(xuu4600, xuu4800, bc, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, app(app(app(ty_@3, bfb), bfc), bfd), beg) -> new_compare22(xuu460, xuu480, new_esEs6(xuu460, xuu480, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(app(ty_@3, bag), bah), bba), baa, bab) -> new_lt2(xuu4610, xuu4810, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(app(ty_@3, bca), bcb), bcc), bab) -> new_lt2(xuu4611, xuu4811, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(ty_[], bbd), bab) -> new_lt(xuu4611, xuu4811, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(ty_[], hh), baa, bab) -> new_lt(xuu4610, xuu4810, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(ty_@2, bac), bad), baa, bab) -> new_lt0(xuu4610, xuu4810, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(ty_@2, bbe), bbf), bab) -> new_lt0(xuu4611, xuu4811, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(ty_Maybe, bbb), baa, bab) -> new_lt3(xuu4610, xuu4810, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(ty_Maybe, bcd), bab) -> new_lt3(xuu4611, xuu4811, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), bbc, app(app(ty_Either, bbg), bbh), bab) -> new_lt1(xuu4611, xuu4811, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu4610, xuu4611, xuu4612), @3(xuu4810, xuu4811, xuu4812), app(app(ty_Either, bae), baf), baa, bab) -> new_lt1(xuu4610, xuu4810, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(ty_@2, ff), fg), fd) -> new_ltEs0(xuu4610, xuu4810, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(ty_@2, gh), ha)) -> new_ltEs0(xuu4610, xuu4810, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(ty_@2, ec), ed))) -> new_ltEs0(xuu4611, xuu4811, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(ty_@2, ff), fg)), fd)) -> new_ltEs0(xuu4610, xuu4810, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(ty_@2, bcf), bcg))) -> new_ltEs0(xuu4612, xuu4812, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(ty_@2, bdg), bdh))) -> new_ltEs0(xuu4610, xuu4810, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(ty_@2, gh), ha))) -> new_ltEs0(xuu4610, xuu4810, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(ty_[], gg)) -> new_ltEs(xuu4610, xuu4810, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu4610), Left(xuu4810), app(ty_[], fc), fd) -> new_ltEs(xuu4610, xuu4810, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(ty_[], eb))) -> new_ltEs(xuu4611, xuu4811, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(ty_[], gg))) -> new_ltEs(xuu4610, xuu4810, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(ty_[], fc)), fd)) -> new_ltEs(xuu4610, xuu4810, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(ty_[], bdf))) -> new_ltEs(xuu4610, xuu4810, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(ty_[], bce))) -> new_ltEs(xuu4612, xuu4812, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(app(ty_@3, gb), gc), gd), fd) -> new_ltEs2(xuu4610, xuu4810, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs2(xuu4610, xuu4810, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(app(ty_Either, hb), hc)) -> new_ltEs1(xuu4610, xuu4810, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu4610), Left(xuu4810), app(app(ty_Either, fh), ga), fd) -> new_ltEs1(xuu4610, xuu4810, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu4610), Right(xuu4810), gf, app(ty_Maybe, hg)) -> new_ltEs3(xuu4610, xuu4810, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu4610), Left(xuu4810), app(ty_Maybe, ge), fd) -> new_ltEs3(xuu4610, xuu4810, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs2(xuu4612, xuu4812, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(app(ty_@3, eg), eh), fa))) -> new_ltEs2(xuu4611, xuu4811, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs2(xuu4610, xuu4810, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_ltEs2(xuu4610, xuu4810, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(app(ty_@3, bec), bed), bee))) -> new_ltEs2(xuu4610, xuu4810, bec, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(app(ty_Either, hb), hc))) -> new_ltEs1(xuu4610, xuu4810, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(app(ty_Either, ee), ef))) -> new_ltEs1(xuu4611, xuu4811, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(app(ty_Either, bch), bda))) -> new_ltEs1(xuu4612, xuu4812, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(app(ty_Either, fh), ga)), fd)) -> new_ltEs1(xuu4610, xuu4810, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(app(ty_Either, bea), beb))) -> new_ltEs1(xuu4610, xuu4810, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, Just(xuu4610)), @2(xuu480, Just(xuu4810)), False, ce, app(ty_Maybe, app(ty_Maybe, bef))) -> new_ltEs3(xuu4610, xuu4810, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, Left(xuu4610)), @2(xuu480, Left(xuu4810)), False, ce, app(app(ty_Either, app(ty_Maybe, ge)), fd)) -> new_ltEs3(xuu4610, xuu4810, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, Right(xuu4610)), @2(xuu480, Right(xuu4810)), False, ce, app(app(ty_Either, gf), app(ty_Maybe, hg))) -> new_ltEs3(xuu4610, xuu4810, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, ea), app(ty_Maybe, fb))) -> new_ltEs3(xuu4611, xuu4811, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), baa), app(ty_Maybe, bde))) -> new_ltEs3(xuu4612, xuu4812, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(app(ty_@3, de), df), dg)), cg)) -> new_lt2(xuu4610, xuu4810, de, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(app(ty_@3, bca), bcb), bcc)), bab)) -> new_lt2(xuu4611, xuu4811, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(app(ty_@3, bag), bah), bba)), baa), bab)) -> new_lt2(xuu4610, xuu4810, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(ty_[], cf)), cg)) -> new_lt(xuu4610, xuu4810, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(ty_[], hh)), baa), bab)) -> new_lt(xuu4610, xuu4810, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(ty_[], bbd)), bab)) -> new_lt(xuu4611, xuu4811, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(ty_@2, bac), bad)), baa), bab)) -> new_lt0(xuu4610, xuu4810, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(ty_@2, bbe), bbf)), bab)) -> new_lt0(xuu4611, xuu4811, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(ty_@2, da), db)), cg)) -> new_lt0(xuu4610, xuu4810, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(ty_Maybe, bcd)), bab)) -> new_lt3(xuu4611, xuu4811, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(ty_Maybe, dh)), cg)) -> new_lt3(xuu4610, xuu4810, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(ty_Maybe, bbb)), baa), bab)) -> new_lt3(xuu4610, xuu4810, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(xuu460, xuu461), @2(xuu480, xuu481), False, ce, app(ty_[], h)) -> new_compare(xuu461, xuu481, h) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(:(xuu4600, xuu4601), xuu461), @2(:(xuu4800, xuu4801), xuu481), False, app(ty_[], ba), beg) -> new_compare(xuu4601, xuu4801, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, app(app(ty_Either, bae), baf)), baa), bab)) -> new_lt1(xuu4610, xuu4810, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @2(xuu4610, xuu4611)), @2(xuu480, @2(xuu4810, xuu4811)), False, ce, app(app(ty_@2, app(app(ty_Either, dc), dd)), cg)) -> new_lt1(xuu4610, xuu4810, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(xuu460, @3(xuu4610, xuu4611, xuu4612)), @2(xuu480, @3(xuu4810, xuu4811, xuu4812)), False, ce, app(app(app(ty_@3, bbc), app(app(ty_Either, bbg), bbh)), bab)) -> new_lt1(xuu4611, xuu4811, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 ---------------------------------------- (30) YES ---------------------------------------- (31) 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. ---------------------------------------- (32) 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 ---------------------------------------- (33) YES ---------------------------------------- (34) 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. ---------------------------------------- (35) 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 ---------------------------------------- (36) YES ---------------------------------------- (37) 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. ---------------------------------------- (38) 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 ---------------------------------------- (39) YES ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu38200), Succ(xuu10100)) -> new_primMinusNat(xuu38200, xuu10100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (41) 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(xuu38200), Succ(xuu10100)) -> new_primMinusNat(xuu38200, xuu10100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu38200), Succ(xuu10100)) -> new_primPlusNat(xuu38200, xuu10100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (44) 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(xuu38200), Succ(xuu10100)) -> new_primPlusNat(xuu38200, xuu10100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (45) YES