/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, 3 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 70 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) TransformationProof [EQUIVALENT, 1409 ms] (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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C (\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 a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addListToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord 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 :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap 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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "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; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap 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 = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` 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 "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; " "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); " "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); " "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); " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Double_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); " "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); " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; " "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); " "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; " "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); " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; " "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); " "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; " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchLeft_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)) wzx wzw; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap 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 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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 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 wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap 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; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 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 wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];2792[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 28[label="",style="solid", color="burlywood", weight=3]; 2793[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 29[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 30 -> 20[label="",style="dashed", color="red", weight=0]; 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];2794[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 34[label="",style="solid", color="burlywood", weight=3]; 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];2795[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 36[label="",style="solid", color="burlywood", weight=3]; 2796[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 37[label="",style="solid", color="burlywood", weight=3]; 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 42 -> 45[label="",style="dashed", color="green", weight=3]; 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];43 -> 46[label="",style="solid", color="black", weight=3]; 44 -> 22[label="",style="dashed", color="red", weight=0]; 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare3 xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];46 -> 47[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare2 xuu31100 xuu60 (xuu31100 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];2797[label="xuu31100/(xuu311000,xuu311001)",fontsize=10,color="white",style="solid",shape="box"];47 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 48[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) xuu60 ((xuu311000,xuu311001) == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];2798[label="xuu60/(xuu600,xuu601)",fontsize=10,color="white",style="solid",shape="box"];48 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 49[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600,xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) (xuu600,xuu601) ((xuu311000,xuu311001) == (xuu600,xuu601)) == LT)",fontsize=16,color="black",shape="box"];49 -> 50[label="",style="solid", color="black", weight=3]; 50 -> 135[label="",style="dashed", color="red", weight=0]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600,xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601) == LT)",fontsize=16,color="magenta"];50 -> 136[label="",style="dashed", color="magenta", weight=3]; 50 -> 137[label="",style="dashed", color="magenta", weight=3]; 50 -> 138[label="",style="dashed", color="magenta", weight=3]; 50 -> 139[label="",style="dashed", color="magenta", weight=3]; 50 -> 140[label="",style="dashed", color="magenta", weight=3]; 50 -> 141[label="",style="dashed", color="magenta", weight=3]; 50 -> 142[label="",style="dashed", color="magenta", weight=3]; 50 -> 143[label="",style="dashed", color="magenta", weight=3]; 50 -> 144[label="",style="dashed", color="magenta", weight=3]; 50 -> 145[label="",style="dashed", color="magenta", weight=3]; 136[label="xuu311001",fontsize=16,color="green",shape="box"];137[label="xuu63",fontsize=16,color="green",shape="box"];138 -> 149[label="",style="dashed", color="red", weight=0]; 138[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601) == LT",fontsize=16,color="magenta"];138 -> 150[label="",style="dashed", color="magenta", weight=3]; 138 -> 151[label="",style="dashed", color="magenta", weight=3]; 138 -> 152[label="",style="dashed", color="magenta", weight=3]; 138 -> 153[label="",style="dashed", color="magenta", weight=3]; 138 -> 154[label="",style="dashed", color="magenta", weight=3]; 139[label="xuu31101",fontsize=16,color="green",shape="box"];140[label="xuu61",fontsize=16,color="green",shape="box"];141[label="xuu601",fontsize=16,color="green",shape="box"];142[label="xuu64",fontsize=16,color="green",shape="box"];143[label="xuu600",fontsize=16,color="green",shape="box"];144[label="xuu62",fontsize=16,color="green",shape="box"];145[label="xuu311000",fontsize=16,color="green",shape="box"];135[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 xuu29",fontsize=16,color="burlywood",shape="triangle"];2799[label="xuu29/False",fontsize=10,color="white",style="solid",shape="box"];135 -> 2799[label="",style="solid", color="burlywood", weight=9]; 2799 -> 155[label="",style="solid", color="burlywood", weight=3]; 2800[label="xuu29/True",fontsize=10,color="white",style="solid",shape="box"];135 -> 2800[label="",style="solid", color="burlywood", weight=9]; 2800 -> 156[label="",style="solid", color="burlywood", weight=3]; 150[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];2801[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 157[label="",style="solid", color="blue", weight=3]; 2802[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 158[label="",style="solid", color="blue", weight=3]; 2803[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 159[label="",style="solid", color="blue", weight=3]; 2804[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 160[label="",style="solid", color="blue", weight=3]; 2805[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 161[label="",style="solid", color="blue", weight=3]; 2806[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 162[label="",style="solid", color="blue", weight=3]; 2807[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 163[label="",style="solid", color="blue", weight=3]; 2808[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 164[label="",style="solid", color="blue", weight=3]; 2809[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 165[label="",style="solid", color="blue", weight=3]; 2810[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 166[label="",style="solid", color="blue", weight=3]; 2811[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 167[label="",style="solid", color="blue", weight=3]; 2812[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 168[label="",style="solid", color="blue", weight=3]; 2813[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2813[label="",style="solid", color="blue", weight=9]; 2813 -> 169[label="",style="solid", color="blue", weight=3]; 2814[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2814[label="",style="solid", color="blue", weight=9]; 2814 -> 170[label="",style="solid", color="blue", weight=3]; 151[label="xuu311000",fontsize=16,color="green",shape="box"];152[label="xuu600",fontsize=16,color="green",shape="box"];153[label="xuu311001",fontsize=16,color="green",shape="box"];154[label="xuu601",fontsize=16,color="green",shape="box"];149[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu40 && xuu37 == xuu39) == LT",fontsize=16,color="burlywood",shape="triangle"];2815[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];149 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 171[label="",style="solid", color="burlywood", weight=3]; 2816[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];149 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 172[label="",style="solid", color="burlywood", weight=3]; 155[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 False",fontsize=16,color="black",shape="box"];155 -> 173[label="",style="solid", color="black", weight=3]; 156[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];156 -> 174[label="",style="solid", color="black", weight=3]; 157[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2817[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];157 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 175[label="",style="solid", color="burlywood", weight=3]; 2818[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 176[label="",style="solid", color="burlywood", weight=3]; 158[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2819[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];158 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 177[label="",style="solid", color="burlywood", weight=3]; 2820[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];158 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 178[label="",style="solid", color="burlywood", weight=3]; 159[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];159 -> 179[label="",style="solid", color="black", weight=3]; 160[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2821[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];160 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 180[label="",style="solid", color="burlywood", weight=3]; 2822[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];160 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 181[label="",style="solid", color="burlywood", weight=3]; 161[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2823[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];161 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 182[label="",style="solid", color="burlywood", weight=3]; 162[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2824[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 183[label="",style="solid", color="burlywood", weight=3]; 2825[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 184[label="",style="solid", color="burlywood", weight=3]; 2826[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 185[label="",style="solid", color="burlywood", weight=3]; 163[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2827[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];163 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 186[label="",style="solid", color="burlywood", weight=3]; 164[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2828[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];164 -> 2828[label="",style="solid", color="burlywood", weight=9]; 2828 -> 187[label="",style="solid", color="burlywood", weight=3]; 165[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2829[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];165 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 188[label="",style="solid", color="burlywood", weight=3]; 166[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2830[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];166 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 189[label="",style="solid", color="burlywood", weight=3]; 167[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];167 -> 190[label="",style="solid", color="black", weight=3]; 168[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];168 -> 191[label="",style="solid", color="black", weight=3]; 169[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2831[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];169 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 192[label="",style="solid", color="burlywood", weight=3]; 2832[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];169 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 193[label="",style="solid", color="burlywood", weight=3]; 170[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];170 -> 194[label="",style="solid", color="black", weight=3]; 171[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (False && xuu37 == xuu39) == LT",fontsize=16,color="black",shape="box"];171 -> 195[label="",style="solid", color="black", weight=3]; 172[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (True && xuu37 == xuu39) == LT",fontsize=16,color="black",shape="box"];172 -> 196[label="",style="solid", color="black", weight=3]; 173 -> 239[label="",style="dashed", color="red", weight=0]; 173[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 ((xuu25,xuu26) > (xuu19,xuu20))",fontsize=16,color="magenta"];173 -> 240[label="",style="dashed", color="magenta", weight=3]; 174 -> 198[label="",style="dashed", color="red", weight=0]; 174[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25,xuu26) xuu27) xuu24",fontsize=16,color="magenta"];174 -> 199[label="",style="dashed", color="magenta", weight=3]; 175[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];2833[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];175 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 200[label="",style="solid", color="burlywood", weight=3]; 2834[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];175 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 201[label="",style="solid", color="burlywood", weight=3]; 176[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2835[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];176 -> 2835[label="",style="solid", color="burlywood", weight=9]; 2835 -> 202[label="",style="solid", color="burlywood", weight=3]; 2836[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];176 -> 2836[label="",style="solid", color="burlywood", weight=9]; 2836 -> 203[label="",style="solid", color="burlywood", weight=3]; 177[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];2837[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];177 -> 2837[label="",style="solid", color="burlywood", weight=9]; 2837 -> 204[label="",style="solid", color="burlywood", weight=3]; 2838[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];177 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 205[label="",style="solid", color="burlywood", weight=3]; 178[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];2839[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];178 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 206[label="",style="solid", color="burlywood", weight=3]; 2840[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];178 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 207[label="",style="solid", color="burlywood", weight=3]; 179[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2841[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];179 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 208[label="",style="solid", color="burlywood", weight=3]; 180[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];2842[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];180 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 209[label="",style="solid", color="burlywood", weight=3]; 2843[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];180 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 210[label="",style="solid", color="burlywood", weight=3]; 181[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];2844[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];181 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 211[label="",style="solid", color="burlywood", weight=3]; 2845[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];181 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 212[label="",style="solid", color="burlywood", weight=3]; 182[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];2846[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];182 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 213[label="",style="solid", color="burlywood", weight=3]; 183[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];2847[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];183 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 214[label="",style="solid", color="burlywood", weight=3]; 2848[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];183 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 215[label="",style="solid", color="burlywood", weight=3]; 2849[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];183 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 216[label="",style="solid", color="burlywood", weight=3]; 184[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];2850[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 217[label="",style="solid", color="burlywood", weight=3]; 2851[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];184 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 218[label="",style="solid", color="burlywood", weight=3]; 2852[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 219[label="",style="solid", color="burlywood", weight=3]; 185[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];2853[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];185 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 220[label="",style="solid", color="burlywood", weight=3]; 2854[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];185 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 221[label="",style="solid", color="burlywood", weight=3]; 2855[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];185 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 222[label="",style="solid", color="burlywood", weight=3]; 186[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];2856[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];186 -> 2856[label="",style="solid", color="burlywood", weight=9]; 2856 -> 223[label="",style="solid", color="burlywood", weight=3]; 187[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2857[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];187 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 224[label="",style="solid", color="burlywood", weight=3]; 188[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];2858[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];188 -> 2858[label="",style="solid", color="burlywood", weight=9]; 2858 -> 225[label="",style="solid", color="burlywood", weight=3]; 189[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];2859[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];189 -> 2859[label="",style="solid", color="burlywood", weight=9]; 2859 -> 226[label="",style="solid", color="burlywood", weight=3]; 190[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];2860[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];190 -> 2860[label="",style="solid", color="burlywood", weight=9]; 2860 -> 227[label="",style="solid", color="burlywood", weight=3]; 2861[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];190 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 228[label="",style="solid", color="burlywood", weight=3]; 191[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2862[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];191 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 229[label="",style="solid", color="burlywood", weight=3]; 192[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2863[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];192 -> 2863[label="",style="solid", color="burlywood", weight=9]; 2863 -> 230[label="",style="solid", color="burlywood", weight=3]; 2864[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];192 -> 2864[label="",style="solid", color="burlywood", weight=9]; 2864 -> 231[label="",style="solid", color="burlywood", weight=3]; 193[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2865[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];193 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 232[label="",style="solid", color="burlywood", weight=3]; 2866[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];193 -> 2866[label="",style="solid", color="burlywood", weight=9]; 2866 -> 233[label="",style="solid", color="burlywood", weight=3]; 194[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2867[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];194 -> 2867[label="",style="solid", color="burlywood", weight=9]; 2867 -> 234[label="",style="solid", color="burlywood", weight=3]; 195 -> 162[label="",style="dashed", color="red", weight=0]; 195[label="compare2 (xuu36,xuu37) (xuu38,xuu39) False == LT",fontsize=16,color="magenta"];195 -> 235[label="",style="dashed", color="magenta", weight=3]; 195 -> 236[label="",style="dashed", color="magenta", weight=3]; 196 -> 162[label="",style="dashed", color="red", weight=0]; 196[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu37 == xuu39) == LT",fontsize=16,color="magenta"];196 -> 237[label="",style="dashed", color="magenta", weight=3]; 196 -> 238[label="",style="dashed", color="magenta", weight=3]; 240[label="(xuu25,xuu26) > (xuu19,xuu20)",fontsize=16,color="black",shape="box"];240 -> 242[label="",style="solid", color="black", weight=3]; 239[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 xuu42",fontsize=16,color="burlywood",shape="triangle"];2868[label="xuu42/False",fontsize=10,color="white",style="solid",shape="box"];239 -> 2868[label="",style="solid", color="burlywood", weight=9]; 2868 -> 243[label="",style="solid", color="burlywood", weight=3]; 2869[label="xuu42/True",fontsize=10,color="white",style="solid",shape="box"];239 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 244[label="",style="solid", color="burlywood", weight=3]; 199 -> 35[label="",style="dashed", color="red", weight=0]; 199[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25,xuu26) xuu27",fontsize=16,color="magenta"];199 -> 245[label="",style="dashed", color="magenta", weight=3]; 199 -> 246[label="",style="dashed", color="magenta", weight=3]; 199 -> 247[label="",style="dashed", color="magenta", weight=3]; 198[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="triangle"];198 -> 248[label="",style="solid", color="black", weight=3]; 200[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];200 -> 249[label="",style="solid", color="black", weight=3]; 201[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];201 -> 250[label="",style="solid", color="black", weight=3]; 202[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];202 -> 251[label="",style="solid", color="black", weight=3]; 203[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];203 -> 252[label="",style="solid", color="black", weight=3]; 204[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];204 -> 253[label="",style="solid", color="black", weight=3]; 205[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];205 -> 254[label="",style="solid", color="black", weight=3]; 206[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];206 -> 255[label="",style="solid", color="black", weight=3]; 207[label="[] == []",fontsize=16,color="black",shape="box"];207 -> 256[label="",style="solid", color="black", weight=3]; 208[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2870[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 257[label="",style="solid", color="burlywood", weight=3]; 209[label="False == False",fontsize=16,color="black",shape="box"];209 -> 258[label="",style="solid", color="black", weight=3]; 210[label="False == True",fontsize=16,color="black",shape="box"];210 -> 259[label="",style="solid", color="black", weight=3]; 211[label="True == False",fontsize=16,color="black",shape="box"];211 -> 260[label="",style="solid", color="black", weight=3]; 212[label="True == True",fontsize=16,color="black",shape="box"];212 -> 261[label="",style="solid", color="black", weight=3]; 213[label="() == ()",fontsize=16,color="black",shape="box"];213 -> 262[label="",style="solid", color="black", weight=3]; 214[label="LT == LT",fontsize=16,color="black",shape="box"];214 -> 263[label="",style="solid", color="black", weight=3]; 215[label="LT == EQ",fontsize=16,color="black",shape="box"];215 -> 264[label="",style="solid", color="black", weight=3]; 216[label="LT == GT",fontsize=16,color="black",shape="box"];216 -> 265[label="",style="solid", color="black", weight=3]; 217[label="EQ == LT",fontsize=16,color="black",shape="box"];217 -> 266[label="",style="solid", color="black", weight=3]; 218[label="EQ == EQ",fontsize=16,color="black",shape="box"];218 -> 267[label="",style="solid", color="black", weight=3]; 219[label="EQ == GT",fontsize=16,color="black",shape="box"];219 -> 268[label="",style="solid", color="black", weight=3]; 220[label="GT == LT",fontsize=16,color="black",shape="box"];220 -> 269[label="",style="solid", color="black", weight=3]; 221[label="GT == EQ",fontsize=16,color="black",shape="box"];221 -> 270[label="",style="solid", color="black", weight=3]; 222[label="GT == GT",fontsize=16,color="black",shape="box"];222 -> 271[label="",style="solid", color="black", weight=3]; 223[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];223 -> 272[label="",style="solid", color="black", weight=3]; 224[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];224 -> 273[label="",style="solid", color="black", weight=3]; 225[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];225 -> 274[label="",style="solid", color="black", weight=3]; 226[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];226 -> 275[label="",style="solid", color="black", weight=3]; 227[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2871[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 276[label="",style="solid", color="burlywood", weight=3]; 2872[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];227 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 277[label="",style="solid", color="burlywood", weight=3]; 228[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2873[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 278[label="",style="solid", color="burlywood", weight=3]; 2874[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];228 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 279[label="",style="solid", color="burlywood", weight=3]; 229[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];2875[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];229 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 280[label="",style="solid", color="burlywood", weight=3]; 230[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];230 -> 281[label="",style="solid", color="black", weight=3]; 231[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];231 -> 282[label="",style="solid", color="black", weight=3]; 232[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];232 -> 283[label="",style="solid", color="black", weight=3]; 233[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];233 -> 284[label="",style="solid", color="black", weight=3]; 234[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];2876[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];234 -> 2876[label="",style="solid", color="burlywood", weight=9]; 2876 -> 285[label="",style="solid", color="burlywood", weight=3]; 235[label="LT",fontsize=16,color="green",shape="box"];236 -> 1243[label="",style="dashed", color="red", weight=0]; 236[label="compare2 (xuu36,xuu37) (xuu38,xuu39) False",fontsize=16,color="magenta"];236 -> 1244[label="",style="dashed", color="magenta", weight=3]; 236 -> 1245[label="",style="dashed", color="magenta", weight=3]; 236 -> 1246[label="",style="dashed", color="magenta", weight=3]; 237[label="LT",fontsize=16,color="green",shape="box"];238 -> 1243[label="",style="dashed", color="red", weight=0]; 238[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu37 == xuu39)",fontsize=16,color="magenta"];238 -> 1247[label="",style="dashed", color="magenta", weight=3]; 238 -> 1248[label="",style="dashed", color="magenta", weight=3]; 238 -> 1249[label="",style="dashed", color="magenta", weight=3]; 242 -> 162[label="",style="dashed", color="red", weight=0]; 242[label="compare (xuu25,xuu26) (xuu19,xuu20) == GT",fontsize=16,color="magenta"];242 -> 298[label="",style="dashed", color="magenta", weight=3]; 242 -> 299[label="",style="dashed", color="magenta", weight=3]; 243[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 False",fontsize=16,color="black",shape="box"];243 -> 300[label="",style="solid", color="black", weight=3]; 244[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];244 -> 301[label="",style="solid", color="black", weight=3]; 245[label="xuu27",fontsize=16,color="green",shape="box"];246[label="xuu23",fontsize=16,color="green",shape="box"];247[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];248[label="FiniteMap.mkBalBranch6 (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="box"];248 -> 302[label="",style="solid", color="black", weight=3]; 249[label="True",fontsize=16,color="green",shape="box"];250[label="False",fontsize=16,color="green",shape="box"];251[label="False",fontsize=16,color="green",shape="box"];252[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2877[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 303[label="",style="solid", color="blue", weight=3]; 2878[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 304[label="",style="solid", color="blue", weight=3]; 2879[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 305[label="",style="solid", color="blue", weight=3]; 2880[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 306[label="",style="solid", color="blue", weight=3]; 2881[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 307[label="",style="solid", color="blue", weight=3]; 2882[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 308[label="",style="solid", color="blue", weight=3]; 2883[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 309[label="",style="solid", color="blue", weight=3]; 2884[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 310[label="",style="solid", color="blue", weight=3]; 2885[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 311[label="",style="solid", color="blue", weight=3]; 2886[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 312[label="",style="solid", color="blue", weight=3]; 2887[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 313[label="",style="solid", color="blue", weight=3]; 2888[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 314[label="",style="solid", color="blue", weight=3]; 2889[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 315[label="",style="solid", color="blue", weight=3]; 2890[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 316[label="",style="solid", color="blue", weight=3]; 253 -> 420[label="",style="dashed", color="red", weight=0]; 253[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];253 -> 421[label="",style="dashed", color="magenta", weight=3]; 253 -> 422[label="",style="dashed", color="magenta", weight=3]; 254[label="False",fontsize=16,color="green",shape="box"];255[label="False",fontsize=16,color="green",shape="box"];256[label="True",fontsize=16,color="green",shape="box"];257[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];257 -> 328[label="",style="solid", color="black", weight=3]; 258[label="True",fontsize=16,color="green",shape="box"];259[label="False",fontsize=16,color="green",shape="box"];260[label="False",fontsize=16,color="green",shape="box"];261[label="True",fontsize=16,color="green",shape="box"];262[label="True",fontsize=16,color="green",shape="box"];263[label="True",fontsize=16,color="green",shape="box"];264[label="False",fontsize=16,color="green",shape="box"];265[label="False",fontsize=16,color="green",shape="box"];266[label="False",fontsize=16,color="green",shape="box"];267[label="True",fontsize=16,color="green",shape="box"];268[label="False",fontsize=16,color="green",shape="box"];269[label="False",fontsize=16,color="green",shape="box"];270[label="False",fontsize=16,color="green",shape="box"];271[label="True",fontsize=16,color="green",shape="box"];272 -> 420[label="",style="dashed", color="red", weight=0]; 272[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];272 -> 423[label="",style="dashed", color="magenta", weight=3]; 272 -> 424[label="",style="dashed", color="magenta", weight=3]; 273 -> 190[label="",style="dashed", color="red", weight=0]; 273[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];273 -> 329[label="",style="dashed", color="magenta", weight=3]; 273 -> 330[label="",style="dashed", color="magenta", weight=3]; 274 -> 420[label="",style="dashed", color="red", weight=0]; 274[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];274 -> 425[label="",style="dashed", color="magenta", weight=3]; 274 -> 426[label="",style="dashed", color="magenta", weight=3]; 275 -> 420[label="",style="dashed", color="red", weight=0]; 275[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];275 -> 427[label="",style="dashed", color="magenta", weight=3]; 275 -> 428[label="",style="dashed", color="magenta", weight=3]; 276[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];2891[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];276 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 331[label="",style="solid", color="burlywood", weight=3]; 2892[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];276 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 332[label="",style="solid", color="burlywood", weight=3]; 277[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];2893[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];277 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 333[label="",style="solid", color="burlywood", weight=3]; 2894[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];277 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 334[label="",style="solid", color="burlywood", weight=3]; 278[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];2895[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];278 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 335[label="",style="solid", color="burlywood", weight=3]; 2896[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];278 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 336[label="",style="solid", color="burlywood", weight=3]; 279[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];2897[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];279 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 337[label="",style="solid", color="burlywood", weight=3]; 2898[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];279 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 338[label="",style="solid", color="burlywood", weight=3]; 280[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];280 -> 339[label="",style="solid", color="black", weight=3]; 281[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2899[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 340[label="",style="solid", color="blue", weight=3]; 2900[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 341[label="",style="solid", color="blue", weight=3]; 2901[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 342[label="",style="solid", color="blue", weight=3]; 2902[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 343[label="",style="solid", color="blue", weight=3]; 2903[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 344[label="",style="solid", color="blue", weight=3]; 2904[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 345[label="",style="solid", color="blue", weight=3]; 2905[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 346[label="",style="solid", color="blue", weight=3]; 2906[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 347[label="",style="solid", color="blue", weight=3]; 2907[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 348[label="",style="solid", color="blue", weight=3]; 2908[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 349[label="",style="solid", color="blue", weight=3]; 2909[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 350[label="",style="solid", color="blue", weight=3]; 2910[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 351[label="",style="solid", color="blue", weight=3]; 2911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 352[label="",style="solid", color="blue", weight=3]; 2912[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];281 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 353[label="",style="solid", color="blue", weight=3]; 282[label="False",fontsize=16,color="green",shape="box"];283[label="False",fontsize=16,color="green",shape="box"];284[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2913[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 354[label="",style="solid", color="blue", weight=3]; 2914[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 355[label="",style="solid", color="blue", weight=3]; 2915[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 356[label="",style="solid", color="blue", weight=3]; 2916[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 357[label="",style="solid", color="blue", weight=3]; 2917[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 358[label="",style="solid", color="blue", weight=3]; 2918[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 359[label="",style="solid", color="blue", weight=3]; 2919[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 360[label="",style="solid", color="blue", weight=3]; 2920[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 361[label="",style="solid", color="blue", weight=3]; 2921[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 362[label="",style="solid", color="blue", weight=3]; 2922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 363[label="",style="solid", color="blue", weight=3]; 2923[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 364[label="",style="solid", color="blue", weight=3]; 2924[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 365[label="",style="solid", color="blue", weight=3]; 2925[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 366[label="",style="solid", color="blue", weight=3]; 2926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];284 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 367[label="",style="solid", color="blue", weight=3]; 285[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];285 -> 368[label="",style="solid", color="black", weight=3]; 1244[label="(xuu38,xuu39)",fontsize=16,color="green",shape="box"];1245[label="False",fontsize=16,color="green",shape="box"];1246[label="(xuu36,xuu37)",fontsize=16,color="green",shape="box"];1243[label="compare2 xuu49 xuu51 xuu88",fontsize=16,color="burlywood",shape="triangle"];2927[label="xuu88/False",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 1257[label="",style="solid", color="burlywood", weight=3]; 2928[label="xuu88/True",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 1258[label="",style="solid", color="burlywood", weight=3]; 1247[label="(xuu38,xuu39)",fontsize=16,color="green",shape="box"];1248[label="xuu37 == xuu39",fontsize=16,color="blue",shape="box"];2929[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 1259[label="",style="solid", color="blue", weight=3]; 2930[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 1260[label="",style="solid", color="blue", weight=3]; 2931[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 1261[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 1262[label="",style="solid", color="blue", weight=3]; 2933[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 1263[label="",style="solid", color="blue", weight=3]; 2934[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 1264[label="",style="solid", color="blue", weight=3]; 2935[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 1265[label="",style="solid", color="blue", weight=3]; 2936[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 1266[label="",style="solid", color="blue", weight=3]; 2937[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 1267[label="",style="solid", color="blue", weight=3]; 2938[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 1268[label="",style="solid", color="blue", weight=3]; 2939[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 1269[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 1270[label="",style="solid", color="blue", weight=3]; 2941[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 1271[label="",style="solid", color="blue", weight=3]; 2942[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 1272[label="",style="solid", color="blue", weight=3]; 1249[label="(xuu36,xuu37)",fontsize=16,color="green",shape="box"];298[label="GT",fontsize=16,color="green",shape="box"];299[label="compare (xuu25,xuu26) (xuu19,xuu20)",fontsize=16,color="black",shape="box"];299 -> 385[label="",style="solid", color="black", weight=3]; 300[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];300 -> 386[label="",style="solid", color="black", weight=3]; 301 -> 198[label="",style="dashed", color="red", weight=0]; 301[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 xuu23 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25,xuu26) xuu27)",fontsize=16,color="magenta"];301 -> 387[label="",style="dashed", color="magenta", weight=3]; 301 -> 388[label="",style="dashed", color="magenta", weight=3]; 302 -> 610[label="",style="dashed", color="red", weight=0]; 302[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];302 -> 611[label="",style="dashed", color="magenta", weight=3]; 303 -> 157[label="",style="dashed", color="red", weight=0]; 303[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];303 -> 390[label="",style="dashed", color="magenta", weight=3]; 303 -> 391[label="",style="dashed", color="magenta", weight=3]; 304 -> 158[label="",style="dashed", color="red", weight=0]; 304[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];304 -> 392[label="",style="dashed", color="magenta", weight=3]; 304 -> 393[label="",style="dashed", color="magenta", weight=3]; 305 -> 159[label="",style="dashed", color="red", weight=0]; 305[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];305 -> 394[label="",style="dashed", color="magenta", weight=3]; 305 -> 395[label="",style="dashed", color="magenta", weight=3]; 306 -> 160[label="",style="dashed", color="red", weight=0]; 306[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];306 -> 396[label="",style="dashed", color="magenta", weight=3]; 306 -> 397[label="",style="dashed", color="magenta", weight=3]; 307 -> 161[label="",style="dashed", color="red", weight=0]; 307[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];307 -> 398[label="",style="dashed", color="magenta", weight=3]; 307 -> 399[label="",style="dashed", color="magenta", weight=3]; 308 -> 162[label="",style="dashed", color="red", weight=0]; 308[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];308 -> 400[label="",style="dashed", color="magenta", weight=3]; 308 -> 401[label="",style="dashed", color="magenta", weight=3]; 309 -> 163[label="",style="dashed", color="red", weight=0]; 309[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];309 -> 402[label="",style="dashed", color="magenta", weight=3]; 309 -> 403[label="",style="dashed", color="magenta", weight=3]; 310 -> 164[label="",style="dashed", color="red", weight=0]; 310[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];310 -> 404[label="",style="dashed", color="magenta", weight=3]; 310 -> 405[label="",style="dashed", color="magenta", weight=3]; 311 -> 165[label="",style="dashed", color="red", weight=0]; 311[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];311 -> 406[label="",style="dashed", color="magenta", weight=3]; 311 -> 407[label="",style="dashed", color="magenta", weight=3]; 312 -> 166[label="",style="dashed", color="red", weight=0]; 312[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];312 -> 408[label="",style="dashed", color="magenta", weight=3]; 312 -> 409[label="",style="dashed", color="magenta", weight=3]; 313 -> 167[label="",style="dashed", color="red", weight=0]; 313[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];313 -> 410[label="",style="dashed", color="magenta", weight=3]; 313 -> 411[label="",style="dashed", color="magenta", weight=3]; 314 -> 168[label="",style="dashed", color="red", weight=0]; 314[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];314 -> 412[label="",style="dashed", color="magenta", weight=3]; 314 -> 413[label="",style="dashed", color="magenta", weight=3]; 315 -> 169[label="",style="dashed", color="red", weight=0]; 315[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];315 -> 414[label="",style="dashed", color="magenta", weight=3]; 315 -> 415[label="",style="dashed", color="magenta", weight=3]; 316 -> 170[label="",style="dashed", color="red", weight=0]; 316[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];316 -> 416[label="",style="dashed", color="magenta", weight=3]; 316 -> 417[label="",style="dashed", color="magenta", weight=3]; 421[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2943[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 433[label="",style="solid", color="blue", weight=3]; 2944[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 434[label="",style="solid", color="blue", weight=3]; 2945[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 435[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 436[label="",style="solid", color="blue", weight=3]; 2947[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 437[label="",style="solid", color="blue", weight=3]; 2948[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 438[label="",style="solid", color="blue", weight=3]; 2949[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 439[label="",style="solid", color="blue", weight=3]; 2950[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 440[label="",style="solid", color="blue", weight=3]; 2951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 441[label="",style="solid", color="blue", weight=3]; 2952[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 442[label="",style="solid", color="blue", weight=3]; 2953[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 443[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 444[label="",style="solid", color="blue", weight=3]; 2955[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 445[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 446[label="",style="solid", color="blue", weight=3]; 422 -> 158[label="",style="dashed", color="red", weight=0]; 422[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];422 -> 447[label="",style="dashed", color="magenta", weight=3]; 422 -> 448[label="",style="dashed", color="magenta", weight=3]; 420[label="xuu58 && xuu59",fontsize=16,color="burlywood",shape="triangle"];2957[label="xuu58/False",fontsize=10,color="white",style="solid",shape="box"];420 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 449[label="",style="solid", color="burlywood", weight=3]; 2958[label="xuu58/True",fontsize=10,color="white",style="solid",shape="box"];420 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 450[label="",style="solid", color="burlywood", weight=3]; 328[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];2959[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];328 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 451[label="",style="solid", color="burlywood", weight=3]; 2960[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];328 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 452[label="",style="solid", color="burlywood", weight=3]; 423[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2961[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 453[label="",style="solid", color="blue", weight=3]; 2962[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 454[label="",style="solid", color="blue", weight=3]; 2963[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 455[label="",style="solid", color="blue", weight=3]; 2964[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 456[label="",style="solid", color="blue", weight=3]; 2965[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 457[label="",style="solid", color="blue", weight=3]; 2966[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 458[label="",style="solid", color="blue", weight=3]; 2967[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 459[label="",style="solid", color="blue", weight=3]; 2968[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 460[label="",style="solid", color="blue", weight=3]; 2969[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 461[label="",style="solid", color="blue", weight=3]; 2970[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 462[label="",style="solid", color="blue", weight=3]; 2971[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 463[label="",style="solid", color="blue", weight=3]; 2972[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 464[label="",style="solid", color="blue", weight=3]; 2973[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 465[label="",style="solid", color="blue", weight=3]; 2974[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 466[label="",style="solid", color="blue", weight=3]; 424 -> 420[label="",style="dashed", color="red", weight=0]; 424[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];424 -> 467[label="",style="dashed", color="magenta", weight=3]; 424 -> 468[label="",style="dashed", color="magenta", weight=3]; 329[label="xuu6000",fontsize=16,color="green",shape="box"];330[label="xuu3110000",fontsize=16,color="green",shape="box"];425[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2975[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];425 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 469[label="",style="solid", color="blue", weight=3]; 2976[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];425 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 470[label="",style="solid", color="blue", weight=3]; 426[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];2977[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];426 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 471[label="",style="solid", color="blue", weight=3]; 2978[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];426 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 472[label="",style="solid", color="blue", weight=3]; 427[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2979[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 473[label="",style="solid", color="blue", weight=3]; 2980[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 474[label="",style="solid", color="blue", weight=3]; 2981[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 475[label="",style="solid", color="blue", weight=3]; 2982[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 476[label="",style="solid", color="blue", weight=3]; 2983[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 477[label="",style="solid", color="blue", weight=3]; 2984[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 478[label="",style="solid", color="blue", weight=3]; 2985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 479[label="",style="solid", color="blue", weight=3]; 2986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 480[label="",style="solid", color="blue", weight=3]; 2987[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 481[label="",style="solid", color="blue", weight=3]; 2988[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 482[label="",style="solid", color="blue", weight=3]; 2989[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 483[label="",style="solid", color="blue", weight=3]; 2990[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 484[label="",style="solid", color="blue", weight=3]; 2991[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 485[label="",style="solid", color="blue", weight=3]; 2992[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 486[label="",style="solid", color="blue", weight=3]; 428[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];2993[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 487[label="",style="solid", color="blue", weight=3]; 2994[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 488[label="",style="solid", color="blue", weight=3]; 2995[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 489[label="",style="solid", color="blue", weight=3]; 2996[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 490[label="",style="solid", color="blue", weight=3]; 2997[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 491[label="",style="solid", color="blue", weight=3]; 2998[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 492[label="",style="solid", color="blue", weight=3]; 2999[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 493[label="",style="solid", color="blue", weight=3]; 3000[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 494[label="",style="solid", color="blue", weight=3]; 3001[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 495[label="",style="solid", color="blue", weight=3]; 3002[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 496[label="",style="solid", color="blue", weight=3]; 3003[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3003[label="",style="solid", color="blue", weight=9]; 3003 -> 497[label="",style="solid", color="blue", weight=3]; 3004[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 498[label="",style="solid", color="blue", weight=3]; 3005[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 499[label="",style="solid", color="blue", weight=3]; 3006[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 500[label="",style="solid", color="blue", weight=3]; 331[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3007[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];331 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 501[label="",style="solid", color="burlywood", weight=3]; 3008[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];331 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 502[label="",style="solid", color="burlywood", weight=3]; 332[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];332 -> 503[label="",style="solid", color="black", weight=3]; 333[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3009[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];333 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 504[label="",style="solid", color="burlywood", weight=3]; 3010[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];333 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 505[label="",style="solid", color="burlywood", weight=3]; 334[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3011[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];334 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 506[label="",style="solid", color="burlywood", weight=3]; 3012[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];334 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 507[label="",style="solid", color="burlywood", weight=3]; 335[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];335 -> 508[label="",style="solid", color="black", weight=3]; 336[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3013[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];336 -> 3013[label="",style="solid", color="burlywood", weight=9]; 3013 -> 509[label="",style="solid", color="burlywood", weight=3]; 3014[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];336 -> 3014[label="",style="solid", color="burlywood", weight=9]; 3014 -> 510[label="",style="solid", color="burlywood", weight=3]; 337[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3015[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];337 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 511[label="",style="solid", color="burlywood", weight=3]; 3016[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];337 -> 3016[label="",style="solid", color="burlywood", weight=9]; 3016 -> 512[label="",style="solid", color="burlywood", weight=3]; 338[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3017[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];338 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 513[label="",style="solid", color="burlywood", weight=3]; 3018[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];338 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 514[label="",style="solid", color="burlywood", weight=3]; 339 -> 167[label="",style="dashed", color="red", weight=0]; 339[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];339 -> 515[label="",style="dashed", color="magenta", weight=3]; 339 -> 516[label="",style="dashed", color="magenta", weight=3]; 340 -> 157[label="",style="dashed", color="red", weight=0]; 340[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];340 -> 517[label="",style="dashed", color="magenta", weight=3]; 340 -> 518[label="",style="dashed", color="magenta", weight=3]; 341 -> 158[label="",style="dashed", color="red", weight=0]; 341[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];341 -> 519[label="",style="dashed", color="magenta", weight=3]; 341 -> 520[label="",style="dashed", color="magenta", weight=3]; 342 -> 159[label="",style="dashed", color="red", weight=0]; 342[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];342 -> 521[label="",style="dashed", color="magenta", weight=3]; 342 -> 522[label="",style="dashed", color="magenta", weight=3]; 343 -> 160[label="",style="dashed", color="red", weight=0]; 343[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];343 -> 523[label="",style="dashed", color="magenta", weight=3]; 343 -> 524[label="",style="dashed", color="magenta", weight=3]; 344 -> 161[label="",style="dashed", color="red", weight=0]; 344[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];344 -> 525[label="",style="dashed", color="magenta", weight=3]; 344 -> 526[label="",style="dashed", color="magenta", weight=3]; 345 -> 162[label="",style="dashed", color="red", weight=0]; 345[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];345 -> 527[label="",style="dashed", color="magenta", weight=3]; 345 -> 528[label="",style="dashed", color="magenta", weight=3]; 346 -> 163[label="",style="dashed", color="red", weight=0]; 346[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];346 -> 529[label="",style="dashed", color="magenta", weight=3]; 346 -> 530[label="",style="dashed", color="magenta", weight=3]; 347 -> 164[label="",style="dashed", color="red", weight=0]; 347[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];347 -> 531[label="",style="dashed", color="magenta", weight=3]; 347 -> 532[label="",style="dashed", color="magenta", weight=3]; 348 -> 165[label="",style="dashed", color="red", weight=0]; 348[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];348 -> 533[label="",style="dashed", color="magenta", weight=3]; 348 -> 534[label="",style="dashed", color="magenta", weight=3]; 349 -> 166[label="",style="dashed", color="red", weight=0]; 349[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];349 -> 535[label="",style="dashed", color="magenta", weight=3]; 349 -> 536[label="",style="dashed", color="magenta", weight=3]; 350 -> 167[label="",style="dashed", color="red", weight=0]; 350[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];350 -> 537[label="",style="dashed", color="magenta", weight=3]; 350 -> 538[label="",style="dashed", color="magenta", weight=3]; 351 -> 168[label="",style="dashed", color="red", weight=0]; 351[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];351 -> 539[label="",style="dashed", color="magenta", weight=3]; 351 -> 540[label="",style="dashed", color="magenta", weight=3]; 352 -> 169[label="",style="dashed", color="red", weight=0]; 352[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];352 -> 541[label="",style="dashed", color="magenta", weight=3]; 352 -> 542[label="",style="dashed", color="magenta", weight=3]; 353 -> 170[label="",style="dashed", color="red", weight=0]; 353[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];353 -> 543[label="",style="dashed", color="magenta", weight=3]; 353 -> 544[label="",style="dashed", color="magenta", weight=3]; 354 -> 157[label="",style="dashed", color="red", weight=0]; 354[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];354 -> 545[label="",style="dashed", color="magenta", weight=3]; 354 -> 546[label="",style="dashed", color="magenta", weight=3]; 355 -> 158[label="",style="dashed", color="red", weight=0]; 355[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];355 -> 547[label="",style="dashed", color="magenta", weight=3]; 355 -> 548[label="",style="dashed", color="magenta", weight=3]; 356 -> 159[label="",style="dashed", color="red", weight=0]; 356[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];356 -> 549[label="",style="dashed", color="magenta", weight=3]; 356 -> 550[label="",style="dashed", color="magenta", weight=3]; 357 -> 160[label="",style="dashed", color="red", weight=0]; 357[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];357 -> 551[label="",style="dashed", color="magenta", weight=3]; 357 -> 552[label="",style="dashed", color="magenta", weight=3]; 358 -> 161[label="",style="dashed", color="red", weight=0]; 358[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];358 -> 553[label="",style="dashed", color="magenta", weight=3]; 358 -> 554[label="",style="dashed", color="magenta", weight=3]; 359 -> 162[label="",style="dashed", color="red", weight=0]; 359[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];359 -> 555[label="",style="dashed", color="magenta", weight=3]; 359 -> 556[label="",style="dashed", color="magenta", weight=3]; 360 -> 163[label="",style="dashed", color="red", weight=0]; 360[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];360 -> 557[label="",style="dashed", color="magenta", weight=3]; 360 -> 558[label="",style="dashed", color="magenta", weight=3]; 361 -> 164[label="",style="dashed", color="red", weight=0]; 361[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];361 -> 559[label="",style="dashed", color="magenta", weight=3]; 361 -> 560[label="",style="dashed", color="magenta", weight=3]; 362 -> 165[label="",style="dashed", color="red", weight=0]; 362[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];362 -> 561[label="",style="dashed", color="magenta", weight=3]; 362 -> 562[label="",style="dashed", color="magenta", weight=3]; 363 -> 166[label="",style="dashed", color="red", weight=0]; 363[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];363 -> 563[label="",style="dashed", color="magenta", weight=3]; 363 -> 564[label="",style="dashed", color="magenta", weight=3]; 364 -> 167[label="",style="dashed", color="red", weight=0]; 364[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];364 -> 565[label="",style="dashed", color="magenta", weight=3]; 364 -> 566[label="",style="dashed", color="magenta", weight=3]; 365 -> 168[label="",style="dashed", color="red", weight=0]; 365[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];365 -> 567[label="",style="dashed", color="magenta", weight=3]; 365 -> 568[label="",style="dashed", color="magenta", weight=3]; 366 -> 169[label="",style="dashed", color="red", weight=0]; 366[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];366 -> 569[label="",style="dashed", color="magenta", weight=3]; 366 -> 570[label="",style="dashed", color="magenta", weight=3]; 367 -> 170[label="",style="dashed", color="red", weight=0]; 367[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];367 -> 571[label="",style="dashed", color="magenta", weight=3]; 367 -> 572[label="",style="dashed", color="magenta", weight=3]; 368 -> 167[label="",style="dashed", color="red", weight=0]; 368[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];368 -> 573[label="",style="dashed", color="magenta", weight=3]; 368 -> 574[label="",style="dashed", color="magenta", weight=3]; 1257[label="compare2 xuu49 xuu51 False",fontsize=16,color="black",shape="box"];1257 -> 1284[label="",style="solid", color="black", weight=3]; 1258[label="compare2 xuu49 xuu51 True",fontsize=16,color="black",shape="box"];1258 -> 1285[label="",style="solid", color="black", weight=3]; 1259 -> 157[label="",style="dashed", color="red", weight=0]; 1259[label="xuu37 == xuu39",fontsize=16,color="magenta"];1259 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1260 -> 158[label="",style="dashed", color="red", weight=0]; 1260[label="xuu37 == xuu39",fontsize=16,color="magenta"];1260 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1261 -> 159[label="",style="dashed", color="red", weight=0]; 1261[label="xuu37 == xuu39",fontsize=16,color="magenta"];1261 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1262 -> 160[label="",style="dashed", color="red", weight=0]; 1262[label="xuu37 == xuu39",fontsize=16,color="magenta"];1262 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1263 -> 161[label="",style="dashed", color="red", weight=0]; 1263[label="xuu37 == xuu39",fontsize=16,color="magenta"];1263 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1264 -> 162[label="",style="dashed", color="red", weight=0]; 1264[label="xuu37 == xuu39",fontsize=16,color="magenta"];1264 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1265 -> 163[label="",style="dashed", color="red", weight=0]; 1265[label="xuu37 == xuu39",fontsize=16,color="magenta"];1265 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1266 -> 164[label="",style="dashed", color="red", weight=0]; 1266[label="xuu37 == xuu39",fontsize=16,color="magenta"];1266 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1267 -> 165[label="",style="dashed", color="red", weight=0]; 1267[label="xuu37 == xuu39",fontsize=16,color="magenta"];1267 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1268 -> 166[label="",style="dashed", color="red", weight=0]; 1268[label="xuu37 == xuu39",fontsize=16,color="magenta"];1268 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1269 -> 167[label="",style="dashed", color="red", weight=0]; 1269[label="xuu37 == xuu39",fontsize=16,color="magenta"];1269 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1270 -> 168[label="",style="dashed", color="red", weight=0]; 1270[label="xuu37 == xuu39",fontsize=16,color="magenta"];1270 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1271 -> 169[label="",style="dashed", color="red", weight=0]; 1271[label="xuu37 == xuu39",fontsize=16,color="magenta"];1271 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1272 -> 170[label="",style="dashed", color="red", weight=0]; 1272[label="xuu37 == xuu39",fontsize=16,color="magenta"];1272 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1313[label="",style="dashed", color="magenta", weight=3]; 385[label="compare3 (xuu25,xuu26) (xuu19,xuu20)",fontsize=16,color="black",shape="box"];385 -> 605[label="",style="solid", color="black", weight=3]; 386[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];386 -> 606[label="",style="solid", color="black", weight=3]; 387[label="xuu23",fontsize=16,color="green",shape="box"];388 -> 35[label="",style="dashed", color="red", weight=0]; 388[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25,xuu26) xuu27",fontsize=16,color="magenta"];388 -> 607[label="",style="dashed", color="magenta", weight=3]; 388 -> 608[label="",style="dashed", color="magenta", weight=3]; 388 -> 609[label="",style="dashed", color="magenta", weight=3]; 611[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];611 -> 613[label="",style="solid", color="black", weight=3]; 610[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu60",fontsize=16,color="burlywood",shape="triangle"];3019[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];610 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 614[label="",style="solid", color="burlywood", weight=3]; 3020[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];610 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 615[label="",style="solid", color="burlywood", weight=3]; 390[label="xuu6000",fontsize=16,color="green",shape="box"];391[label="xuu3110000",fontsize=16,color="green",shape="box"];392[label="xuu6000",fontsize=16,color="green",shape="box"];393[label="xuu3110000",fontsize=16,color="green",shape="box"];394[label="xuu6000",fontsize=16,color="green",shape="box"];395[label="xuu3110000",fontsize=16,color="green",shape="box"];396[label="xuu6000",fontsize=16,color="green",shape="box"];397[label="xuu3110000",fontsize=16,color="green",shape="box"];398[label="xuu6000",fontsize=16,color="green",shape="box"];399[label="xuu3110000",fontsize=16,color="green",shape="box"];400[label="xuu6000",fontsize=16,color="green",shape="box"];401[label="xuu3110000",fontsize=16,color="green",shape="box"];402[label="xuu6000",fontsize=16,color="green",shape="box"];403[label="xuu3110000",fontsize=16,color="green",shape="box"];404[label="xuu6000",fontsize=16,color="green",shape="box"];405[label="xuu3110000",fontsize=16,color="green",shape="box"];406[label="xuu6000",fontsize=16,color="green",shape="box"];407[label="xuu3110000",fontsize=16,color="green",shape="box"];408[label="xuu6000",fontsize=16,color="green",shape="box"];409[label="xuu3110000",fontsize=16,color="green",shape="box"];410[label="xuu6000",fontsize=16,color="green",shape="box"];411[label="xuu3110000",fontsize=16,color="green",shape="box"];412[label="xuu6000",fontsize=16,color="green",shape="box"];413[label="xuu3110000",fontsize=16,color="green",shape="box"];414[label="xuu6000",fontsize=16,color="green",shape="box"];415[label="xuu3110000",fontsize=16,color="green",shape="box"];416[label="xuu6000",fontsize=16,color="green",shape="box"];417[label="xuu3110000",fontsize=16,color="green",shape="box"];433 -> 157[label="",style="dashed", color="red", weight=0]; 433[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];433 -> 616[label="",style="dashed", color="magenta", weight=3]; 433 -> 617[label="",style="dashed", color="magenta", weight=3]; 434 -> 158[label="",style="dashed", color="red", weight=0]; 434[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];434 -> 618[label="",style="dashed", color="magenta", weight=3]; 434 -> 619[label="",style="dashed", color="magenta", weight=3]; 435 -> 159[label="",style="dashed", color="red", weight=0]; 435[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];435 -> 620[label="",style="dashed", color="magenta", weight=3]; 435 -> 621[label="",style="dashed", color="magenta", weight=3]; 436 -> 160[label="",style="dashed", color="red", weight=0]; 436[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];436 -> 622[label="",style="dashed", color="magenta", weight=3]; 436 -> 623[label="",style="dashed", color="magenta", weight=3]; 437 -> 161[label="",style="dashed", color="red", weight=0]; 437[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];437 -> 624[label="",style="dashed", color="magenta", weight=3]; 437 -> 625[label="",style="dashed", color="magenta", weight=3]; 438 -> 162[label="",style="dashed", color="red", weight=0]; 438[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];438 -> 626[label="",style="dashed", color="magenta", weight=3]; 438 -> 627[label="",style="dashed", color="magenta", weight=3]; 439 -> 163[label="",style="dashed", color="red", weight=0]; 439[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];439 -> 628[label="",style="dashed", color="magenta", weight=3]; 439 -> 629[label="",style="dashed", color="magenta", weight=3]; 440 -> 164[label="",style="dashed", color="red", weight=0]; 440[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];440 -> 630[label="",style="dashed", color="magenta", weight=3]; 440 -> 631[label="",style="dashed", color="magenta", weight=3]; 441 -> 165[label="",style="dashed", color="red", weight=0]; 441[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];441 -> 632[label="",style="dashed", color="magenta", weight=3]; 441 -> 633[label="",style="dashed", color="magenta", weight=3]; 442 -> 166[label="",style="dashed", color="red", weight=0]; 442[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];442 -> 634[label="",style="dashed", color="magenta", weight=3]; 442 -> 635[label="",style="dashed", color="magenta", weight=3]; 443 -> 167[label="",style="dashed", color="red", weight=0]; 443[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];443 -> 636[label="",style="dashed", color="magenta", weight=3]; 443 -> 637[label="",style="dashed", color="magenta", weight=3]; 444 -> 168[label="",style="dashed", color="red", weight=0]; 444[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];444 -> 638[label="",style="dashed", color="magenta", weight=3]; 444 -> 639[label="",style="dashed", color="magenta", weight=3]; 445 -> 169[label="",style="dashed", color="red", weight=0]; 445[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];445 -> 640[label="",style="dashed", color="magenta", weight=3]; 445 -> 641[label="",style="dashed", color="magenta", weight=3]; 446 -> 170[label="",style="dashed", color="red", weight=0]; 446[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];446 -> 642[label="",style="dashed", color="magenta", weight=3]; 446 -> 643[label="",style="dashed", color="magenta", weight=3]; 447[label="xuu6001",fontsize=16,color="green",shape="box"];448[label="xuu3110001",fontsize=16,color="green",shape="box"];449[label="False && xuu59",fontsize=16,color="black",shape="box"];449 -> 644[label="",style="solid", color="black", weight=3]; 450[label="True && xuu59",fontsize=16,color="black",shape="box"];450 -> 645[label="",style="solid", color="black", weight=3]; 451[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3021[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];451 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 646[label="",style="solid", color="burlywood", weight=3]; 3022[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];451 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 647[label="",style="solid", color="burlywood", weight=3]; 452[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3023[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3023[label="",style="solid", color="burlywood", weight=9]; 3023 -> 648[label="",style="solid", color="burlywood", weight=3]; 3024[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];452 -> 3024[label="",style="solid", color="burlywood", weight=9]; 3024 -> 649[label="",style="solid", color="burlywood", weight=3]; 453 -> 157[label="",style="dashed", color="red", weight=0]; 453[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];453 -> 650[label="",style="dashed", color="magenta", weight=3]; 453 -> 651[label="",style="dashed", color="magenta", weight=3]; 454 -> 158[label="",style="dashed", color="red", weight=0]; 454[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];454 -> 652[label="",style="dashed", color="magenta", weight=3]; 454 -> 653[label="",style="dashed", color="magenta", weight=3]; 455 -> 159[label="",style="dashed", color="red", weight=0]; 455[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];455 -> 654[label="",style="dashed", color="magenta", weight=3]; 455 -> 655[label="",style="dashed", color="magenta", weight=3]; 456 -> 160[label="",style="dashed", color="red", weight=0]; 456[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];456 -> 656[label="",style="dashed", color="magenta", weight=3]; 456 -> 657[label="",style="dashed", color="magenta", weight=3]; 457 -> 161[label="",style="dashed", color="red", weight=0]; 457[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];457 -> 658[label="",style="dashed", color="magenta", weight=3]; 457 -> 659[label="",style="dashed", color="magenta", weight=3]; 458 -> 162[label="",style="dashed", color="red", weight=0]; 458[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];458 -> 660[label="",style="dashed", color="magenta", weight=3]; 458 -> 661[label="",style="dashed", color="magenta", weight=3]; 459 -> 163[label="",style="dashed", color="red", weight=0]; 459[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];459 -> 662[label="",style="dashed", color="magenta", weight=3]; 459 -> 663[label="",style="dashed", color="magenta", weight=3]; 460 -> 164[label="",style="dashed", color="red", weight=0]; 460[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];460 -> 664[label="",style="dashed", color="magenta", weight=3]; 460 -> 665[label="",style="dashed", color="magenta", weight=3]; 461 -> 165[label="",style="dashed", color="red", weight=0]; 461[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];461 -> 666[label="",style="dashed", color="magenta", weight=3]; 461 -> 667[label="",style="dashed", color="magenta", weight=3]; 462 -> 166[label="",style="dashed", color="red", weight=0]; 462[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];462 -> 668[label="",style="dashed", color="magenta", weight=3]; 462 -> 669[label="",style="dashed", color="magenta", weight=3]; 463 -> 167[label="",style="dashed", color="red", weight=0]; 463[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];463 -> 670[label="",style="dashed", color="magenta", weight=3]; 463 -> 671[label="",style="dashed", color="magenta", weight=3]; 464 -> 168[label="",style="dashed", color="red", weight=0]; 464[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];464 -> 672[label="",style="dashed", color="magenta", weight=3]; 464 -> 673[label="",style="dashed", color="magenta", weight=3]; 465 -> 169[label="",style="dashed", color="red", weight=0]; 465[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];465 -> 674[label="",style="dashed", color="magenta", weight=3]; 465 -> 675[label="",style="dashed", color="magenta", weight=3]; 466 -> 170[label="",style="dashed", color="red", weight=0]; 466[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];466 -> 676[label="",style="dashed", color="magenta", weight=3]; 466 -> 677[label="",style="dashed", color="magenta", weight=3]; 467[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3025[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 678[label="",style="solid", color="blue", weight=3]; 3026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 679[label="",style="solid", color="blue", weight=3]; 3027[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 680[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 681[label="",style="solid", color="blue", weight=3]; 3029[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 682[label="",style="solid", color="blue", weight=3]; 3030[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 683[label="",style="solid", color="blue", weight=3]; 3031[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 684[label="",style="solid", color="blue", weight=3]; 3032[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 685[label="",style="solid", color="blue", weight=3]; 3033[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 686[label="",style="solid", color="blue", weight=3]; 3034[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 687[label="",style="solid", color="blue", weight=3]; 3035[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 688[label="",style="solid", color="blue", weight=3]; 3036[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 689[label="",style="solid", color="blue", weight=3]; 3037[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 690[label="",style="solid", color="blue", weight=3]; 3038[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];467 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 691[label="",style="solid", color="blue", weight=3]; 468[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];3039[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 692[label="",style="solid", color="blue", weight=3]; 3040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 693[label="",style="solid", color="blue", weight=3]; 3041[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 694[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 695[label="",style="solid", color="blue", weight=3]; 3043[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 696[label="",style="solid", color="blue", weight=3]; 3044[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 697[label="",style="solid", color="blue", weight=3]; 3045[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 698[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 699[label="",style="solid", color="blue", weight=3]; 3047[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 700[label="",style="solid", color="blue", weight=3]; 3048[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 701[label="",style="solid", color="blue", weight=3]; 3049[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 702[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 703[label="",style="solid", color="blue", weight=3]; 3051[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 704[label="",style="solid", color="blue", weight=3]; 3052[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 705[label="",style="solid", color="blue", weight=3]; 469 -> 164[label="",style="dashed", color="red", weight=0]; 469[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];469 -> 706[label="",style="dashed", color="magenta", weight=3]; 469 -> 707[label="",style="dashed", color="magenta", weight=3]; 470 -> 167[label="",style="dashed", color="red", weight=0]; 470[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];470 -> 708[label="",style="dashed", color="magenta", weight=3]; 470 -> 709[label="",style="dashed", color="magenta", weight=3]; 471 -> 164[label="",style="dashed", color="red", weight=0]; 471[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];471 -> 710[label="",style="dashed", color="magenta", weight=3]; 471 -> 711[label="",style="dashed", color="magenta", weight=3]; 472 -> 167[label="",style="dashed", color="red", weight=0]; 472[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];472 -> 712[label="",style="dashed", color="magenta", weight=3]; 472 -> 713[label="",style="dashed", color="magenta", weight=3]; 473 -> 157[label="",style="dashed", color="red", weight=0]; 473[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];473 -> 714[label="",style="dashed", color="magenta", weight=3]; 473 -> 715[label="",style="dashed", color="magenta", weight=3]; 474 -> 158[label="",style="dashed", color="red", weight=0]; 474[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];474 -> 716[label="",style="dashed", color="magenta", weight=3]; 474 -> 717[label="",style="dashed", color="magenta", weight=3]; 475 -> 159[label="",style="dashed", color="red", weight=0]; 475[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];475 -> 718[label="",style="dashed", color="magenta", weight=3]; 475 -> 719[label="",style="dashed", color="magenta", weight=3]; 476 -> 160[label="",style="dashed", color="red", weight=0]; 476[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];476 -> 720[label="",style="dashed", color="magenta", weight=3]; 476 -> 721[label="",style="dashed", color="magenta", weight=3]; 477 -> 161[label="",style="dashed", color="red", weight=0]; 477[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];477 -> 722[label="",style="dashed", color="magenta", weight=3]; 477 -> 723[label="",style="dashed", color="magenta", weight=3]; 478 -> 162[label="",style="dashed", color="red", weight=0]; 478[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];478 -> 724[label="",style="dashed", color="magenta", weight=3]; 478 -> 725[label="",style="dashed", color="magenta", weight=3]; 479 -> 163[label="",style="dashed", color="red", weight=0]; 479[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];479 -> 726[label="",style="dashed", color="magenta", weight=3]; 479 -> 727[label="",style="dashed", color="magenta", weight=3]; 480 -> 164[label="",style="dashed", color="red", weight=0]; 480[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];480 -> 728[label="",style="dashed", color="magenta", weight=3]; 480 -> 729[label="",style="dashed", color="magenta", weight=3]; 481 -> 165[label="",style="dashed", color="red", weight=0]; 481[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];481 -> 730[label="",style="dashed", color="magenta", weight=3]; 481 -> 731[label="",style="dashed", color="magenta", weight=3]; 482 -> 166[label="",style="dashed", color="red", weight=0]; 482[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];482 -> 732[label="",style="dashed", color="magenta", weight=3]; 482 -> 733[label="",style="dashed", color="magenta", weight=3]; 483 -> 167[label="",style="dashed", color="red", weight=0]; 483[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];483 -> 734[label="",style="dashed", color="magenta", weight=3]; 483 -> 735[label="",style="dashed", color="magenta", weight=3]; 484 -> 168[label="",style="dashed", color="red", weight=0]; 484[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];484 -> 736[label="",style="dashed", color="magenta", weight=3]; 484 -> 737[label="",style="dashed", color="magenta", weight=3]; 485 -> 169[label="",style="dashed", color="red", weight=0]; 485[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];485 -> 738[label="",style="dashed", color="magenta", weight=3]; 485 -> 739[label="",style="dashed", color="magenta", weight=3]; 486 -> 170[label="",style="dashed", color="red", weight=0]; 486[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];486 -> 740[label="",style="dashed", color="magenta", weight=3]; 486 -> 741[label="",style="dashed", color="magenta", weight=3]; 487 -> 157[label="",style="dashed", color="red", weight=0]; 487[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];487 -> 742[label="",style="dashed", color="magenta", weight=3]; 487 -> 743[label="",style="dashed", color="magenta", weight=3]; 488 -> 158[label="",style="dashed", color="red", weight=0]; 488[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];488 -> 744[label="",style="dashed", color="magenta", weight=3]; 488 -> 745[label="",style="dashed", color="magenta", weight=3]; 489 -> 159[label="",style="dashed", color="red", weight=0]; 489[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];489 -> 746[label="",style="dashed", color="magenta", weight=3]; 489 -> 747[label="",style="dashed", color="magenta", weight=3]; 490 -> 160[label="",style="dashed", color="red", weight=0]; 490[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];490 -> 748[label="",style="dashed", color="magenta", weight=3]; 490 -> 749[label="",style="dashed", color="magenta", weight=3]; 491 -> 161[label="",style="dashed", color="red", weight=0]; 491[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];491 -> 750[label="",style="dashed", color="magenta", weight=3]; 491 -> 751[label="",style="dashed", color="magenta", weight=3]; 492 -> 162[label="",style="dashed", color="red", weight=0]; 492[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];492 -> 752[label="",style="dashed", color="magenta", weight=3]; 492 -> 753[label="",style="dashed", color="magenta", weight=3]; 493 -> 163[label="",style="dashed", color="red", weight=0]; 493[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];493 -> 754[label="",style="dashed", color="magenta", weight=3]; 493 -> 755[label="",style="dashed", color="magenta", weight=3]; 494 -> 164[label="",style="dashed", color="red", weight=0]; 494[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];494 -> 756[label="",style="dashed", color="magenta", weight=3]; 494 -> 757[label="",style="dashed", color="magenta", weight=3]; 495 -> 165[label="",style="dashed", color="red", weight=0]; 495[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];495 -> 758[label="",style="dashed", color="magenta", weight=3]; 495 -> 759[label="",style="dashed", color="magenta", weight=3]; 496 -> 166[label="",style="dashed", color="red", weight=0]; 496[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];496 -> 760[label="",style="dashed", color="magenta", weight=3]; 496 -> 761[label="",style="dashed", color="magenta", weight=3]; 497 -> 167[label="",style="dashed", color="red", weight=0]; 497[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];497 -> 762[label="",style="dashed", color="magenta", weight=3]; 497 -> 763[label="",style="dashed", color="magenta", weight=3]; 498 -> 168[label="",style="dashed", color="red", weight=0]; 498[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];498 -> 764[label="",style="dashed", color="magenta", weight=3]; 498 -> 765[label="",style="dashed", color="magenta", weight=3]; 499 -> 169[label="",style="dashed", color="red", weight=0]; 499[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];499 -> 766[label="",style="dashed", color="magenta", weight=3]; 499 -> 767[label="",style="dashed", color="magenta", weight=3]; 500 -> 170[label="",style="dashed", color="red", weight=0]; 500[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];500 -> 768[label="",style="dashed", color="magenta", weight=3]; 500 -> 769[label="",style="dashed", color="magenta", weight=3]; 501[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];501 -> 770[label="",style="solid", color="black", weight=3]; 502[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];502 -> 771[label="",style="solid", color="black", weight=3]; 503[label="False",fontsize=16,color="green",shape="box"];504[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];504 -> 772[label="",style="solid", color="black", weight=3]; 505[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];505 -> 773[label="",style="solid", color="black", weight=3]; 506[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];506 -> 774[label="",style="solid", color="black", weight=3]; 507[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];507 -> 775[label="",style="solid", color="black", weight=3]; 508[label="False",fontsize=16,color="green",shape="box"];509[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];509 -> 776[label="",style="solid", color="black", weight=3]; 510[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];510 -> 777[label="",style="solid", color="black", weight=3]; 511[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];511 -> 778[label="",style="solid", color="black", weight=3]; 512[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];512 -> 779[label="",style="solid", color="black", weight=3]; 513[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];513 -> 780[label="",style="solid", color="black", weight=3]; 514[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];514 -> 781[label="",style="solid", color="black", weight=3]; 515[label="xuu3110001 * xuu6000",fontsize=16,color="black",shape="triangle"];515 -> 782[label="",style="solid", color="black", weight=3]; 516 -> 515[label="",style="dashed", color="red", weight=0]; 516[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];516 -> 783[label="",style="dashed", color="magenta", weight=3]; 516 -> 784[label="",style="dashed", color="magenta", weight=3]; 517[label="xuu6000",fontsize=16,color="green",shape="box"];518[label="xuu3110000",fontsize=16,color="green",shape="box"];519[label="xuu6000",fontsize=16,color="green",shape="box"];520[label="xuu3110000",fontsize=16,color="green",shape="box"];521[label="xuu6000",fontsize=16,color="green",shape="box"];522[label="xuu3110000",fontsize=16,color="green",shape="box"];523[label="xuu6000",fontsize=16,color="green",shape="box"];524[label="xuu3110000",fontsize=16,color="green",shape="box"];525[label="xuu6000",fontsize=16,color="green",shape="box"];526[label="xuu3110000",fontsize=16,color="green",shape="box"];527[label="xuu6000",fontsize=16,color="green",shape="box"];528[label="xuu3110000",fontsize=16,color="green",shape="box"];529[label="xuu6000",fontsize=16,color="green",shape="box"];530[label="xuu3110000",fontsize=16,color="green",shape="box"];531[label="xuu6000",fontsize=16,color="green",shape="box"];532[label="xuu3110000",fontsize=16,color="green",shape="box"];533[label="xuu6000",fontsize=16,color="green",shape="box"];534[label="xuu3110000",fontsize=16,color="green",shape="box"];535[label="xuu6000",fontsize=16,color="green",shape="box"];536[label="xuu3110000",fontsize=16,color="green",shape="box"];537[label="xuu6000",fontsize=16,color="green",shape="box"];538[label="xuu3110000",fontsize=16,color="green",shape="box"];539[label="xuu6000",fontsize=16,color="green",shape="box"];540[label="xuu3110000",fontsize=16,color="green",shape="box"];541[label="xuu6000",fontsize=16,color="green",shape="box"];542[label="xuu3110000",fontsize=16,color="green",shape="box"];543[label="xuu6000",fontsize=16,color="green",shape="box"];544[label="xuu3110000",fontsize=16,color="green",shape="box"];545[label="xuu6000",fontsize=16,color="green",shape="box"];546[label="xuu3110000",fontsize=16,color="green",shape="box"];547[label="xuu6000",fontsize=16,color="green",shape="box"];548[label="xuu3110000",fontsize=16,color="green",shape="box"];549[label="xuu6000",fontsize=16,color="green",shape="box"];550[label="xuu3110000",fontsize=16,color="green",shape="box"];551[label="xuu6000",fontsize=16,color="green",shape="box"];552[label="xuu3110000",fontsize=16,color="green",shape="box"];553[label="xuu6000",fontsize=16,color="green",shape="box"];554[label="xuu3110000",fontsize=16,color="green",shape="box"];555[label="xuu6000",fontsize=16,color="green",shape="box"];556[label="xuu3110000",fontsize=16,color="green",shape="box"];557[label="xuu6000",fontsize=16,color="green",shape="box"];558[label="xuu3110000",fontsize=16,color="green",shape="box"];559[label="xuu6000",fontsize=16,color="green",shape="box"];560[label="xuu3110000",fontsize=16,color="green",shape="box"];561[label="xuu6000",fontsize=16,color="green",shape="box"];562[label="xuu3110000",fontsize=16,color="green",shape="box"];563[label="xuu6000",fontsize=16,color="green",shape="box"];564[label="xuu3110000",fontsize=16,color="green",shape="box"];565[label="xuu6000",fontsize=16,color="green",shape="box"];566[label="xuu3110000",fontsize=16,color="green",shape="box"];567[label="xuu6000",fontsize=16,color="green",shape="box"];568[label="xuu3110000",fontsize=16,color="green",shape="box"];569[label="xuu6000",fontsize=16,color="green",shape="box"];570[label="xuu3110000",fontsize=16,color="green",shape="box"];571[label="xuu6000",fontsize=16,color="green",shape="box"];572[label="xuu3110000",fontsize=16,color="green",shape="box"];573 -> 515[label="",style="dashed", color="red", weight=0]; 573[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];573 -> 785[label="",style="dashed", color="magenta", weight=3]; 573 -> 786[label="",style="dashed", color="magenta", weight=3]; 574 -> 515[label="",style="dashed", color="red", weight=0]; 574[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];574 -> 787[label="",style="dashed", color="magenta", weight=3]; 574 -> 788[label="",style="dashed", color="magenta", weight=3]; 1284[label="compare1 xuu49 xuu51 (xuu49 <= xuu51)",fontsize=16,color="burlywood",shape="box"];3053[label="xuu49/(xuu490,xuu491)",fontsize=10,color="white",style="solid",shape="box"];1284 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 1328[label="",style="solid", color="burlywood", weight=3]; 1285[label="EQ",fontsize=16,color="green",shape="box"];1286[label="xuu39",fontsize=16,color="green",shape="box"];1287[label="xuu37",fontsize=16,color="green",shape="box"];1288[label="xuu39",fontsize=16,color="green",shape="box"];1289[label="xuu37",fontsize=16,color="green",shape="box"];1290[label="xuu39",fontsize=16,color="green",shape="box"];1291[label="xuu37",fontsize=16,color="green",shape="box"];1292[label="xuu39",fontsize=16,color="green",shape="box"];1293[label="xuu37",fontsize=16,color="green",shape="box"];1294[label="xuu39",fontsize=16,color="green",shape="box"];1295[label="xuu37",fontsize=16,color="green",shape="box"];1296[label="xuu39",fontsize=16,color="green",shape="box"];1297[label="xuu37",fontsize=16,color="green",shape="box"];1298[label="xuu39",fontsize=16,color="green",shape="box"];1299[label="xuu37",fontsize=16,color="green",shape="box"];1300[label="xuu39",fontsize=16,color="green",shape="box"];1301[label="xuu37",fontsize=16,color="green",shape="box"];1302[label="xuu39",fontsize=16,color="green",shape="box"];1303[label="xuu37",fontsize=16,color="green",shape="box"];1304[label="xuu39",fontsize=16,color="green",shape="box"];1305[label="xuu37",fontsize=16,color="green",shape="box"];1306[label="xuu39",fontsize=16,color="green",shape="box"];1307[label="xuu37",fontsize=16,color="green",shape="box"];1308[label="xuu39",fontsize=16,color="green",shape="box"];1309[label="xuu37",fontsize=16,color="green",shape="box"];1310[label="xuu39",fontsize=16,color="green",shape="box"];1311[label="xuu37",fontsize=16,color="green",shape="box"];1312[label="xuu39",fontsize=16,color="green",shape="box"];1313[label="xuu37",fontsize=16,color="green",shape="box"];605 -> 1243[label="",style="dashed", color="red", weight=0]; 605[label="compare2 (xuu25,xuu26) (xuu19,xuu20) ((xuu25,xuu26) == (xuu19,xuu20))",fontsize=16,color="magenta"];605 -> 1253[label="",style="dashed", color="magenta", weight=3]; 605 -> 1254[label="",style="dashed", color="magenta", weight=3]; 605 -> 1255[label="",style="dashed", color="magenta", weight=3]; 606[label="FiniteMap.Branch (xuu25,xuu26) (FiniteMap.addListToFM0 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];606 -> 795[label="",style="dashed", color="green", weight=3]; 607[label="xuu27",fontsize=16,color="green",shape="box"];608[label="xuu24",fontsize=16,color="green",shape="box"];609[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];613 -> 162[label="",style="dashed", color="red", weight=0]; 613[label="compare (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];613 -> 796[label="",style="dashed", color="magenta", weight=3]; 613 -> 797[label="",style="dashed", color="magenta", weight=3]; 614[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];614 -> 798[label="",style="solid", color="black", weight=3]; 615[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];615 -> 799[label="",style="solid", color="black", weight=3]; 616[label="xuu6000",fontsize=16,color="green",shape="box"];617[label="xuu3110000",fontsize=16,color="green",shape="box"];618[label="xuu6000",fontsize=16,color="green",shape="box"];619[label="xuu3110000",fontsize=16,color="green",shape="box"];620[label="xuu6000",fontsize=16,color="green",shape="box"];621[label="xuu3110000",fontsize=16,color="green",shape="box"];622[label="xuu6000",fontsize=16,color="green",shape="box"];623[label="xuu3110000",fontsize=16,color="green",shape="box"];624[label="xuu6000",fontsize=16,color="green",shape="box"];625[label="xuu3110000",fontsize=16,color="green",shape="box"];626[label="xuu6000",fontsize=16,color="green",shape="box"];627[label="xuu3110000",fontsize=16,color="green",shape="box"];628[label="xuu6000",fontsize=16,color="green",shape="box"];629[label="xuu3110000",fontsize=16,color="green",shape="box"];630[label="xuu6000",fontsize=16,color="green",shape="box"];631[label="xuu3110000",fontsize=16,color="green",shape="box"];632[label="xuu6000",fontsize=16,color="green",shape="box"];633[label="xuu3110000",fontsize=16,color="green",shape="box"];634[label="xuu6000",fontsize=16,color="green",shape="box"];635[label="xuu3110000",fontsize=16,color="green",shape="box"];636[label="xuu6000",fontsize=16,color="green",shape="box"];637[label="xuu3110000",fontsize=16,color="green",shape="box"];638[label="xuu6000",fontsize=16,color="green",shape="box"];639[label="xuu3110000",fontsize=16,color="green",shape="box"];640[label="xuu6000",fontsize=16,color="green",shape="box"];641[label="xuu3110000",fontsize=16,color="green",shape="box"];642[label="xuu6000",fontsize=16,color="green",shape="box"];643[label="xuu3110000",fontsize=16,color="green",shape="box"];644[label="False",fontsize=16,color="green",shape="box"];645[label="xuu59",fontsize=16,color="green",shape="box"];646[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];646 -> 800[label="",style="solid", color="black", weight=3]; 647[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];647 -> 801[label="",style="solid", color="black", weight=3]; 648[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];648 -> 802[label="",style="solid", color="black", weight=3]; 649[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];649 -> 803[label="",style="solid", color="black", weight=3]; 650[label="xuu6000",fontsize=16,color="green",shape="box"];651[label="xuu3110000",fontsize=16,color="green",shape="box"];652[label="xuu6000",fontsize=16,color="green",shape="box"];653[label="xuu3110000",fontsize=16,color="green",shape="box"];654[label="xuu6000",fontsize=16,color="green",shape="box"];655[label="xuu3110000",fontsize=16,color="green",shape="box"];656[label="xuu6000",fontsize=16,color="green",shape="box"];657[label="xuu3110000",fontsize=16,color="green",shape="box"];658[label="xuu6000",fontsize=16,color="green",shape="box"];659[label="xuu3110000",fontsize=16,color="green",shape="box"];660[label="xuu6000",fontsize=16,color="green",shape="box"];661[label="xuu3110000",fontsize=16,color="green",shape="box"];662[label="xuu6000",fontsize=16,color="green",shape="box"];663[label="xuu3110000",fontsize=16,color="green",shape="box"];664[label="xuu6000",fontsize=16,color="green",shape="box"];665[label="xuu3110000",fontsize=16,color="green",shape="box"];666[label="xuu6000",fontsize=16,color="green",shape="box"];667[label="xuu3110000",fontsize=16,color="green",shape="box"];668[label="xuu6000",fontsize=16,color="green",shape="box"];669[label="xuu3110000",fontsize=16,color="green",shape="box"];670[label="xuu6000",fontsize=16,color="green",shape="box"];671[label="xuu3110000",fontsize=16,color="green",shape="box"];672[label="xuu6000",fontsize=16,color="green",shape="box"];673[label="xuu3110000",fontsize=16,color="green",shape="box"];674[label="xuu6000",fontsize=16,color="green",shape="box"];675[label="xuu3110000",fontsize=16,color="green",shape="box"];676[label="xuu6000",fontsize=16,color="green",shape="box"];677[label="xuu3110000",fontsize=16,color="green",shape="box"];678 -> 157[label="",style="dashed", color="red", weight=0]; 678[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];678 -> 804[label="",style="dashed", color="magenta", weight=3]; 678 -> 805[label="",style="dashed", color="magenta", weight=3]; 679 -> 158[label="",style="dashed", color="red", weight=0]; 679[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];679 -> 806[label="",style="dashed", color="magenta", weight=3]; 679 -> 807[label="",style="dashed", color="magenta", weight=3]; 680 -> 159[label="",style="dashed", color="red", weight=0]; 680[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];680 -> 808[label="",style="dashed", color="magenta", weight=3]; 680 -> 809[label="",style="dashed", color="magenta", weight=3]; 681 -> 160[label="",style="dashed", color="red", weight=0]; 681[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];681 -> 810[label="",style="dashed", color="magenta", weight=3]; 681 -> 811[label="",style="dashed", color="magenta", weight=3]; 682 -> 161[label="",style="dashed", color="red", weight=0]; 682[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];682 -> 812[label="",style="dashed", color="magenta", weight=3]; 682 -> 813[label="",style="dashed", color="magenta", weight=3]; 683 -> 162[label="",style="dashed", color="red", weight=0]; 683[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];683 -> 814[label="",style="dashed", color="magenta", weight=3]; 683 -> 815[label="",style="dashed", color="magenta", weight=3]; 684 -> 163[label="",style="dashed", color="red", weight=0]; 684[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];684 -> 816[label="",style="dashed", color="magenta", weight=3]; 684 -> 817[label="",style="dashed", color="magenta", weight=3]; 685 -> 164[label="",style="dashed", color="red", weight=0]; 685[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];685 -> 818[label="",style="dashed", color="magenta", weight=3]; 685 -> 819[label="",style="dashed", color="magenta", weight=3]; 686 -> 165[label="",style="dashed", color="red", weight=0]; 686[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];686 -> 820[label="",style="dashed", color="magenta", weight=3]; 686 -> 821[label="",style="dashed", color="magenta", weight=3]; 687 -> 166[label="",style="dashed", color="red", weight=0]; 687[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];687 -> 822[label="",style="dashed", color="magenta", weight=3]; 687 -> 823[label="",style="dashed", color="magenta", weight=3]; 688 -> 167[label="",style="dashed", color="red", weight=0]; 688[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];688 -> 824[label="",style="dashed", color="magenta", weight=3]; 688 -> 825[label="",style="dashed", color="magenta", weight=3]; 689 -> 168[label="",style="dashed", color="red", weight=0]; 689[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];689 -> 826[label="",style="dashed", color="magenta", weight=3]; 689 -> 827[label="",style="dashed", color="magenta", weight=3]; 690 -> 169[label="",style="dashed", color="red", weight=0]; 690[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];690 -> 828[label="",style="dashed", color="magenta", weight=3]; 690 -> 829[label="",style="dashed", color="magenta", weight=3]; 691 -> 170[label="",style="dashed", color="red", weight=0]; 691[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];691 -> 830[label="",style="dashed", color="magenta", weight=3]; 691 -> 831[label="",style="dashed", color="magenta", weight=3]; 692 -> 157[label="",style="dashed", color="red", weight=0]; 692[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];692 -> 832[label="",style="dashed", color="magenta", weight=3]; 692 -> 833[label="",style="dashed", color="magenta", weight=3]; 693 -> 158[label="",style="dashed", color="red", weight=0]; 693[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];693 -> 834[label="",style="dashed", color="magenta", weight=3]; 693 -> 835[label="",style="dashed", color="magenta", weight=3]; 694 -> 159[label="",style="dashed", color="red", weight=0]; 694[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];694 -> 836[label="",style="dashed", color="magenta", weight=3]; 694 -> 837[label="",style="dashed", color="magenta", weight=3]; 695 -> 160[label="",style="dashed", color="red", weight=0]; 695[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];695 -> 838[label="",style="dashed", color="magenta", weight=3]; 695 -> 839[label="",style="dashed", color="magenta", weight=3]; 696 -> 161[label="",style="dashed", color="red", weight=0]; 696[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];696 -> 840[label="",style="dashed", color="magenta", weight=3]; 696 -> 841[label="",style="dashed", color="magenta", weight=3]; 697 -> 162[label="",style="dashed", color="red", weight=0]; 697[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];697 -> 842[label="",style="dashed", color="magenta", weight=3]; 697 -> 843[label="",style="dashed", color="magenta", weight=3]; 698 -> 163[label="",style="dashed", color="red", weight=0]; 698[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];698 -> 844[label="",style="dashed", color="magenta", weight=3]; 698 -> 845[label="",style="dashed", color="magenta", weight=3]; 699 -> 164[label="",style="dashed", color="red", weight=0]; 699[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];699 -> 846[label="",style="dashed", color="magenta", weight=3]; 699 -> 847[label="",style="dashed", color="magenta", weight=3]; 700 -> 165[label="",style="dashed", color="red", weight=0]; 700[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];700 -> 848[label="",style="dashed", color="magenta", weight=3]; 700 -> 849[label="",style="dashed", color="magenta", weight=3]; 701 -> 166[label="",style="dashed", color="red", weight=0]; 701[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];701 -> 850[label="",style="dashed", color="magenta", weight=3]; 701 -> 851[label="",style="dashed", color="magenta", weight=3]; 702 -> 167[label="",style="dashed", color="red", weight=0]; 702[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];702 -> 852[label="",style="dashed", color="magenta", weight=3]; 702 -> 853[label="",style="dashed", color="magenta", weight=3]; 703 -> 168[label="",style="dashed", color="red", weight=0]; 703[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];703 -> 854[label="",style="dashed", color="magenta", weight=3]; 703 -> 855[label="",style="dashed", color="magenta", weight=3]; 704 -> 169[label="",style="dashed", color="red", weight=0]; 704[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];704 -> 856[label="",style="dashed", color="magenta", weight=3]; 704 -> 857[label="",style="dashed", color="magenta", weight=3]; 705 -> 170[label="",style="dashed", color="red", weight=0]; 705[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];705 -> 858[label="",style="dashed", color="magenta", weight=3]; 705 -> 859[label="",style="dashed", color="magenta", weight=3]; 706[label="xuu6000",fontsize=16,color="green",shape="box"];707[label="xuu3110000",fontsize=16,color="green",shape="box"];708[label="xuu6000",fontsize=16,color="green",shape="box"];709[label="xuu3110000",fontsize=16,color="green",shape="box"];710[label="xuu6001",fontsize=16,color="green",shape="box"];711[label="xuu3110001",fontsize=16,color="green",shape="box"];712[label="xuu6001",fontsize=16,color="green",shape="box"];713[label="xuu3110001",fontsize=16,color="green",shape="box"];714[label="xuu6000",fontsize=16,color="green",shape="box"];715[label="xuu3110000",fontsize=16,color="green",shape="box"];716[label="xuu6000",fontsize=16,color="green",shape="box"];717[label="xuu3110000",fontsize=16,color="green",shape="box"];718[label="xuu6000",fontsize=16,color="green",shape="box"];719[label="xuu3110000",fontsize=16,color="green",shape="box"];720[label="xuu6000",fontsize=16,color="green",shape="box"];721[label="xuu3110000",fontsize=16,color="green",shape="box"];722[label="xuu6000",fontsize=16,color="green",shape="box"];723[label="xuu3110000",fontsize=16,color="green",shape="box"];724[label="xuu6000",fontsize=16,color="green",shape="box"];725[label="xuu3110000",fontsize=16,color="green",shape="box"];726[label="xuu6000",fontsize=16,color="green",shape="box"];727[label="xuu3110000",fontsize=16,color="green",shape="box"];728[label="xuu6000",fontsize=16,color="green",shape="box"];729[label="xuu3110000",fontsize=16,color="green",shape="box"];730[label="xuu6000",fontsize=16,color="green",shape="box"];731[label="xuu3110000",fontsize=16,color="green",shape="box"];732[label="xuu6000",fontsize=16,color="green",shape="box"];733[label="xuu3110000",fontsize=16,color="green",shape="box"];734[label="xuu6000",fontsize=16,color="green",shape="box"];735[label="xuu3110000",fontsize=16,color="green",shape="box"];736[label="xuu6000",fontsize=16,color="green",shape="box"];737[label="xuu3110000",fontsize=16,color="green",shape="box"];738[label="xuu6000",fontsize=16,color="green",shape="box"];739[label="xuu3110000",fontsize=16,color="green",shape="box"];740[label="xuu6000",fontsize=16,color="green",shape="box"];741[label="xuu3110000",fontsize=16,color="green",shape="box"];742[label="xuu6001",fontsize=16,color="green",shape="box"];743[label="xuu3110001",fontsize=16,color="green",shape="box"];744[label="xuu6001",fontsize=16,color="green",shape="box"];745[label="xuu3110001",fontsize=16,color="green",shape="box"];746[label="xuu6001",fontsize=16,color="green",shape="box"];747[label="xuu3110001",fontsize=16,color="green",shape="box"];748[label="xuu6001",fontsize=16,color="green",shape="box"];749[label="xuu3110001",fontsize=16,color="green",shape="box"];750[label="xuu6001",fontsize=16,color="green",shape="box"];751[label="xuu3110001",fontsize=16,color="green",shape="box"];752[label="xuu6001",fontsize=16,color="green",shape="box"];753[label="xuu3110001",fontsize=16,color="green",shape="box"];754[label="xuu6001",fontsize=16,color="green",shape="box"];755[label="xuu3110001",fontsize=16,color="green",shape="box"];756[label="xuu6001",fontsize=16,color="green",shape="box"];757[label="xuu3110001",fontsize=16,color="green",shape="box"];758[label="xuu6001",fontsize=16,color="green",shape="box"];759[label="xuu3110001",fontsize=16,color="green",shape="box"];760[label="xuu6001",fontsize=16,color="green",shape="box"];761[label="xuu3110001",fontsize=16,color="green",shape="box"];762[label="xuu6001",fontsize=16,color="green",shape="box"];763[label="xuu3110001",fontsize=16,color="green",shape="box"];764[label="xuu6001",fontsize=16,color="green",shape="box"];765[label="xuu3110001",fontsize=16,color="green",shape="box"];766[label="xuu6001",fontsize=16,color="green",shape="box"];767[label="xuu3110001",fontsize=16,color="green",shape="box"];768[label="xuu6001",fontsize=16,color="green",shape="box"];769[label="xuu3110001",fontsize=16,color="green",shape="box"];770 -> 328[label="",style="dashed", color="red", weight=0]; 770[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];770 -> 860[label="",style="dashed", color="magenta", weight=3]; 770 -> 861[label="",style="dashed", color="magenta", weight=3]; 771[label="False",fontsize=16,color="green",shape="box"];772[label="False",fontsize=16,color="green",shape="box"];773[label="True",fontsize=16,color="green",shape="box"];774[label="False",fontsize=16,color="green",shape="box"];775[label="True",fontsize=16,color="green",shape="box"];776 -> 328[label="",style="dashed", color="red", weight=0]; 776[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];776 -> 862[label="",style="dashed", color="magenta", weight=3]; 776 -> 863[label="",style="dashed", color="magenta", weight=3]; 777[label="False",fontsize=16,color="green",shape="box"];778[label="False",fontsize=16,color="green",shape="box"];779[label="True",fontsize=16,color="green",shape="box"];780[label="False",fontsize=16,color="green",shape="box"];781[label="True",fontsize=16,color="green",shape="box"];782[label="primMulInt xuu3110001 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3054[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];782 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 864[label="",style="solid", color="burlywood", weight=3]; 3055[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];782 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 865[label="",style="solid", color="burlywood", weight=3]; 783[label="xuu6001",fontsize=16,color="green",shape="box"];784[label="xuu3110000",fontsize=16,color="green",shape="box"];785[label="xuu6000",fontsize=16,color="green",shape="box"];786[label="xuu3110001",fontsize=16,color="green",shape="box"];787[label="xuu6001",fontsize=16,color="green",shape="box"];788[label="xuu3110000",fontsize=16,color="green",shape="box"];1328[label="compare1 (xuu490,xuu491) xuu51 ((xuu490,xuu491) <= xuu51)",fontsize=16,color="burlywood",shape="box"];3056[label="xuu51/(xuu510,xuu511)",fontsize=10,color="white",style="solid",shape="box"];1328 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 1337[label="",style="solid", color="burlywood", weight=3]; 1253[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];1254 -> 166[label="",style="dashed", color="red", weight=0]; 1254[label="(xuu25,xuu26) == (xuu19,xuu20)",fontsize=16,color="magenta"];1254 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1255[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];795[label="FiniteMap.addListToFM0 xuu21 xuu27",fontsize=16,color="black",shape="box"];795 -> 870[label="",style="solid", color="black", weight=3]; 796[label="LT",fontsize=16,color="green",shape="box"];797[label="compare (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];797 -> 871[label="",style="solid", color="black", weight=3]; 798 -> 970[label="",style="dashed", color="red", weight=0]; 798[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41)",fontsize=16,color="magenta"];798 -> 971[label="",style="dashed", color="magenta", weight=3]; 799[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="box"];799 -> 874[label="",style="solid", color="black", weight=3]; 800 -> 328[label="",style="dashed", color="red", weight=0]; 800[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];800 -> 875[label="",style="dashed", color="magenta", weight=3]; 800 -> 876[label="",style="dashed", color="magenta", weight=3]; 801[label="False",fontsize=16,color="green",shape="box"];802[label="False",fontsize=16,color="green",shape="box"];803[label="True",fontsize=16,color="green",shape="box"];804[label="xuu6001",fontsize=16,color="green",shape="box"];805[label="xuu3110001",fontsize=16,color="green",shape="box"];806[label="xuu6001",fontsize=16,color="green",shape="box"];807[label="xuu3110001",fontsize=16,color="green",shape="box"];808[label="xuu6001",fontsize=16,color="green",shape="box"];809[label="xuu3110001",fontsize=16,color="green",shape="box"];810[label="xuu6001",fontsize=16,color="green",shape="box"];811[label="xuu3110001",fontsize=16,color="green",shape="box"];812[label="xuu6001",fontsize=16,color="green",shape="box"];813[label="xuu3110001",fontsize=16,color="green",shape="box"];814[label="xuu6001",fontsize=16,color="green",shape="box"];815[label="xuu3110001",fontsize=16,color="green",shape="box"];816[label="xuu6001",fontsize=16,color="green",shape="box"];817[label="xuu3110001",fontsize=16,color="green",shape="box"];818[label="xuu6001",fontsize=16,color="green",shape="box"];819[label="xuu3110001",fontsize=16,color="green",shape="box"];820[label="xuu6001",fontsize=16,color="green",shape="box"];821[label="xuu3110001",fontsize=16,color="green",shape="box"];822[label="xuu6001",fontsize=16,color="green",shape="box"];823[label="xuu3110001",fontsize=16,color="green",shape="box"];824[label="xuu6001",fontsize=16,color="green",shape="box"];825[label="xuu3110001",fontsize=16,color="green",shape="box"];826[label="xuu6001",fontsize=16,color="green",shape="box"];827[label="xuu3110001",fontsize=16,color="green",shape="box"];828[label="xuu6001",fontsize=16,color="green",shape="box"];829[label="xuu3110001",fontsize=16,color="green",shape="box"];830[label="xuu6001",fontsize=16,color="green",shape="box"];831[label="xuu3110001",fontsize=16,color="green",shape="box"];832[label="xuu6002",fontsize=16,color="green",shape="box"];833[label="xuu3110002",fontsize=16,color="green",shape="box"];834[label="xuu6002",fontsize=16,color="green",shape="box"];835[label="xuu3110002",fontsize=16,color="green",shape="box"];836[label="xuu6002",fontsize=16,color="green",shape="box"];837[label="xuu3110002",fontsize=16,color="green",shape="box"];838[label="xuu6002",fontsize=16,color="green",shape="box"];839[label="xuu3110002",fontsize=16,color="green",shape="box"];840[label="xuu6002",fontsize=16,color="green",shape="box"];841[label="xuu3110002",fontsize=16,color="green",shape="box"];842[label="xuu6002",fontsize=16,color="green",shape="box"];843[label="xuu3110002",fontsize=16,color="green",shape="box"];844[label="xuu6002",fontsize=16,color="green",shape="box"];845[label="xuu3110002",fontsize=16,color="green",shape="box"];846[label="xuu6002",fontsize=16,color="green",shape="box"];847[label="xuu3110002",fontsize=16,color="green",shape="box"];848[label="xuu6002",fontsize=16,color="green",shape="box"];849[label="xuu3110002",fontsize=16,color="green",shape="box"];850[label="xuu6002",fontsize=16,color="green",shape="box"];851[label="xuu3110002",fontsize=16,color="green",shape="box"];852[label="xuu6002",fontsize=16,color="green",shape="box"];853[label="xuu3110002",fontsize=16,color="green",shape="box"];854[label="xuu6002",fontsize=16,color="green",shape="box"];855[label="xuu3110002",fontsize=16,color="green",shape="box"];856[label="xuu6002",fontsize=16,color="green",shape="box"];857[label="xuu3110002",fontsize=16,color="green",shape="box"];858[label="xuu6002",fontsize=16,color="green",shape="box"];859[label="xuu3110002",fontsize=16,color="green",shape="box"];860[label="xuu60000",fontsize=16,color="green",shape="box"];861[label="xuu31100000",fontsize=16,color="green",shape="box"];862[label="xuu60000",fontsize=16,color="green",shape="box"];863[label="xuu31100000",fontsize=16,color="green",shape="box"];864[label="primMulInt (Pos xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];3057[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];864 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 877[label="",style="solid", color="burlywood", weight=3]; 3058[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];864 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 878[label="",style="solid", color="burlywood", weight=3]; 865[label="primMulInt (Neg xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];3059[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];865 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 879[label="",style="solid", color="burlywood", weight=3]; 3060[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];865 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 880[label="",style="solid", color="burlywood", weight=3]; 1337[label="compare1 (xuu490,xuu491) (xuu510,xuu511) ((xuu490,xuu491) <= (xuu510,xuu511))",fontsize=16,color="black",shape="box"];1337 -> 1344[label="",style="solid", color="black", weight=3]; 1273[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];1274[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];870[label="xuu27",fontsize=16,color="green",shape="box"];871[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];871 -> 914[label="",style="solid", color="black", weight=3]; 971 -> 1219[label="",style="dashed", color="red", weight=0]; 971[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];971 -> 1220[label="",style="dashed", color="magenta", weight=3]; 971 -> 1221[label="",style="dashed", color="magenta", weight=3]; 970[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu76",fontsize=16,color="burlywood",shape="triangle"];3061[label="xuu76/False",fontsize=10,color="white",style="solid",shape="box"];970 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 976[label="",style="solid", color="burlywood", weight=3]; 3062[label="xuu76/True",fontsize=10,color="white",style="solid",shape="box"];970 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 977[label="",style="solid", color="burlywood", weight=3]; 874[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];874 -> 918[label="",style="solid", color="black", weight=3]; 875[label="xuu60000",fontsize=16,color="green",shape="box"];876[label="xuu31100000",fontsize=16,color="green",shape="box"];877[label="primMulInt (Pos xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];877 -> 919[label="",style="solid", color="black", weight=3]; 878[label="primMulInt (Pos xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];878 -> 920[label="",style="solid", color="black", weight=3]; 879[label="primMulInt (Neg xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];879 -> 921[label="",style="solid", color="black", weight=3]; 880[label="primMulInt (Neg xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];880 -> 922[label="",style="solid", color="black", weight=3]; 1344 -> 1372[label="",style="dashed", color="red", weight=0]; 1344[label="compare1 (xuu490,xuu491) (xuu510,xuu511) (xuu490 < xuu510 || xuu490 == xuu510 && xuu491 <= xuu511)",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]; 914[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];914 -> 967[label="",style="solid", color="black", weight=3]; 1220 -> 515[label="",style="dashed", color="red", weight=0]; 1220[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1220 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1221[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];1221 -> 1228[label="",style="solid", color="black", weight=3]; 1219[label="xuu85 > xuu84",fontsize=16,color="black",shape="triangle"];1219 -> 1229[label="",style="solid", color="black", weight=3]; 976[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];976 -> 1066[label="",style="solid", color="black", weight=3]; 977[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];977 -> 1067[label="",style="solid", color="black", weight=3]; 918[label="FiniteMap.Branch (xuu19,xuu20) xuu21 (FiniteMap.mkBranchUnbox xuu24 (xuu19,xuu20) xuu41 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41)) xuu41 xuu24",fontsize=16,color="green",shape="box"];918 -> 981[label="",style="dashed", color="green", weight=3]; 919[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];919 -> 982[label="",style="dashed", color="green", weight=3]; 920[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];920 -> 983[label="",style="dashed", color="green", weight=3]; 921[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];921 -> 984[label="",style="dashed", color="green", weight=3]; 922[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];922 -> 985[label="",style="dashed", color="green", weight=3]; 1373[label="xuu511",fontsize=16,color="green",shape="box"];1374 -> 420[label="",style="dashed", color="red", weight=0]; 1374[label="xuu490 == xuu510 && xuu491 <= xuu511",fontsize=16,color="magenta"];1374 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1375[label="xuu510",fontsize=16,color="green",shape="box"];1376[label="xuu490 < xuu510",fontsize=16,color="blue",shape="box"];3063[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1387[label="",style="solid", color="blue", weight=3]; 3064[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1388[label="",style="solid", color="blue", weight=3]; 3065[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1389[label="",style="solid", color="blue", weight=3]; 3066[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1390[label="",style="solid", color="blue", weight=3]; 3067[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1391[label="",style="solid", color="blue", weight=3]; 3068[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1392[label="",style="solid", color="blue", weight=3]; 3069[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1393[label="",style="solid", color="blue", weight=3]; 3070[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1394[label="",style="solid", color="blue", weight=3]; 3071[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1395[label="",style="solid", color="blue", weight=3]; 3072[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1396[label="",style="solid", color="blue", weight=3]; 3073[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1397[label="",style="solid", color="blue", weight=3]; 3074[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1398[label="",style="solid", color="blue", weight=3]; 3075[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1399[label="",style="solid", color="blue", weight=3]; 3076[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1400[label="",style="solid", color="blue", weight=3]; 1377[label="xuu490",fontsize=16,color="green",shape="box"];1378[label="xuu491",fontsize=16,color="green",shape="box"];1372[label="compare1 (xuu103,xuu104) (xuu105,xuu106) (xuu107 || xuu108)",fontsize=16,color="burlywood",shape="triangle"];3077[label="xuu107/False",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 1401[label="",style="solid", color="burlywood", weight=3]; 3078[label="xuu107/True",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 1402[label="",style="solid", color="burlywood", weight=3]; 967[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu41) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];3079[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];967 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 1064[label="",style="solid", color="burlywood", weight=3]; 3080[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];967 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 1065[label="",style="solid", color="burlywood", weight=3]; 1226 -> 1225[label="",style="dashed", color="red", weight=0]; 1226[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1227[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1227 -> 1275[label="",style="solid", color="black", weight=3]; 1228[label="FiniteMap.sizeFM xuu24",fontsize=16,color="burlywood",shape="triangle"];3081[label="xuu24/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 1276[label="",style="solid", color="burlywood", weight=3]; 3082[label="xuu24/FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 1277[label="",style="solid", color="burlywood", weight=3]; 1229 -> 162[label="",style="dashed", color="red", weight=0]; 1229[label="compare xuu85 xuu84 == GT",fontsize=16,color="magenta"];1229 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1215[label="",style="dashed", color="red", weight=0]; 1066[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)",fontsize=16,color="magenta"];1066 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1067[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 xuu24 xuu41 xuu41 xuu24 xuu24",fontsize=16,color="burlywood",shape="box"];3083[label="xuu24/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 1106[label="",style="solid", color="burlywood", weight=3]; 3084[label="xuu24/FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 1107[label="",style="solid", color="burlywood", weight=3]; 981 -> 2681[label="",style="dashed", color="red", weight=0]; 981[label="FiniteMap.mkBranchUnbox xuu24 (xuu19,xuu20) xuu41 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41)",fontsize=16,color="magenta"];981 -> 2682[label="",style="dashed", color="magenta", weight=3]; 981 -> 2683[label="",style="dashed", color="magenta", weight=3]; 981 -> 2684[label="",style="dashed", color="magenta", weight=3]; 981 -> 2685[label="",style="dashed", color="magenta", weight=3]; 982[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="burlywood",shape="triangle"];3085[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];982 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 1073[label="",style="solid", color="burlywood", weight=3]; 3086[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];982 -> 3086[label="",style="solid", color="burlywood", weight=9]; 3086 -> 1074[label="",style="solid", color="burlywood", weight=3]; 983 -> 982[label="",style="dashed", color="red", weight=0]; 983[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];983 -> 1075[label="",style="dashed", color="magenta", weight=3]; 984 -> 982[label="",style="dashed", color="red", weight=0]; 984[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];984 -> 1076[label="",style="dashed", color="magenta", weight=3]; 985 -> 982[label="",style="dashed", color="red", weight=0]; 985[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];985 -> 1077[label="",style="dashed", color="magenta", weight=3]; 985 -> 1078[label="",style="dashed", color="magenta", weight=3]; 1385[label="xuu490 == xuu510",fontsize=16,color="blue",shape="box"];3087[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1418[label="",style="solid", color="blue", weight=3]; 3088[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1419[label="",style="solid", color="blue", weight=3]; 3089[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1420[label="",style="solid", color="blue", weight=3]; 3090[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1421[label="",style="solid", color="blue", weight=3]; 3091[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1422[label="",style="solid", color="blue", weight=3]; 3092[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1423[label="",style="solid", color="blue", weight=3]; 3093[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1424[label="",style="solid", color="blue", weight=3]; 3094[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1425[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1426[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1427[label="",style="solid", color="blue", weight=3]; 3097[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1428[label="",style="solid", color="blue", weight=3]; 3098[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1429[label="",style="solid", color="blue", weight=3]; 3099[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1430[label="",style="solid", color="blue", weight=3]; 3100[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1431[label="",style="solid", color="blue", weight=3]; 1386[label="xuu491 <= xuu511",fontsize=16,color="blue",shape="box"];3101[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1432[label="",style="solid", color="blue", weight=3]; 3102[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1433[label="",style="solid", color="blue", weight=3]; 3103[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1434[label="",style="solid", color="blue", weight=3]; 3104[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1435[label="",style="solid", color="blue", weight=3]; 3105[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1436[label="",style="solid", color="blue", weight=3]; 3106[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1437[label="",style="solid", color="blue", weight=3]; 3107[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1438[label="",style="solid", color="blue", weight=3]; 3108[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1439[label="",style="solid", color="blue", weight=3]; 3109[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1440[label="",style="solid", color="blue", weight=3]; 3110[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1441[label="",style="solid", color="blue", weight=3]; 3111[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1442[label="",style="solid", color="blue", weight=3]; 3112[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1443[label="",style="solid", color="blue", weight=3]; 3113[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1444[label="",style="solid", color="blue", weight=3]; 3114[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1445[label="",style="solid", color="blue", weight=3]; 1387[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1387 -> 1446[label="",style="solid", color="black", weight=3]; 1388[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1388 -> 1447[label="",style="solid", color="black", weight=3]; 1389[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1389 -> 1448[label="",style="solid", color="black", weight=3]; 1390[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1390 -> 1449[label="",style="solid", color="black", weight=3]; 1391[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1391 -> 1450[label="",style="solid", color="black", weight=3]; 1392[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1392 -> 1451[label="",style="solid", color="black", weight=3]; 1393[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1393 -> 1452[label="",style="solid", color="black", weight=3]; 1394[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1394 -> 1453[label="",style="solid", color="black", weight=3]; 1395[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1395 -> 1454[label="",style="solid", color="black", weight=3]; 1396[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1396 -> 1455[label="",style="solid", color="black", weight=3]; 1397[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1397 -> 1456[label="",style="solid", color="black", weight=3]; 1398[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1398 -> 1457[label="",style="solid", color="black", weight=3]; 1399[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1399 -> 1458[label="",style="solid", color="black", weight=3]; 1400[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1400 -> 1459[label="",style="solid", color="black", weight=3]; 1401[label="compare1 (xuu103,xuu104) (xuu105,xuu106) (False || xuu108)",fontsize=16,color="black",shape="box"];1401 -> 1460[label="",style="solid", color="black", weight=3]; 1402[label="compare1 (xuu103,xuu104) (xuu105,xuu106) (True || xuu108)",fontsize=16,color="black",shape="box"];1402 -> 1461[label="",style="solid", color="black", weight=3]; 1064[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1064 -> 1133[label="",style="solid", color="black", weight=3]; 1065[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1065 -> 1134[label="",style="solid", color="black", weight=3]; 1225[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];1225 -> 1234[label="",style="solid", color="black", weight=3]; 1275[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1276[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1276 -> 1314[label="",style="solid", color="black", weight=3]; 1277[label="FiniteMap.sizeFM (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1277 -> 1315[label="",style="solid", color="black", weight=3]; 1278[label="GT",fontsize=16,color="green",shape="box"];1279[label="compare xuu85 xuu84",fontsize=16,color="black",shape="triangle"];1279 -> 1316[label="",style="solid", color="black", weight=3]; 1216 -> 1219[label="",style="dashed", color="red", weight=0]; 1216[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1216 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1215[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu82",fontsize=16,color="burlywood",shape="triangle"];3115[label="xuu82/False",fontsize=10,color="white",style="solid",shape="box"];1215 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 1230[label="",style="solid", color="burlywood", weight=3]; 3116[label="xuu82/True",fontsize=10,color="white",style="solid",shape="box"];1215 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 1231[label="",style="solid", color="burlywood", weight=3]; 1106[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 FiniteMap.EmptyFM xuu41 xuu41 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1106 -> 1182[label="",style="solid", color="black", weight=3]; 1107[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1107 -> 1183[label="",style="solid", color="black", weight=3]; 2682[label="xuu24",fontsize=16,color="green",shape="box"];2683[label="xuu41",fontsize=16,color="green",shape="box"];2684[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];2685 -> 2709[label="",style="dashed", color="red", weight=0]; 2685[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41",fontsize=16,color="magenta"];2685 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2681[label="FiniteMap.mkBranchUnbox xuu216 xuu140 xuu142 xuu206",fontsize=16,color="black",shape="triangle"];2681 -> 2702[label="",style="solid", color="black", weight=3]; 1073[label="primMulNat (Succ xuu311000100) xuu60000",fontsize=16,color="burlywood",shape="box"];3117[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1073 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 1143[label="",style="solid", color="burlywood", weight=3]; 3118[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1073 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 1144[label="",style="solid", color="burlywood", weight=3]; 1074[label="primMulNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];3119[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 1145[label="",style="solid", color="burlywood", weight=3]; 3120[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 1146[label="",style="solid", color="burlywood", weight=3]; 1075[label="xuu60000",fontsize=16,color="green",shape="box"];1076[label="xuu31100010",fontsize=16,color="green",shape="box"];1077[label="xuu31100010",fontsize=16,color="green",shape="box"];1078[label="xuu60000",fontsize=16,color="green",shape="box"];1418 -> 168[label="",style="dashed", color="red", weight=0]; 1418[label="xuu490 == xuu510",fontsize=16,color="magenta"];1418 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1419 -> 166[label="",style="dashed", color="red", weight=0]; 1419[label="xuu490 == xuu510",fontsize=16,color="magenta"];1419 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1420 -> 164[label="",style="dashed", color="red", weight=0]; 1420[label="xuu490 == xuu510",fontsize=16,color="magenta"];1420 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1421 -> 157[label="",style="dashed", color="red", weight=0]; 1421[label="xuu490 == xuu510",fontsize=16,color="magenta"];1421 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1422 -> 161[label="",style="dashed", color="red", weight=0]; 1422[label="xuu490 == xuu510",fontsize=16,color="magenta"];1422 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1423 -> 170[label="",style="dashed", color="red", weight=0]; 1423[label="xuu490 == xuu510",fontsize=16,color="magenta"];1423 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1424 -> 160[label="",style="dashed", color="red", weight=0]; 1424[label="xuu490 == xuu510",fontsize=16,color="magenta"];1424 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1425 -> 169[label="",style="dashed", color="red", weight=0]; 1425[label="xuu490 == xuu510",fontsize=16,color="magenta"];1425 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1426 -> 162[label="",style="dashed", color="red", weight=0]; 1426[label="xuu490 == xuu510",fontsize=16,color="magenta"];1426 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1427 -> 159[label="",style="dashed", color="red", weight=0]; 1427[label="xuu490 == xuu510",fontsize=16,color="magenta"];1427 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1428 -> 163[label="",style="dashed", color="red", weight=0]; 1428[label="xuu490 == xuu510",fontsize=16,color="magenta"];1428 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1429 -> 165[label="",style="dashed", color="red", weight=0]; 1429[label="xuu490 == xuu510",fontsize=16,color="magenta"];1429 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1430 -> 158[label="",style="dashed", color="red", weight=0]; 1430[label="xuu490 == xuu510",fontsize=16,color="magenta"];1430 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1431 -> 167[label="",style="dashed", color="red", weight=0]; 1431[label="xuu490 == xuu510",fontsize=16,color="magenta"];1431 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1432[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1432 -> 1515[label="",style="solid", color="black", weight=3]; 1433[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3121[label="xuu491/(xuu4910,xuu4911)",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 1516[label="",style="solid", color="burlywood", weight=3]; 1434[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1434 -> 1517[label="",style="solid", color="black", weight=3]; 1435[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3122[label="xuu491/Nothing",fontsize=10,color="white",style="solid",shape="box"];1435 -> 3122[label="",style="solid", color="burlywood", weight=9]; 3122 -> 1518[label="",style="solid", color="burlywood", weight=3]; 3123[label="xuu491/Just xuu4910",fontsize=10,color="white",style="solid",shape="box"];1435 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 1519[label="",style="solid", color="burlywood", weight=3]; 1436[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1436 -> 1520[label="",style="solid", color="black", weight=3]; 1437[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1437 -> 1521[label="",style="solid", color="black", weight=3]; 1438[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3124[label="xuu491/False",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 1522[label="",style="solid", color="burlywood", weight=3]; 3125[label="xuu491/True",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1439[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3126[label="xuu491/Left xuu4910",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 1524[label="",style="solid", color="burlywood", weight=3]; 3127[label="xuu491/Right xuu4910",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 1525[label="",style="solid", color="burlywood", weight=3]; 1440[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3128[label="xuu491/LT",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 1526[label="",style="solid", color="burlywood", weight=3]; 3129[label="xuu491/EQ",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3129[label="",style="solid", color="burlywood", weight=9]; 3129 -> 1527[label="",style="solid", color="burlywood", weight=3]; 3130[label="xuu491/GT",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3130[label="",style="solid", color="burlywood", weight=9]; 3130 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1441[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1441 -> 1529[label="",style="solid", color="black", weight=3]; 1442[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3131[label="xuu491/(xuu4910,xuu4911,xuu4912)",fontsize=10,color="white",style="solid",shape="box"];1442 -> 3131[label="",style="solid", color="burlywood", weight=9]; 3131 -> 1530[label="",style="solid", color="burlywood", weight=3]; 1443[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1443 -> 1531[label="",style="solid", color="black", weight=3]; 1444[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1444 -> 1532[label="",style="solid", color="black", weight=3]; 1445[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1445 -> 1533[label="",style="solid", color="black", weight=3]; 1446 -> 162[label="",style="dashed", color="red", weight=0]; 1446[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1446 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1447 -> 162[label="",style="dashed", color="red", weight=0]; 1447[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1447 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1448 -> 162[label="",style="dashed", color="red", weight=0]; 1448[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1448 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1449 -> 162[label="",style="dashed", color="red", weight=0]; 1449[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1449 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1450 -> 162[label="",style="dashed", color="red", weight=0]; 1450[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1450 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1451 -> 162[label="",style="dashed", color="red", weight=0]; 1451[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1451 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1452 -> 162[label="",style="dashed", color="red", weight=0]; 1452[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1452 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1453 -> 162[label="",style="dashed", color="red", weight=0]; 1453[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1453 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1454 -> 162[label="",style="dashed", color="red", weight=0]; 1454[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1454 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1455 -> 162[label="",style="dashed", color="red", weight=0]; 1455[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1455 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1456 -> 162[label="",style="dashed", color="red", weight=0]; 1456[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1456 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1457 -> 162[label="",style="dashed", color="red", weight=0]; 1457[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1457 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1458 -> 162[label="",style="dashed", color="red", weight=0]; 1458[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1458 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1459 -> 162[label="",style="dashed", color="red", weight=0]; 1459[label="compare xuu490 xuu510 == 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 (xuu103,xuu104) (xuu105,xuu106) xuu108",fontsize=16,color="burlywood",shape="triangle"];3132[label="xuu108/False",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3132[label="",style="solid", color="burlywood", weight=9]; 3132 -> 1562[label="",style="solid", color="burlywood", weight=3]; 3133[label="xuu108/True",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3133[label="",style="solid", color="burlywood", weight=9]; 3133 -> 1563[label="",style="solid", color="burlywood", weight=3]; 1461 -> 1460[label="",style="dashed", color="red", weight=0]; 1461[label="compare1 (xuu103,xuu104) (xuu105,xuu106) True",fontsize=16,color="magenta"];1461 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1093[label="",style="dashed", color="red", weight=0]; 1133[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1133 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1093[label="",style="dashed", color="red", weight=0]; 1134[label="primCmpInt (primPlusInt xuu412 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1134 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1228[label="",style="dashed", color="red", weight=0]; 1234[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];1234 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1314[label="Pos Zero",fontsize=16,color="green",shape="box"];1315[label="xuu242",fontsize=16,color="green",shape="box"];1316 -> 1093[label="",style="dashed", color="red", weight=0]; 1316[label="primCmpInt xuu85 xuu84",fontsize=16,color="magenta"];1316 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1224 -> 515[label="",style="dashed", color="red", weight=0]; 1224[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1224 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1230[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];1230 -> 1280[label="",style="solid", color="black", weight=3]; 1231[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];1231 -> 1281[label="",style="solid", color="black", weight=3]; 1182[label="error []",fontsize=16,color="red",shape="box"];1183[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1183 -> 1235[label="",style="solid", color="black", weight=3]; 2710[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];2711[label="xuu41",fontsize=16,color="green",shape="box"];2712[label="xuu41",fontsize=16,color="green",shape="box"];2713[label="xuu24",fontsize=16,color="green",shape="box"];2709[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu218 + FiniteMap.mkBranchRight_size xuu244 xuu240 xuu217",fontsize=16,color="black",shape="triangle"];2709 -> 2724[label="",style="solid", color="black", weight=3]; 2702[label="xuu206",fontsize=16,color="green",shape="box"];1143[label="primMulNat (Succ xuu311000100) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1143 -> 1237[label="",style="solid", color="black", weight=3]; 1144[label="primMulNat (Succ xuu311000100) Zero",fontsize=16,color="black",shape="box"];1144 -> 1238[label="",style="solid", color="black", weight=3]; 1145[label="primMulNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1145 -> 1239[label="",style="solid", color="black", weight=3]; 1146[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1146 -> 1240[label="",style="solid", color="black", weight=3]; 1487[label="xuu510",fontsize=16,color="green",shape="box"];1488[label="xuu490",fontsize=16,color="green",shape="box"];1489[label="xuu510",fontsize=16,color="green",shape="box"];1490[label="xuu490",fontsize=16,color="green",shape="box"];1491[label="xuu510",fontsize=16,color="green",shape="box"];1492[label="xuu490",fontsize=16,color="green",shape="box"];1493[label="xuu510",fontsize=16,color="green",shape="box"];1494[label="xuu490",fontsize=16,color="green",shape="box"];1495[label="xuu510",fontsize=16,color="green",shape="box"];1496[label="xuu490",fontsize=16,color="green",shape="box"];1497[label="xuu510",fontsize=16,color="green",shape="box"];1498[label="xuu490",fontsize=16,color="green",shape="box"];1499[label="xuu510",fontsize=16,color="green",shape="box"];1500[label="xuu490",fontsize=16,color="green",shape="box"];1501[label="xuu510",fontsize=16,color="green",shape="box"];1502[label="xuu490",fontsize=16,color="green",shape="box"];1503[label="xuu510",fontsize=16,color="green",shape="box"];1504[label="xuu490",fontsize=16,color="green",shape="box"];1505[label="xuu510",fontsize=16,color="green",shape="box"];1506[label="xuu490",fontsize=16,color="green",shape="box"];1507[label="xuu510",fontsize=16,color="green",shape="box"];1508[label="xuu490",fontsize=16,color="green",shape="box"];1509[label="xuu510",fontsize=16,color="green",shape="box"];1510[label="xuu490",fontsize=16,color="green",shape="box"];1511[label="xuu510",fontsize=16,color="green",shape="box"];1512[label="xuu490",fontsize=16,color="green",shape="box"];1513[label="xuu510",fontsize=16,color="green",shape="box"];1514[label="xuu490",fontsize=16,color="green",shape="box"];1515 -> 1624[label="",style="dashed", color="red", weight=0]; 1515[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1515 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1516[label="(xuu4910,xuu4911) <= xuu511",fontsize=16,color="burlywood",shape="box"];3134[label="xuu511/(xuu5110,xuu5111)",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 1595[label="",style="solid", color="burlywood", weight=3]; 1517 -> 1624[label="",style="dashed", color="red", weight=0]; 1517[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1517 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1518[label="Nothing <= xuu511",fontsize=16,color="burlywood",shape="box"];3135[label="xuu511/Nothing",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 1597[label="",style="solid", color="burlywood", weight=3]; 3136[label="xuu511/Just xuu5110",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 1598[label="",style="solid", color="burlywood", weight=3]; 1519[label="Just xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3137[label="xuu511/Nothing",fontsize=10,color="white",style="solid",shape="box"];1519 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 1599[label="",style="solid", color="burlywood", weight=3]; 3138[label="xuu511/Just xuu5110",fontsize=10,color="white",style="solid",shape="box"];1519 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 1600[label="",style="solid", color="burlywood", weight=3]; 1520 -> 1624[label="",style="dashed", color="red", weight=0]; 1520[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1520 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1624[label="",style="dashed", color="red", weight=0]; 1521[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1521 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1522[label="False <= xuu511",fontsize=16,color="burlywood",shape="box"];3139[label="xuu511/False",fontsize=10,color="white",style="solid",shape="box"];1522 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1603[label="",style="solid", color="burlywood", weight=3]; 3140[label="xuu511/True",fontsize=10,color="white",style="solid",shape="box"];1522 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1604[label="",style="solid", color="burlywood", weight=3]; 1523[label="True <= xuu511",fontsize=16,color="burlywood",shape="box"];3141[label="xuu511/False",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1605[label="",style="solid", color="burlywood", weight=3]; 3142[label="xuu511/True",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1606[label="",style="solid", color="burlywood", weight=3]; 1524[label="Left xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3143[label="xuu511/Left xuu5110",fontsize=10,color="white",style="solid",shape="box"];1524 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1607[label="",style="solid", color="burlywood", weight=3]; 3144[label="xuu511/Right xuu5110",fontsize=10,color="white",style="solid",shape="box"];1524 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1608[label="",style="solid", color="burlywood", weight=3]; 1525[label="Right xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3145[label="xuu511/Left xuu5110",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 1609[label="",style="solid", color="burlywood", weight=3]; 3146[label="xuu511/Right xuu5110",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 1610[label="",style="solid", color="burlywood", weight=3]; 1526[label="LT <= xuu511",fontsize=16,color="burlywood",shape="box"];3147[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1526 -> 3147[label="",style="solid", color="burlywood", weight=9]; 3147 -> 1611[label="",style="solid", color="burlywood", weight=3]; 3148[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1526 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 1612[label="",style="solid", color="burlywood", weight=3]; 3149[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1526 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 1613[label="",style="solid", color="burlywood", weight=3]; 1527[label="EQ <= xuu511",fontsize=16,color="burlywood",shape="box"];3150[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 1614[label="",style="solid", color="burlywood", weight=3]; 3151[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3151[label="",style="solid", color="burlywood", weight=9]; 3151 -> 1615[label="",style="solid", color="burlywood", weight=3]; 3152[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 1616[label="",style="solid", color="burlywood", weight=3]; 1528[label="GT <= xuu511",fontsize=16,color="burlywood",shape="box"];3153[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 1617[label="",style="solid", color="burlywood", weight=3]; 3154[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 1618[label="",style="solid", color="burlywood", weight=3]; 3155[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3155[label="",style="solid", color="burlywood", weight=9]; 3155 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1529 -> 1624[label="",style="dashed", color="red", weight=0]; 1529[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1529 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1530[label="(xuu4910,xuu4911,xuu4912) <= xuu511",fontsize=16,color="burlywood",shape="box"];3156[label="xuu511/(xuu5110,xuu5111,xuu5112)",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3156[label="",style="solid", color="burlywood", weight=9]; 3156 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1531 -> 1624[label="",style="dashed", color="red", weight=0]; 1531[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1531 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1624[label="",style="dashed", color="red", weight=0]; 1532[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1532 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1624[label="",style="dashed", color="red", weight=0]; 1533[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1533 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1534[label="LT",fontsize=16,color="green",shape="box"];1535[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1535 -> 1633[label="",style="solid", color="black", weight=3]; 1536[label="LT",fontsize=16,color="green",shape="box"];1537[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1537 -> 1634[label="",style="solid", color="black", weight=3]; 1538[label="LT",fontsize=16,color="green",shape="box"];1539[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3157[label="xuu490/Integer xuu4900",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3157[label="",style="solid", color="burlywood", weight=9]; 3157 -> 1635[label="",style="solid", color="burlywood", weight=3]; 1540[label="LT",fontsize=16,color="green",shape="box"];1541[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1541 -> 1636[label="",style="solid", color="black", weight=3]; 1542[label="LT",fontsize=16,color="green",shape="box"];1543[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3158[label="xuu490/()",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3158[label="",style="solid", color="burlywood", weight=9]; 3158 -> 1637[label="",style="solid", color="burlywood", weight=3]; 1544[label="LT",fontsize=16,color="green",shape="box"];1545[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1545 -> 1638[label="",style="solid", color="black", weight=3]; 1546[label="LT",fontsize=16,color="green",shape="box"];1547[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1547 -> 1639[label="",style="solid", color="black", weight=3]; 1548[label="LT",fontsize=16,color="green",shape="box"];1549[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1549 -> 1640[label="",style="solid", color="black", weight=3]; 1550[label="LT",fontsize=16,color="green",shape="box"];1551[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1551 -> 1641[label="",style="solid", color="black", weight=3]; 1552[label="LT",fontsize=16,color="green",shape="box"];1553[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1553 -> 1642[label="",style="solid", color="black", weight=3]; 1554[label="LT",fontsize=16,color="green",shape="box"];1555[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1555 -> 1643[label="",style="solid", color="black", weight=3]; 1556[label="LT",fontsize=16,color="green",shape="box"];1557[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3159[label="xuu490/xuu4900 :% xuu4901",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3159[label="",style="solid", color="burlywood", weight=9]; 3159 -> 1644[label="",style="solid", color="burlywood", weight=3]; 1558[label="LT",fontsize=16,color="green",shape="box"];1559[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3160[label="xuu490/xuu4900 : xuu4901",fontsize=10,color="white",style="solid",shape="box"];1559 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 1645[label="",style="solid", color="burlywood", weight=3]; 3161[label="xuu490/[]",fontsize=10,color="white",style="solid",shape="box"];1559 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 1646[label="",style="solid", color="burlywood", weight=3]; 1560[label="LT",fontsize=16,color="green",shape="box"];1561 -> 1279[label="",style="dashed", color="red", weight=0]; 1561[label="compare xuu490 xuu510",fontsize=16,color="magenta"];1561 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1562[label="compare1 (xuu103,xuu104) (xuu105,xuu106) False",fontsize=16,color="black",shape="box"];1562 -> 1649[label="",style="solid", color="black", weight=3]; 1563[label="compare1 (xuu103,xuu104) (xuu105,xuu106) True",fontsize=16,color="black",shape="box"];1563 -> 1650[label="",style="solid", color="black", weight=3]; 1564[label="True",fontsize=16,color="green",shape="box"];1208[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1209 -> 1318[label="",style="dashed", color="red", weight=0]; 1209[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1209 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1093[label="primCmpInt xuu49 xuu51",fontsize=16,color="burlywood",shape="triangle"];3162[label="xuu49/Pos xuu490",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 1163[label="",style="solid", color="burlywood", weight=3]; 3163[label="xuu49/Neg xuu490",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 1164[label="",style="solid", color="burlywood", weight=3]; 1210[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1211 -> 1318[label="",style="dashed", color="red", weight=0]; 1211[label="primPlusInt xuu412 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))",fontsize=16,color="magenta"];1211 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1317[label="xuu41",fontsize=16,color="green",shape="box"];1329[label="xuu84",fontsize=16,color="green",shape="box"];1330[label="xuu85",fontsize=16,color="green",shape="box"];1232 -> 1221[label="",style="dashed", color="red", weight=0]; 1232[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1233 -> 1227[label="",style="dashed", color="red", weight=0]; 1233[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1280[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 otherwise",fontsize=16,color="black",shape="box"];1280 -> 1331[label="",style="solid", color="black", weight=3]; 1281[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 xuu41 xuu41 xuu24 xuu41",fontsize=16,color="burlywood",shape="box"];3164[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 1332[label="",style="solid", color="burlywood", weight=3]; 3165[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 1333[label="",style="solid", color="burlywood", weight=3]; 1235 -> 1414[label="",style="dashed", color="red", weight=0]; 1235[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 (FiniteMap.sizeFM xuu243 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244)",fontsize=16,color="magenta"];1235 -> 1415[label="",style="dashed", color="magenta", weight=3]; 2724 -> 1318[label="",style="dashed", color="red", weight=0]; 2724[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu218) (FiniteMap.mkBranchRight_size xuu244 xuu240 xuu217)",fontsize=16,color="magenta"];2724 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2771[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1342[label="",style="dashed", color="red", weight=0]; 1237[label="primPlusNat (primMulNat xuu311000100 (Succ xuu600000)) (Succ xuu600000)",fontsize=16,color="magenta"];1237 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1238[label="Zero",fontsize=16,color="green",shape="box"];1239[label="Zero",fontsize=16,color="green",shape="box"];1240[label="Zero",fontsize=16,color="green",shape="box"];1625 -> 1535[label="",style="dashed", color="red", weight=0]; 1625[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1625 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1624[label="xuu115 /= GT",fontsize=16,color="black",shape="triangle"];1624 -> 1653[label="",style="solid", color="black", weight=3]; 1595[label="(xuu4910,xuu4911) <= (xuu5110,xuu5111)",fontsize=16,color="black",shape="box"];1595 -> 1654[label="",style="solid", color="black", weight=3]; 1626 -> 1539[label="",style="dashed", color="red", weight=0]; 1626[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1626 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1597[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1597 -> 1657[label="",style="solid", color="black", weight=3]; 1598[label="Nothing <= Just xuu5110",fontsize=16,color="black",shape="box"];1598 -> 1658[label="",style="solid", color="black", weight=3]; 1599[label="Just xuu4910 <= Nothing",fontsize=16,color="black",shape="box"];1599 -> 1659[label="",style="solid", color="black", weight=3]; 1600[label="Just xuu4910 <= Just xuu5110",fontsize=16,color="black",shape="box"];1600 -> 1660[label="",style="solid", color="black", weight=3]; 1627 -> 1543[label="",style="dashed", color="red", weight=0]; 1627[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1627 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1545[label="",style="dashed", color="red", weight=0]; 1628[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1628 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1603[label="False <= False",fontsize=16,color="black",shape="box"];1603 -> 1665[label="",style="solid", color="black", weight=3]; 1604[label="False <= True",fontsize=16,color="black",shape="box"];1604 -> 1666[label="",style="solid", color="black", weight=3]; 1605[label="True <= False",fontsize=16,color="black",shape="box"];1605 -> 1667[label="",style="solid", color="black", weight=3]; 1606[label="True <= True",fontsize=16,color="black",shape="box"];1606 -> 1668[label="",style="solid", color="black", weight=3]; 1607[label="Left xuu4910 <= Left xuu5110",fontsize=16,color="black",shape="box"];1607 -> 1669[label="",style="solid", color="black", weight=3]; 1608[label="Left xuu4910 <= Right xuu5110",fontsize=16,color="black",shape="box"];1608 -> 1670[label="",style="solid", color="black", weight=3]; 1609[label="Right xuu4910 <= Left xuu5110",fontsize=16,color="black",shape="box"];1609 -> 1671[label="",style="solid", color="black", weight=3]; 1610[label="Right xuu4910 <= Right xuu5110",fontsize=16,color="black",shape="box"];1610 -> 1672[label="",style="solid", color="black", weight=3]; 1611[label="LT <= LT",fontsize=16,color="black",shape="box"];1611 -> 1673[label="",style="solid", color="black", weight=3]; 1612[label="LT <= EQ",fontsize=16,color="black",shape="box"];1612 -> 1674[label="",style="solid", color="black", weight=3]; 1613[label="LT <= GT",fontsize=16,color="black",shape="box"];1613 -> 1675[label="",style="solid", color="black", weight=3]; 1614[label="EQ <= LT",fontsize=16,color="black",shape="box"];1614 -> 1676[label="",style="solid", color="black", weight=3]; 1615[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1615 -> 1677[label="",style="solid", color="black", weight=3]; 1616[label="EQ <= GT",fontsize=16,color="black",shape="box"];1616 -> 1678[label="",style="solid", color="black", weight=3]; 1617[label="GT <= LT",fontsize=16,color="black",shape="box"];1617 -> 1679[label="",style="solid", color="black", weight=3]; 1618[label="GT <= EQ",fontsize=16,color="black",shape="box"];1618 -> 1680[label="",style="solid", color="black", weight=3]; 1619[label="GT <= GT",fontsize=16,color="black",shape="box"];1619 -> 1681[label="",style="solid", color="black", weight=3]; 1629 -> 1553[label="",style="dashed", color="red", weight=0]; 1629[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1629 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1621[label="(xuu4910,xuu4911,xuu4912) <= (xuu5110,xuu5111,xuu5112)",fontsize=16,color="black",shape="box"];1621 -> 1684[label="",style="solid", color="black", weight=3]; 1630 -> 1557[label="",style="dashed", color="red", weight=0]; 1630[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1630 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1559[label="",style="dashed", color="red", weight=0]; 1631[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1631 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1279[label="",style="dashed", color="red", weight=0]; 1632[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1632 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1633[label="primCmpDouble xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3166[label="xuu490/Double xuu4900 xuu4901",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 1717[label="",style="solid", color="burlywood", weight=3]; 1634[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1634 -> 1718[label="",style="solid", color="black", weight=3]; 1635[label="compare (Integer xuu4900) xuu510",fontsize=16,color="burlywood",shape="box"];3167[label="xuu510/Integer xuu5100",fontsize=10,color="white",style="solid",shape="box"];1635 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 1719[label="",style="solid", color="burlywood", weight=3]; 1636[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1636 -> 1720[label="",style="solid", color="black", weight=3]; 1637[label="compare () xuu510",fontsize=16,color="burlywood",shape="box"];3168[label="xuu510/()",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 1721[label="",style="solid", color="burlywood", weight=3]; 1638[label="primCmpFloat xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3169[label="xuu490/Float xuu4900 xuu4901",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 1722[label="",style="solid", color="burlywood", weight=3]; 1639[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1639 -> 1723[label="",style="solid", color="black", weight=3]; 1640[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1640 -> 1724[label="",style="solid", color="black", weight=3]; 1641[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1641 -> 1725[label="",style="solid", color="black", weight=3]; 1642[label="primCmpChar xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3170[label="xuu490/Char xuu4900",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 1726[label="",style="solid", color="burlywood", weight=3]; 1643[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1643 -> 1727[label="",style="solid", color="black", weight=3]; 1644[label="compare (xuu4900 :% xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3171[label="xuu510/xuu5100 :% xuu5101",fontsize=10,color="white",style="solid",shape="box"];1644 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 1728[label="",style="solid", color="burlywood", weight=3]; 1645[label="compare (xuu4900 : xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3172[label="xuu510/xuu5100 : xuu5101",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]; 3173[label="xuu510/[]",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 1730[label="",style="solid", color="burlywood", weight=3]; 1646[label="compare [] xuu510",fontsize=16,color="burlywood",shape="box"];3174[label="xuu510/xuu5100 : xuu5101",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 1731[label="",style="solid", color="burlywood", weight=3]; 3175[label="xuu510/[]",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 1732[label="",style="solid", color="burlywood", weight=3]; 1647[label="xuu510",fontsize=16,color="green",shape="box"];1648[label="xuu490",fontsize=16,color="green",shape="box"];1649[label="compare0 (xuu103,xuu104) (xuu105,xuu106) otherwise",fontsize=16,color="black",shape="box"];1649 -> 1733[label="",style="solid", color="black", weight=3]; 1650[label="LT",fontsize=16,color="green",shape="box"];1321 -> 1221[label="",style="dashed", color="red", weight=0]; 1321[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM",fontsize=16,color="magenta"];1321 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1322[label="Pos Zero",fontsize=16,color="green",shape="box"];1318[label="primPlusInt xuu412 xuu90",fontsize=16,color="burlywood",shape="triangle"];3176[label="xuu412/Pos xuu4120",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 1340[label="",style="solid", color="burlywood", weight=3]; 3177[label="xuu412/Neg xuu4120",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 1341[label="",style="solid", color="burlywood", weight=3]; 1163[label="primCmpInt (Pos xuu490) xuu51",fontsize=16,color="burlywood",shape="box"];3178[label="xuu490/Succ xuu4900",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 1346[label="",style="solid", color="burlywood", weight=3]; 3179[label="xuu490/Zero",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 1347[label="",style="solid", color="burlywood", weight=3]; 1164[label="primCmpInt (Neg xuu490) xuu51",fontsize=16,color="burlywood",shape="box"];3180[label="xuu490/Succ xuu4900",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 1348[label="",style="solid", color="burlywood", weight=3]; 3181[label="xuu490/Zero",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 1349[label="",style="solid", color="burlywood", weight=3]; 1323 -> 1221[label="",style="dashed", color="red", weight=0]; 1323[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="magenta"];1323 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1331[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];1331 -> 1351[label="",style="solid", color="black", weight=3]; 1332[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu24 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1332 -> 1352[label="",style="solid", color="black", weight=3]; 1333[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];1333 -> 1353[label="",style="solid", color="black", weight=3]; 1415 -> 1400[label="",style="dashed", color="red", weight=0]; 1415[label="FiniteMap.sizeFM xuu243 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244",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 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 xuu109",fontsize=16,color="burlywood",shape="triangle"];3182[label="xuu109/False",fontsize=10,color="white",style="solid",shape="box"];1414 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 1464[label="",style="solid", color="burlywood", weight=3]; 3183[label="xuu109/True",fontsize=10,color="white",style="solid",shape="box"];1414 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 1465[label="",style="solid", color="burlywood", weight=3]; 2770[label="FiniteMap.mkBranchRight_size xuu244 xuu240 xuu217",fontsize=16,color="black",shape="box"];2770 -> 2777[label="",style="solid", color="black", weight=3]; 2771[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu218",fontsize=16,color="black",shape="box"];2771 -> 2778[label="",style="solid", color="black", weight=3]; 1343 -> 982[label="",style="dashed", color="red", weight=0]; 1343[label="primMulNat xuu311000100 (Succ xuu600000)",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 xuu94 (Succ xuu600000)",fontsize=16,color="burlywood",shape="triangle"];3184[label="xuu94/Succ xuu940",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 1366[label="",style="solid", color="burlywood", weight=3]; 3185[label="xuu94/Zero",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1651[label="xuu511",fontsize=16,color="green",shape="box"];1652[label="xuu491",fontsize=16,color="green",shape="box"];1653 -> 1734[label="",style="dashed", color="red", weight=0]; 1653[label="not (xuu115 == GT)",fontsize=16,color="magenta"];1653 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1815[label="",style="dashed", color="red", weight=0]; 1654[label="xuu4910 < xuu5110 || xuu4910 == xuu5110 && xuu4911 <= xuu5111",fontsize=16,color="magenta"];1654 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1655[label="xuu511",fontsize=16,color="green",shape="box"];1656[label="xuu491",fontsize=16,color="green",shape="box"];1657[label="True",fontsize=16,color="green",shape="box"];1658[label="True",fontsize=16,color="green",shape="box"];1659[label="False",fontsize=16,color="green",shape="box"];1660[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3186[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1741[label="",style="solid", color="blue", weight=3]; 3187[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1742[label="",style="solid", color="blue", weight=3]; 3188[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1743[label="",style="solid", color="blue", weight=3]; 3189[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1744[label="",style="solid", color="blue", weight=3]; 3190[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1745[label="",style="solid", color="blue", weight=3]; 3191[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1746[label="",style="solid", color="blue", weight=3]; 3192[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1747[label="",style="solid", color="blue", weight=3]; 3193[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1748[label="",style="solid", color="blue", weight=3]; 3194[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1749[label="",style="solid", color="blue", weight=3]; 3195[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1750[label="",style="solid", color="blue", weight=3]; 3196[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1751[label="",style="solid", color="blue", weight=3]; 3197[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1752[label="",style="solid", color="blue", weight=3]; 3198[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1753[label="",style="solid", color="blue", weight=3]; 3199[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1660 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1754[label="",style="solid", color="blue", weight=3]; 1661[label="xuu511",fontsize=16,color="green",shape="box"];1662[label="xuu491",fontsize=16,color="green",shape="box"];1663[label="xuu511",fontsize=16,color="green",shape="box"];1664[label="xuu491",fontsize=16,color="green",shape="box"];1665[label="True",fontsize=16,color="green",shape="box"];1666[label="True",fontsize=16,color="green",shape="box"];1667[label="False",fontsize=16,color="green",shape="box"];1668[label="True",fontsize=16,color="green",shape="box"];1669[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3200[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1755[label="",style="solid", color="blue", weight=3]; 3201[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1756[label="",style="solid", color="blue", weight=3]; 3202[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1757[label="",style="solid", color="blue", weight=3]; 3203[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1758[label="",style="solid", color="blue", weight=3]; 3204[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1759[label="",style="solid", color="blue", weight=3]; 3205[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1760[label="",style="solid", color="blue", weight=3]; 3206[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1761[label="",style="solid", color="blue", weight=3]; 3207[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1762[label="",style="solid", color="blue", weight=3]; 3208[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1763[label="",style="solid", color="blue", weight=3]; 3209[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1764[label="",style="solid", color="blue", weight=3]; 3210[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1765[label="",style="solid", color="blue", weight=3]; 3211[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1766[label="",style="solid", color="blue", weight=3]; 3212[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1767[label="",style="solid", color="blue", weight=3]; 3213[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1768[label="",style="solid", color="blue", weight=3]; 1670[label="True",fontsize=16,color="green",shape="box"];1671[label="False",fontsize=16,color="green",shape="box"];1672[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3214[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1769[label="",style="solid", color="blue", weight=3]; 3215[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1770[label="",style="solid", color="blue", weight=3]; 3216[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1771[label="",style="solid", color="blue", weight=3]; 3217[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1772[label="",style="solid", color="blue", weight=3]; 3218[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1773[label="",style="solid", color="blue", weight=3]; 3219[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1774[label="",style="solid", color="blue", weight=3]; 3220[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1775[label="",style="solid", color="blue", weight=3]; 3221[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1776[label="",style="solid", color="blue", weight=3]; 3222[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1777[label="",style="solid", color="blue", weight=3]; 3223[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1778[label="",style="solid", color="blue", weight=3]; 3224[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1779[label="",style="solid", color="blue", weight=3]; 3225[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1780[label="",style="solid", color="blue", weight=3]; 3226[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1781[label="",style="solid", color="blue", weight=3]; 3227[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1782[label="",style="solid", color="blue", weight=3]; 1673[label="True",fontsize=16,color="green",shape="box"];1674[label="True",fontsize=16,color="green",shape="box"];1675[label="True",fontsize=16,color="green",shape="box"];1676[label="False",fontsize=16,color="green",shape="box"];1677[label="True",fontsize=16,color="green",shape="box"];1678[label="True",fontsize=16,color="green",shape="box"];1679[label="False",fontsize=16,color="green",shape="box"];1680[label="False",fontsize=16,color="green",shape="box"];1681[label="True",fontsize=16,color="green",shape="box"];1682[label="xuu511",fontsize=16,color="green",shape="box"];1683[label="xuu491",fontsize=16,color="green",shape="box"];1684 -> 1815[label="",style="dashed", color="red", weight=0]; 1684[label="xuu4910 < xuu5110 || xuu4910 == xuu5110 && (xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112)",fontsize=16,color="magenta"];1684 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1684 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1685[label="xuu511",fontsize=16,color="green",shape="box"];1686[label="xuu491",fontsize=16,color="green",shape="box"];1687[label="xuu511",fontsize=16,color="green",shape="box"];1688[label="xuu491",fontsize=16,color="green",shape="box"];1689[label="xuu511",fontsize=16,color="green",shape="box"];1690[label="xuu491",fontsize=16,color="green",shape="box"];1717[label="primCmpDouble (Double xuu4900 xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3228[label="xuu4901/Pos xuu49010",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1783[label="",style="solid", color="burlywood", weight=3]; 3229[label="xuu4901/Neg xuu49010",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1784[label="",style="solid", color="burlywood", weight=3]; 1718 -> 1243[label="",style="dashed", color="red", weight=0]; 1718[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1718 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1719[label="compare (Integer xuu4900) (Integer xuu5100)",fontsize=16,color="black",shape="box"];1719 -> 1788[label="",style="solid", color="black", weight=3]; 1720 -> 1789[label="",style="dashed", color="red", weight=0]; 1720[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1720 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1721[label="compare () ()",fontsize=16,color="black",shape="box"];1721 -> 1791[label="",style="solid", color="black", weight=3]; 1722[label="primCmpFloat (Float xuu4900 xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3230[label="xuu4901/Pos xuu49010",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1792[label="",style="solid", color="burlywood", weight=3]; 3231[label="xuu4901/Neg xuu49010",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1793[label="",style="solid", color="burlywood", weight=3]; 1723 -> 1794[label="",style="dashed", color="red", weight=0]; 1723[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1723 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1796[label="",style="dashed", color="red", weight=0]; 1724[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1724 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1798[label="",style="dashed", color="red", weight=0]; 1725[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1725 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1726[label="primCmpChar (Char xuu4900) xuu510",fontsize=16,color="burlywood",shape="box"];3232[label="xuu510/Char xuu5100",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1800[label="",style="solid", color="burlywood", weight=3]; 1727 -> 1801[label="",style="dashed", color="red", weight=0]; 1727[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1727 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1728[label="compare (xuu4900 :% xuu4901) (xuu5100 :% xuu5101)",fontsize=16,color="black",shape="box"];1728 -> 1803[label="",style="solid", color="black", weight=3]; 1729[label="compare (xuu4900 : xuu4901) (xuu5100 : xuu5101)",fontsize=16,color="black",shape="box"];1729 -> 1804[label="",style="solid", color="black", weight=3]; 1730[label="compare (xuu4900 : xuu4901) []",fontsize=16,color="black",shape="box"];1730 -> 1805[label="",style="solid", color="black", weight=3]; 1731[label="compare [] (xuu5100 : xuu5101)",fontsize=16,color="black",shape="box"];1731 -> 1806[label="",style="solid", color="black", weight=3]; 1732[label="compare [] []",fontsize=16,color="black",shape="box"];1732 -> 1807[label="",style="solid", color="black", weight=3]; 1733[label="compare0 (xuu103,xuu104) (xuu105,xuu106) True",fontsize=16,color="black",shape="box"];1733 -> 1808[label="",style="solid", color="black", weight=3]; 1345[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1340[label="primPlusInt (Pos xuu4120) xuu90",fontsize=16,color="burlywood",shape="box"];3233[label="xuu90/Pos xuu900",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1360[label="",style="solid", color="burlywood", weight=3]; 3234[label="xuu90/Neg xuu900",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1341[label="primPlusInt (Neg xuu4120) xuu90",fontsize=16,color="burlywood",shape="box"];3235[label="xuu90/Pos xuu900",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 1362[label="",style="solid", color="burlywood", weight=3]; 3236[label="xuu90/Neg xuu900",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 1363[label="",style="solid", color="burlywood", weight=3]; 1346[label="primCmpInt (Pos (Succ xuu4900)) xuu51",fontsize=16,color="burlywood",shape="box"];3237[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 1403[label="",style="solid", color="burlywood", weight=3]; 3238[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 1404[label="",style="solid", color="burlywood", weight=3]; 1347[label="primCmpInt (Pos Zero) xuu51",fontsize=16,color="burlywood",shape="box"];3239[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1347 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 1405[label="",style="solid", color="burlywood", weight=3]; 3240[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1347 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1348[label="primCmpInt (Neg (Succ xuu4900)) xuu51",fontsize=16,color="burlywood",shape="box"];3241[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 1407[label="",style="solid", color="burlywood", weight=3]; 3242[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1349[label="primCmpInt (Neg Zero) xuu51",fontsize=16,color="burlywood",shape="box"];3243[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 1409[label="",style="solid", color="burlywood", weight=3]; 3244[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1350[label="FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=16,color="green",shape="box"];1351[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu19,xuu20) xuu21 xuu41 xuu24",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 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];1353 -> 1412[label="",style="solid", color="black", weight=3]; 1462 -> 515[label="",style="dashed", color="red", weight=0]; 1462[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];1462 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1228[label="",style="dashed", color="red", weight=0]; 1463[label="FiniteMap.sizeFM xuu243",fontsize=16,color="magenta"];1463 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1464[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 False",fontsize=16,color="black",shape="box"];1464 -> 1568[label="",style="solid", color="black", weight=3]; 1465[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 True",fontsize=16,color="black",shape="box"];1465 -> 1569[label="",style="solid", color="black", weight=3]; 2777 -> 1228[label="",style="dashed", color="red", weight=0]; 2777[label="FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];2777 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2778 -> 1318[label="",style="dashed", color="red", weight=0]; 2778[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu218)",fontsize=16,color="magenta"];2778 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2785[label="",style="dashed", color="magenta", weight=3]; 1364[label="xuu311000100",fontsize=16,color="green",shape="box"];1365[label="Succ xuu600000",fontsize=16,color="green",shape="box"];1366[label="primPlusNat (Succ xuu940) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1366 -> 1471[label="",style="solid", color="black", weight=3]; 1367[label="primPlusNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1367 -> 1472[label="",style="solid", color="black", weight=3]; 1735 -> 162[label="",style="dashed", color="red", weight=0]; 1735[label="xuu115 == GT",fontsize=16,color="magenta"];1735 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1735 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1734[label="not xuu116",fontsize=16,color="burlywood",shape="triangle"];3245[label="xuu116/False",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 1811[label="",style="solid", color="burlywood", weight=3]; 3246[label="xuu116/True",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 1812[label="",style="solid", color="burlywood", weight=3]; 1816[label="xuu4910 < xuu5110",fontsize=16,color="blue",shape="box"];3247[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1822[label="",style="solid", color="blue", weight=3]; 3248[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1823[label="",style="solid", color="blue", weight=3]; 3249[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1824[label="",style="solid", color="blue", weight=3]; 3250[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1825[label="",style="solid", color="blue", weight=3]; 3251[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1826[label="",style="solid", color="blue", weight=3]; 3252[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1827[label="",style="solid", color="blue", weight=3]; 3253[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1828[label="",style="solid", color="blue", weight=3]; 3254[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1829[label="",style="solid", color="blue", weight=3]; 3255[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1830[label="",style="solid", color="blue", weight=3]; 3256[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1831[label="",style="solid", color="blue", weight=3]; 3257[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1832[label="",style="solid", color="blue", weight=3]; 3258[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1833[label="",style="solid", color="blue", weight=3]; 3259[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1834[label="",style="solid", color="blue", weight=3]; 3260[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1835[label="",style="solid", color="blue", weight=3]; 1817 -> 420[label="",style="dashed", color="red", weight=0]; 1817[label="xuu4910 == xuu5110 && xuu4911 <= xuu5111",fontsize=16,color="magenta"];1817 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1817 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1815[label="xuu126 || xuu127",fontsize=16,color="burlywood",shape="triangle"];3261[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];1815 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 1838[label="",style="solid", color="burlywood", weight=3]; 3262[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];1815 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 1839[label="",style="solid", color="burlywood", weight=3]; 1741 -> 1432[label="",style="dashed", color="red", weight=0]; 1741[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1741 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1433[label="",style="dashed", color="red", weight=0]; 1742[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1742 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1434[label="",style="dashed", color="red", weight=0]; 1743[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1743 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1435[label="",style="dashed", color="red", weight=0]; 1744[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1744 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1436[label="",style="dashed", color="red", weight=0]; 1745[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1745 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1437[label="",style="dashed", color="red", weight=0]; 1746[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1746 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1438[label="",style="dashed", color="red", weight=0]; 1747[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1747 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1439[label="",style="dashed", color="red", weight=0]; 1748[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1748 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1440[label="",style="dashed", color="red", weight=0]; 1749[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1749 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1441[label="",style="dashed", color="red", weight=0]; 1750[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1750 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1442[label="",style="dashed", color="red", weight=0]; 1751[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1751 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1443[label="",style="dashed", color="red", weight=0]; 1752[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1752 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1444[label="",style="dashed", color="red", weight=0]; 1753[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1753 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1445[label="",style="dashed", color="red", weight=0]; 1754[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1754 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1432[label="",style="dashed", color="red", weight=0]; 1755[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1755 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1433[label="",style="dashed", color="red", weight=0]; 1756[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1756 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1434[label="",style="dashed", color="red", weight=0]; 1757[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1757 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1435[label="",style="dashed", color="red", weight=0]; 1758[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1758 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1436[label="",style="dashed", color="red", weight=0]; 1759[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1759 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1437[label="",style="dashed", color="red", weight=0]; 1760[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1760 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1438[label="",style="dashed", color="red", weight=0]; 1761[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1761 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1439[label="",style="dashed", color="red", weight=0]; 1762[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1762 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1440[label="",style="dashed", color="red", weight=0]; 1763[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1763 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1441[label="",style="dashed", color="red", weight=0]; 1764[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1764 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1442[label="",style="dashed", color="red", weight=0]; 1765[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1765 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1443[label="",style="dashed", color="red", weight=0]; 1766[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1766 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1444[label="",style="dashed", color="red", weight=0]; 1767[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1767 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1445[label="",style="dashed", color="red", weight=0]; 1768[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1768 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1432[label="",style="dashed", color="red", weight=0]; 1769[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1769 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1433[label="",style="dashed", color="red", weight=0]; 1770[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1770 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1434[label="",style="dashed", color="red", weight=0]; 1771[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1771 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1435[label="",style="dashed", color="red", weight=0]; 1772[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1772 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1436[label="",style="dashed", color="red", weight=0]; 1773[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1773 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1437[label="",style="dashed", color="red", weight=0]; 1774[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1774 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1438[label="",style="dashed", color="red", weight=0]; 1775[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1775 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1439[label="",style="dashed", color="red", weight=0]; 1776[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1776 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1440[label="",style="dashed", color="red", weight=0]; 1777[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1777 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1441[label="",style="dashed", color="red", weight=0]; 1778[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1778 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1442[label="",style="dashed", color="red", weight=0]; 1779[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1779 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1443[label="",style="dashed", color="red", weight=0]; 1780[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1780 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1444[label="",style="dashed", color="red", weight=0]; 1781[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1781 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1445[label="",style="dashed", color="red", weight=0]; 1782[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1782 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1818[label="xuu4910 < xuu5110",fontsize=16,color="blue",shape="box"];3263[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1924[label="",style="solid", color="blue", weight=3]; 3264[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1925[label="",style="solid", color="blue", weight=3]; 3265[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1926[label="",style="solid", color="blue", weight=3]; 3266[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1927[label="",style="solid", color="blue", weight=3]; 3267[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1928[label="",style="solid", color="blue", weight=3]; 3268[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1929[label="",style="solid", color="blue", weight=3]; 3269[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1930[label="",style="solid", color="blue", weight=3]; 3270[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1931[label="",style="solid", color="blue", weight=3]; 3271[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1932[label="",style="solid", color="blue", weight=3]; 3272[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1933[label="",style="solid", color="blue", weight=3]; 3273[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1934[label="",style="solid", color="blue", weight=3]; 3274[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1935[label="",style="solid", color="blue", weight=3]; 3275[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1936[label="",style="solid", color="blue", weight=3]; 3276[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1818 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1937[label="",style="solid", color="blue", weight=3]; 1819 -> 420[label="",style="dashed", color="red", weight=0]; 1819[label="xuu4910 == xuu5110 && (xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112)",fontsize=16,color="magenta"];1819 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1819 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1783[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3277[label="xuu510/Double xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1783 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 1940[label="",style="solid", color="burlywood", weight=3]; 1784[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3278[label="xuu510/Double xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1784 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 1941[label="",style="solid", color="burlywood", weight=3]; 1785[label="xuu510",fontsize=16,color="green",shape="box"];1786 -> 166[label="",style="dashed", color="red", weight=0]; 1786[label="xuu490 == xuu510",fontsize=16,color="magenta"];1786 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1786 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1787[label="xuu490",fontsize=16,color="green",shape="box"];1788 -> 1093[label="",style="dashed", color="red", weight=0]; 1788[label="primCmpInt xuu4900 xuu5100",fontsize=16,color="magenta"];1788 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1788 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1790 -> 157[label="",style="dashed", color="red", weight=0]; 1790[label="xuu490 == xuu510",fontsize=16,color="magenta"];1790 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1790 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1789[label="compare2 xuu490 xuu510 xuu118",fontsize=16,color="burlywood",shape="triangle"];3279[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 1948[label="",style="solid", color="burlywood", weight=3]; 3280[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 1949[label="",style="solid", color="burlywood", weight=3]; 1791[label="EQ",fontsize=16,color="green",shape="box"];1792[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3281[label="xuu510/Float xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1792 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 1950[label="",style="solid", color="burlywood", weight=3]; 1793[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3282[label="xuu510/Float xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1793 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 1951[label="",style="solid", color="burlywood", weight=3]; 1795 -> 160[label="",style="dashed", color="red", weight=0]; 1795[label="xuu490 == xuu510",fontsize=16,color="magenta"];1795 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1795 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1794[label="compare2 xuu490 xuu510 xuu119",fontsize=16,color="burlywood",shape="triangle"];3283[label="xuu119/False",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 1954[label="",style="solid", color="burlywood", weight=3]; 3284[label="xuu119/True",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 1955[label="",style="solid", color="burlywood", weight=3]; 1797 -> 169[label="",style="dashed", color="red", weight=0]; 1797[label="xuu490 == xuu510",fontsize=16,color="magenta"];1797 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1797 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1796[label="compare2 xuu490 xuu510 xuu120",fontsize=16,color="burlywood",shape="triangle"];3285[label="xuu120/False",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 1958[label="",style="solid", color="burlywood", weight=3]; 3286[label="xuu120/True",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 1959[label="",style="solid", color="burlywood", weight=3]; 1799 -> 162[label="",style="dashed", color="red", weight=0]; 1799[label="xuu490 == xuu510",fontsize=16,color="magenta"];1799 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1799 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1798[label="compare2 xuu490 xuu510 xuu121",fontsize=16,color="burlywood",shape="triangle"];3287[label="xuu121/False",fontsize=10,color="white",style="solid",shape="box"];1798 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 1962[label="",style="solid", color="burlywood", weight=3]; 3288[label="xuu121/True",fontsize=10,color="white",style="solid",shape="box"];1798 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 1963[label="",style="solid", color="burlywood", weight=3]; 1800[label="primCmpChar (Char xuu4900) (Char xuu5100)",fontsize=16,color="black",shape="box"];1800 -> 1964[label="",style="solid", color="black", weight=3]; 1802 -> 163[label="",style="dashed", color="red", weight=0]; 1802[label="xuu490 == xuu510",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 xuu490 xuu510 xuu122",fontsize=16,color="burlywood",shape="triangle"];3289[label="xuu122/False",fontsize=10,color="white",style="solid",shape="box"];1801 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 1967[label="",style="solid", color="burlywood", weight=3]; 3290[label="xuu122/True",fontsize=10,color="white",style="solid",shape="box"];1801 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 1968[label="",style="solid", color="burlywood", weight=3]; 1803[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="blue",shape="box"];3291[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1803 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1969[label="",style="solid", color="blue", weight=3]; 3292[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1803 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1970[label="",style="solid", color="blue", weight=3]; 1804 -> 1971[label="",style="dashed", color="red", weight=0]; 1804[label="primCompAux xuu4900 xuu5100 (compare xuu4901 xuu5101)",fontsize=16,color="magenta"];1804 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1805[label="GT",fontsize=16,color="green",shape="box"];1806[label="LT",fontsize=16,color="green",shape="box"];1807[label="EQ",fontsize=16,color="green",shape="box"];1808[label="GT",fontsize=16,color="green",shape="box"];1360[label="primPlusInt (Pos xuu4120) (Pos xuu900)",fontsize=16,color="black",shape="box"];1360 -> 1467[label="",style="solid", color="black", weight=3]; 1361[label="primPlusInt (Pos xuu4120) (Neg xuu900)",fontsize=16,color="black",shape="box"];1361 -> 1468[label="",style="solid", color="black", weight=3]; 1362[label="primPlusInt (Neg xuu4120) (Pos xuu900)",fontsize=16,color="black",shape="box"];1362 -> 1469[label="",style="solid", color="black", weight=3]; 1363[label="primPlusInt (Neg xuu4120) (Neg xuu900)",fontsize=16,color="black",shape="box"];1363 -> 1470[label="",style="solid", color="black", weight=3]; 1403[label="primCmpInt (Pos (Succ xuu4900)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1403 -> 1473[label="",style="solid", color="black", weight=3]; 1404[label="primCmpInt (Pos (Succ xuu4900)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1404 -> 1474[label="",style="solid", color="black", weight=3]; 1405[label="primCmpInt (Pos Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];3293[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1475[label="",style="solid", color="burlywood", weight=3]; 3294[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1476[label="",style="solid", color="burlywood", weight=3]; 1406[label="primCmpInt (Pos Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];3295[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 1477[label="",style="solid", color="burlywood", weight=3]; 3296[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 1478[label="",style="solid", color="burlywood", weight=3]; 1407[label="primCmpInt (Neg (Succ xuu4900)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1407 -> 1479[label="",style="solid", color="black", weight=3]; 1408[label="primCmpInt (Neg (Succ xuu4900)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1408 -> 1480[label="",style="solid", color="black", weight=3]; 1409[label="primCmpInt (Neg Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];3297[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 1481[label="",style="solid", color="burlywood", weight=3]; 3298[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 1482[label="",style="solid", color="burlywood", weight=3]; 1410[label="primCmpInt (Neg Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];3299[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 1483[label="",style="solid", color="burlywood", weight=3]; 3300[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 1484[label="",style="solid", color="burlywood", weight=3]; 1411 -> 874[label="",style="dashed", color="red", weight=0]; 1411[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1412 -> 1485[label="",style="dashed", color="red", weight=0]; 1412[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 (FiniteMap.sizeFM xuu414 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413)",fontsize=16,color="magenta"];1412 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1228[label="",style="dashed", color="red", weight=0]; 1565[label="FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];1565 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1566[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1567[label="xuu243",fontsize=16,color="green",shape="box"];1568[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 otherwise",fontsize=16,color="black",shape="box"];1568 -> 1692[label="",style="solid", color="black", weight=3]; 1569[label="FiniteMap.mkBalBranch6Single_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1569 -> 1693[label="",style="solid", color="black", weight=3]; 2783[label="xuu244",fontsize=16,color="green",shape="box"];2784[label="FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu218",fontsize=16,color="black",shape="box"];2784 -> 2790[label="",style="solid", color="black", weight=3]; 2785[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];1471[label="Succ (Succ (primPlusNat xuu940 xuu600000))",fontsize=16,color="green",shape="box"];1471 -> 1577[label="",style="dashed", color="green", weight=3]; 1472[label="Succ xuu600000",fontsize=16,color="green",shape="box"];1809[label="GT",fontsize=16,color="green",shape="box"];1810[label="xuu115",fontsize=16,color="green",shape="box"];1811[label="not False",fontsize=16,color="black",shape="box"];1811 -> 1973[label="",style="solid", color="black", weight=3]; 1812[label="not True",fontsize=16,color="black",shape="box"];1812 -> 1974[label="",style="solid", color="black", weight=3]; 1822 -> 1387[label="",style="dashed", color="red", weight=0]; 1822[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1822 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1388[label="",style="dashed", color="red", weight=0]; 1823[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1823 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1389[label="",style="dashed", color="red", weight=0]; 1824[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1824 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1390[label="",style="dashed", color="red", weight=0]; 1825[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1825 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1391[label="",style="dashed", color="red", weight=0]; 1826[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1826 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1392[label="",style="dashed", color="red", weight=0]; 1827[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1827 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1393[label="",style="dashed", color="red", weight=0]; 1828[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1828 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1394[label="",style="dashed", color="red", weight=0]; 1829[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1829 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1395[label="",style="dashed", color="red", weight=0]; 1830[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1830 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1396[label="",style="dashed", color="red", weight=0]; 1831[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1831 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1397[label="",style="dashed", color="red", weight=0]; 1832[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1832 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1398[label="",style="dashed", color="red", weight=0]; 1833[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1833 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1399[label="",style="dashed", color="red", weight=0]; 1834[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1834 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1834 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1400[label="",style="dashed", color="red", weight=0]; 1835[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1835 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1835 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1836[label="xuu4910 == xuu5110",fontsize=16,color="blue",shape="box"];3301[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 2003[label="",style="solid", color="blue", weight=3]; 3302[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 2004[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 2005[label="",style="solid", color="blue", weight=3]; 3304[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 2006[label="",style="solid", color="blue", weight=3]; 3305[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 2007[label="",style="solid", color="blue", weight=3]; 3306[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 2008[label="",style="solid", color="blue", weight=3]; 3307[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 2009[label="",style="solid", color="blue", weight=3]; 3308[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 2010[label="",style="solid", color="blue", weight=3]; 3309[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 2011[label="",style="solid", color="blue", weight=3]; 3310[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 2012[label="",style="solid", color="blue", weight=3]; 3311[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 2013[label="",style="solid", color="blue", weight=3]; 3312[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 2014[label="",style="solid", color="blue", weight=3]; 3313[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 2015[label="",style="solid", color="blue", weight=3]; 3314[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 2016[label="",style="solid", color="blue", weight=3]; 1837[label="xuu4911 <= xuu5111",fontsize=16,color="blue",shape="box"];3315[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 2017[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 2018[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 2019[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 2020[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 2021[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 2022[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 2023[label="",style="solid", color="blue", weight=3]; 3322[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 2024[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2025[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2026[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2027[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2028[label="",style="solid", color="blue", weight=3]; 3327[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2029[label="",style="solid", color="blue", weight=3]; 3328[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2030[label="",style="solid", color="blue", weight=3]; 1838[label="False || xuu127",fontsize=16,color="black",shape="box"];1838 -> 2031[label="",style="solid", color="black", weight=3]; 1839[label="True || xuu127",fontsize=16,color="black",shape="box"];1839 -> 2032[label="",style="solid", color="black", weight=3]; 1840[label="xuu4910",fontsize=16,color="green",shape="box"];1841[label="xuu5110",fontsize=16,color="green",shape="box"];1842[label="xuu4910",fontsize=16,color="green",shape="box"];1843[label="xuu5110",fontsize=16,color="green",shape="box"];1844[label="xuu4910",fontsize=16,color="green",shape="box"];1845[label="xuu5110",fontsize=16,color="green",shape="box"];1846[label="xuu4910",fontsize=16,color="green",shape="box"];1847[label="xuu5110",fontsize=16,color="green",shape="box"];1848[label="xuu4910",fontsize=16,color="green",shape="box"];1849[label="xuu5110",fontsize=16,color="green",shape="box"];1850[label="xuu4910",fontsize=16,color="green",shape="box"];1851[label="xuu5110",fontsize=16,color="green",shape="box"];1852[label="xuu4910",fontsize=16,color="green",shape="box"];1853[label="xuu5110",fontsize=16,color="green",shape="box"];1854[label="xuu4910",fontsize=16,color="green",shape="box"];1855[label="xuu5110",fontsize=16,color="green",shape="box"];1856[label="xuu4910",fontsize=16,color="green",shape="box"];1857[label="xuu5110",fontsize=16,color="green",shape="box"];1858[label="xuu4910",fontsize=16,color="green",shape="box"];1859[label="xuu5110",fontsize=16,color="green",shape="box"];1860[label="xuu4910",fontsize=16,color="green",shape="box"];1861[label="xuu5110",fontsize=16,color="green",shape="box"];1862[label="xuu4910",fontsize=16,color="green",shape="box"];1863[label="xuu5110",fontsize=16,color="green",shape="box"];1864[label="xuu4910",fontsize=16,color="green",shape="box"];1865[label="xuu5110",fontsize=16,color="green",shape="box"];1866[label="xuu4910",fontsize=16,color="green",shape="box"];1867[label="xuu5110",fontsize=16,color="green",shape="box"];1868[label="xuu4910",fontsize=16,color="green",shape="box"];1869[label="xuu5110",fontsize=16,color="green",shape="box"];1870[label="xuu4910",fontsize=16,color="green",shape="box"];1871[label="xuu5110",fontsize=16,color="green",shape="box"];1872[label="xuu4910",fontsize=16,color="green",shape="box"];1873[label="xuu5110",fontsize=16,color="green",shape="box"];1874[label="xuu4910",fontsize=16,color="green",shape="box"];1875[label="xuu5110",fontsize=16,color="green",shape="box"];1876[label="xuu4910",fontsize=16,color="green",shape="box"];1877[label="xuu5110",fontsize=16,color="green",shape="box"];1878[label="xuu4910",fontsize=16,color="green",shape="box"];1879[label="xuu5110",fontsize=16,color="green",shape="box"];1880[label="xuu4910",fontsize=16,color="green",shape="box"];1881[label="xuu5110",fontsize=16,color="green",shape="box"];1882[label="xuu4910",fontsize=16,color="green",shape="box"];1883[label="xuu5110",fontsize=16,color="green",shape="box"];1884[label="xuu4910",fontsize=16,color="green",shape="box"];1885[label="xuu5110",fontsize=16,color="green",shape="box"];1886[label="xuu4910",fontsize=16,color="green",shape="box"];1887[label="xuu5110",fontsize=16,color="green",shape="box"];1888[label="xuu4910",fontsize=16,color="green",shape="box"];1889[label="xuu5110",fontsize=16,color="green",shape="box"];1890[label="xuu4910",fontsize=16,color="green",shape="box"];1891[label="xuu5110",fontsize=16,color="green",shape="box"];1892[label="xuu4910",fontsize=16,color="green",shape="box"];1893[label="xuu5110",fontsize=16,color="green",shape="box"];1894[label="xuu4910",fontsize=16,color="green",shape="box"];1895[label="xuu5110",fontsize=16,color="green",shape="box"];1896[label="xuu4910",fontsize=16,color="green",shape="box"];1897[label="xuu5110",fontsize=16,color="green",shape="box"];1898[label="xuu4910",fontsize=16,color="green",shape="box"];1899[label="xuu5110",fontsize=16,color="green",shape="box"];1900[label="xuu4910",fontsize=16,color="green",shape="box"];1901[label="xuu5110",fontsize=16,color="green",shape="box"];1902[label="xuu4910",fontsize=16,color="green",shape="box"];1903[label="xuu5110",fontsize=16,color="green",shape="box"];1904[label="xuu4910",fontsize=16,color="green",shape="box"];1905[label="xuu5110",fontsize=16,color="green",shape="box"];1906[label="xuu4910",fontsize=16,color="green",shape="box"];1907[label="xuu5110",fontsize=16,color="green",shape="box"];1908[label="xuu4910",fontsize=16,color="green",shape="box"];1909[label="xuu5110",fontsize=16,color="green",shape="box"];1910[label="xuu4910",fontsize=16,color="green",shape="box"];1911[label="xuu5110",fontsize=16,color="green",shape="box"];1912[label="xuu4910",fontsize=16,color="green",shape="box"];1913[label="xuu5110",fontsize=16,color="green",shape="box"];1914[label="xuu4910",fontsize=16,color="green",shape="box"];1915[label="xuu5110",fontsize=16,color="green",shape="box"];1916[label="xuu4910",fontsize=16,color="green",shape="box"];1917[label="xuu5110",fontsize=16,color="green",shape="box"];1918[label="xuu4910",fontsize=16,color="green",shape="box"];1919[label="xuu5110",fontsize=16,color="green",shape="box"];1920[label="xuu4910",fontsize=16,color="green",shape="box"];1921[label="xuu5110",fontsize=16,color="green",shape="box"];1922[label="xuu4910",fontsize=16,color="green",shape="box"];1923[label="xuu5110",fontsize=16,color="green",shape="box"];1924 -> 1387[label="",style="dashed", color="red", weight=0]; 1924[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1924 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1388[label="",style="dashed", color="red", weight=0]; 1925[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1925 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1389[label="",style="dashed", color="red", weight=0]; 1926[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1926 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1390[label="",style="dashed", color="red", weight=0]; 1927[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1927 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1391[label="",style="dashed", color="red", weight=0]; 1928[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1928 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1392[label="",style="dashed", color="red", weight=0]; 1929[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1929 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1393[label="",style="dashed", color="red", weight=0]; 1930[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1930 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1931 -> 1394[label="",style="dashed", color="red", weight=0]; 1931[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1931 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1932 -> 1395[label="",style="dashed", color="red", weight=0]; 1932[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1932 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1933 -> 1396[label="",style="dashed", color="red", weight=0]; 1933[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1933 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1934 -> 1397[label="",style="dashed", color="red", weight=0]; 1934[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1934 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1935 -> 1398[label="",style="dashed", color="red", weight=0]; 1935[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1935 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1936 -> 1399[label="",style="dashed", color="red", weight=0]; 1936[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1936 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1937 -> 1400[label="",style="dashed", color="red", weight=0]; 1937[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1937 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1938[label="xuu4910 == xuu5110",fontsize=16,color="blue",shape="box"];3329[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2061[label="",style="solid", color="blue", weight=3]; 3330[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2062[label="",style="solid", color="blue", weight=3]; 3331[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2063[label="",style="solid", color="blue", weight=3]; 3332[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2064[label="",style="solid", color="blue", weight=3]; 3333[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2065[label="",style="solid", color="blue", weight=3]; 3334[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2066[label="",style="solid", color="blue", weight=3]; 3335[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2067[label="",style="solid", color="blue", weight=3]; 3336[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 2068[label="",style="solid", color="blue", weight=3]; 3337[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 2069[label="",style="solid", color="blue", weight=3]; 3338[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2070[label="",style="solid", color="blue", weight=3]; 3339[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2071[label="",style="solid", color="blue", weight=3]; 3340[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2072[label="",style="solid", color="blue", weight=3]; 3341[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 2073[label="",style="solid", color="blue", weight=3]; 3342[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 2074[label="",style="solid", color="blue", weight=3]; 1939 -> 1815[label="",style="dashed", color="red", weight=0]; 1939[label="xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112",fontsize=16,color="magenta"];1939 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1940[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3343[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];1940 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 2077[label="",style="solid", color="burlywood", weight=3]; 3344[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];1940 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 2078[label="",style="solid", color="burlywood", weight=3]; 1941[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3345[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 2079[label="",style="solid", color="burlywood", weight=3]; 3346[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 2080[label="",style="solid", color="burlywood", weight=3]; 1942[label="xuu510",fontsize=16,color="green",shape="box"];1943[label="xuu490",fontsize=16,color="green",shape="box"];1944[label="xuu5100",fontsize=16,color="green",shape="box"];1945[label="xuu4900",fontsize=16,color="green",shape="box"];1946[label="xuu510",fontsize=16,color="green",shape="box"];1947[label="xuu490",fontsize=16,color="green",shape="box"];1948[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];1948 -> 2081[label="",style="solid", color="black", weight=3]; 1949[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];1949 -> 2082[label="",style="solid", color="black", weight=3]; 1950[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3347[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 2083[label="",style="solid", color="burlywood", weight=3]; 3348[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3348[label="",style="solid", color="burlywood", weight=9]; 3348 -> 2084[label="",style="solid", color="burlywood", weight=3]; 1951[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3349[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];1951 -> 3349[label="",style="solid", color="burlywood", weight=9]; 3349 -> 2085[label="",style="solid", color="burlywood", weight=3]; 3350[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];1951 -> 3350[label="",style="solid", color="burlywood", weight=9]; 3350 -> 2086[label="",style="solid", color="burlywood", weight=3]; 1952[label="xuu510",fontsize=16,color="green",shape="box"];1953[label="xuu490",fontsize=16,color="green",shape="box"];1954[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];1954 -> 2087[label="",style="solid", color="black", weight=3]; 1955[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];1955 -> 2088[label="",style="solid", color="black", weight=3]; 1956[label="xuu510",fontsize=16,color="green",shape="box"];1957[label="xuu490",fontsize=16,color="green",shape="box"];1958[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];1958 -> 2089[label="",style="solid", color="black", weight=3]; 1959[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];1959 -> 2090[label="",style="solid", color="black", weight=3]; 1960[label="xuu510",fontsize=16,color="green",shape="box"];1961[label="xuu490",fontsize=16,color="green",shape="box"];1962[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];1962 -> 2091[label="",style="solid", color="black", weight=3]; 1963[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];1963 -> 2092[label="",style="solid", color="black", weight=3]; 1964[label="primCmpNat xuu4900 xuu5100",fontsize=16,color="burlywood",shape="triangle"];3351[label="xuu4900/Succ xuu49000",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3351[label="",style="solid", color="burlywood", weight=9]; 3351 -> 2093[label="",style="solid", color="burlywood", weight=3]; 3352[label="xuu4900/Zero",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3352[label="",style="solid", color="burlywood", weight=9]; 3352 -> 2094[label="",style="solid", color="burlywood", weight=3]; 1965[label="xuu510",fontsize=16,color="green",shape="box"];1966[label="xuu490",fontsize=16,color="green",shape="box"];1967[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];1967 -> 2095[label="",style="solid", color="black", weight=3]; 1968[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];1968 -> 2096[label="",style="solid", color="black", weight=3]; 1969 -> 1539[label="",style="dashed", color="red", weight=0]; 1969[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="magenta"];1969 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1279[label="",style="dashed", color="red", weight=0]; 1970[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="magenta"];1970 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1559[label="",style="dashed", color="red", weight=0]; 1972[label="compare xuu4901 xuu5101",fontsize=16,color="magenta"];1972 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1971[label="primCompAux xuu4900 xuu5100 xuu128",fontsize=16,color="black",shape="triangle"];1971 -> 2103[label="",style="solid", color="black", weight=3]; 1467[label="Pos (primPlusNat xuu4120 xuu900)",fontsize=16,color="green",shape="box"];1467 -> 1571[label="",style="dashed", color="green", weight=3]; 1468[label="primMinusNat xuu4120 xuu900",fontsize=16,color="burlywood",shape="triangle"];3353[label="xuu4120/Succ xuu41200",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 1572[label="",style="solid", color="burlywood", weight=3]; 3354[label="xuu4120/Zero",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 1573[label="",style="solid", color="burlywood", weight=3]; 1469 -> 1468[label="",style="dashed", color="red", weight=0]; 1469[label="primMinusNat xuu900 xuu4120",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 xuu4120 xuu900)",fontsize=16,color="green",shape="box"];1470 -> 1576[label="",style="dashed", color="green", weight=3]; 1473[label="primCmpNat (Succ xuu4900) xuu510",fontsize=16,color="burlywood",shape="triangle"];3355[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3355[label="",style="solid", color="burlywood", weight=9]; 3355 -> 1578[label="",style="solid", color="burlywood", weight=3]; 3356[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3356[label="",style="solid", color="burlywood", weight=9]; 3356 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1474[label="GT",fontsize=16,color="green",shape="box"];1475[label="primCmpInt (Pos Zero) (Pos (Succ xuu5100))",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 xuu5100))",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 xuu510 (Succ xuu4900)",fontsize=16,color="burlywood",shape="triangle"];3357[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3357[label="",style="solid", color="burlywood", weight=9]; 3357 -> 1584[label="",style="solid", color="burlywood", weight=3]; 3358[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3358[label="",style="solid", color="burlywood", weight=9]; 3358 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1481[label="primCmpInt (Neg Zero) (Pos (Succ xuu5100))",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 xuu5100))",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 -> 1400[label="",style="dashed", color="red", weight=0]; 1486[label="FiniteMap.sizeFM xuu414 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413",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 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 xuu111",fontsize=16,color="burlywood",shape="triangle"];3359[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3359[label="",style="solid", color="burlywood", weight=9]; 3359 -> 1592[label="",style="solid", color="burlywood", weight=3]; 3360[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3360[label="",style="solid", color="burlywood", weight=9]; 3360 -> 1593[label="",style="solid", color="burlywood", weight=3]; 1691[label="xuu244",fontsize=16,color="green",shape="box"];1692[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 True",fontsize=16,color="black",shape="box"];1692 -> 2104[label="",style="solid", color="black", weight=3]; 1693[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu240 xuu241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) xuu244",fontsize=16,color="black",shape="box"];1693 -> 2105[label="",style="solid", color="black", weight=3]; 2790 -> 1228[label="",style="dashed", color="red", weight=0]; 2790[label="FiniteMap.sizeFM xuu218",fontsize=16,color="magenta"];2790 -> 2791[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1571[label="",style="dashed", color="red", weight=0]; 1577[label="primPlusNat xuu940 xuu600000",fontsize=16,color="magenta"];1577 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1973[label="True",fontsize=16,color="green",shape="box"];1974[label="False",fontsize=16,color="green",shape="box"];1975[label="xuu5110",fontsize=16,color="green",shape="box"];1976[label="xuu4910",fontsize=16,color="green",shape="box"];1977[label="xuu5110",fontsize=16,color="green",shape="box"];1978[label="xuu4910",fontsize=16,color="green",shape="box"];1979[label="xuu5110",fontsize=16,color="green",shape="box"];1980[label="xuu4910",fontsize=16,color="green",shape="box"];1981[label="xuu5110",fontsize=16,color="green",shape="box"];1982[label="xuu4910",fontsize=16,color="green",shape="box"];1983[label="xuu5110",fontsize=16,color="green",shape="box"];1984[label="xuu4910",fontsize=16,color="green",shape="box"];1985[label="xuu5110",fontsize=16,color="green",shape="box"];1986[label="xuu4910",fontsize=16,color="green",shape="box"];1987[label="xuu5110",fontsize=16,color="green",shape="box"];1988[label="xuu4910",fontsize=16,color="green",shape="box"];1989[label="xuu5110",fontsize=16,color="green",shape="box"];1990[label="xuu4910",fontsize=16,color="green",shape="box"];1991[label="xuu5110",fontsize=16,color="green",shape="box"];1992[label="xuu4910",fontsize=16,color="green",shape="box"];1993[label="xuu5110",fontsize=16,color="green",shape="box"];1994[label="xuu4910",fontsize=16,color="green",shape="box"];1995[label="xuu5110",fontsize=16,color="green",shape="box"];1996[label="xuu4910",fontsize=16,color="green",shape="box"];1997[label="xuu5110",fontsize=16,color="green",shape="box"];1998[label="xuu4910",fontsize=16,color="green",shape="box"];1999[label="xuu5110",fontsize=16,color="green",shape="box"];2000[label="xuu4910",fontsize=16,color="green",shape="box"];2001[label="xuu5110",fontsize=16,color="green",shape="box"];2002[label="xuu4910",fontsize=16,color="green",shape="box"];2003 -> 168[label="",style="dashed", color="red", weight=0]; 2003[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2003 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2004 -> 166[label="",style="dashed", color="red", weight=0]; 2004[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2004 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2005 -> 164[label="",style="dashed", color="red", weight=0]; 2005[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2005 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2006 -> 157[label="",style="dashed", color="red", weight=0]; 2006[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2006 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2007 -> 161[label="",style="dashed", color="red", weight=0]; 2007[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2007 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2008 -> 170[label="",style="dashed", color="red", weight=0]; 2008[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2008 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2009 -> 160[label="",style="dashed", color="red", weight=0]; 2009[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2009 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2010 -> 169[label="",style="dashed", color="red", weight=0]; 2010[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2010 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2011 -> 162[label="",style="dashed", color="red", weight=0]; 2011[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2011 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2012 -> 159[label="",style="dashed", color="red", weight=0]; 2012[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2012 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2013 -> 163[label="",style="dashed", color="red", weight=0]; 2013[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2013 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2014 -> 165[label="",style="dashed", color="red", weight=0]; 2014[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2014 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2015 -> 158[label="",style="dashed", color="red", weight=0]; 2015[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2015 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2016 -> 167[label="",style="dashed", color="red", weight=0]; 2016[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2016 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2017 -> 1432[label="",style="dashed", color="red", weight=0]; 2017[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2017 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2018 -> 1433[label="",style="dashed", color="red", weight=0]; 2018[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2018 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2019 -> 1434[label="",style="dashed", color="red", weight=0]; 2019[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2019 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2020 -> 1435[label="",style="dashed", color="red", weight=0]; 2020[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2020 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1436[label="",style="dashed", color="red", weight=0]; 2021[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2021 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1437[label="",style="dashed", color="red", weight=0]; 2022[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2022 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1438[label="",style="dashed", color="red", weight=0]; 2023[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2023 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1439[label="",style="dashed", color="red", weight=0]; 2024[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2024 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2025 -> 1440[label="",style="dashed", color="red", weight=0]; 2025[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2025 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2026 -> 1441[label="",style="dashed", color="red", weight=0]; 2026[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2026 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2027 -> 1442[label="",style="dashed", color="red", weight=0]; 2027[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2027 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1443[label="",style="dashed", color="red", weight=0]; 2028[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2028 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2029 -> 1444[label="",style="dashed", color="red", weight=0]; 2029[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2029 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1445[label="",style="dashed", color="red", weight=0]; 2030[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2030 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2031[label="xuu127",fontsize=16,color="green",shape="box"];2032[label="True",fontsize=16,color="green",shape="box"];2033[label="xuu5110",fontsize=16,color="green",shape="box"];2034[label="xuu4910",fontsize=16,color="green",shape="box"];2035[label="xuu5110",fontsize=16,color="green",shape="box"];2036[label="xuu4910",fontsize=16,color="green",shape="box"];2037[label="xuu5110",fontsize=16,color="green",shape="box"];2038[label="xuu4910",fontsize=16,color="green",shape="box"];2039[label="xuu5110",fontsize=16,color="green",shape="box"];2040[label="xuu4910",fontsize=16,color="green",shape="box"];2041[label="xuu5110",fontsize=16,color="green",shape="box"];2042[label="xuu4910",fontsize=16,color="green",shape="box"];2043[label="xuu5110",fontsize=16,color="green",shape="box"];2044[label="xuu4910",fontsize=16,color="green",shape="box"];2045[label="xuu5110",fontsize=16,color="green",shape="box"];2046[label="xuu4910",fontsize=16,color="green",shape="box"];2047[label="xuu5110",fontsize=16,color="green",shape="box"];2048[label="xuu4910",fontsize=16,color="green",shape="box"];2049[label="xuu5110",fontsize=16,color="green",shape="box"];2050[label="xuu4910",fontsize=16,color="green",shape="box"];2051[label="xuu5110",fontsize=16,color="green",shape="box"];2052[label="xuu4910",fontsize=16,color="green",shape="box"];2053[label="xuu5110",fontsize=16,color="green",shape="box"];2054[label="xuu4910",fontsize=16,color="green",shape="box"];2055[label="xuu5110",fontsize=16,color="green",shape="box"];2056[label="xuu4910",fontsize=16,color="green",shape="box"];2057[label="xuu5110",fontsize=16,color="green",shape="box"];2058[label="xuu4910",fontsize=16,color="green",shape="box"];2059[label="xuu5110",fontsize=16,color="green",shape="box"];2060[label="xuu4910",fontsize=16,color="green",shape="box"];2061 -> 168[label="",style="dashed", color="red", weight=0]; 2061[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2061 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2062 -> 166[label="",style="dashed", color="red", weight=0]; 2062[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2062 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2063 -> 164[label="",style="dashed", color="red", weight=0]; 2063[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2063 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2064 -> 157[label="",style="dashed", color="red", weight=0]; 2064[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2064 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2065 -> 161[label="",style="dashed", color="red", weight=0]; 2065[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2065 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2066 -> 170[label="",style="dashed", color="red", weight=0]; 2066[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2066 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2067 -> 160[label="",style="dashed", color="red", weight=0]; 2067[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2067 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2068 -> 169[label="",style="dashed", color="red", weight=0]; 2068[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2068 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2069 -> 162[label="",style="dashed", color="red", weight=0]; 2069[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2069 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2070 -> 159[label="",style="dashed", color="red", weight=0]; 2070[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2070 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2071 -> 163[label="",style="dashed", color="red", weight=0]; 2071[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2071 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2072 -> 165[label="",style="dashed", color="red", weight=0]; 2072[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2072 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2073 -> 158[label="",style="dashed", color="red", weight=0]; 2073[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2073 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2074 -> 167[label="",style="dashed", color="red", weight=0]; 2074[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2074 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2075[label="xuu4911 < xuu5111",fontsize=16,color="blue",shape="box"];3361[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 2205[label="",style="solid", color="blue", weight=3]; 3362[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 2206[label="",style="solid", color="blue", weight=3]; 3363[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 2207[label="",style="solid", color="blue", weight=3]; 3364[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 2208[label="",style="solid", color="blue", weight=3]; 3365[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 2209[label="",style="solid", color="blue", weight=3]; 3366[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 2210[label="",style="solid", color="blue", weight=3]; 3367[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 2211[label="",style="solid", color="blue", weight=3]; 3368[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 2212[label="",style="solid", color="blue", weight=3]; 3369[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2213[label="",style="solid", color="blue", weight=3]; 3370[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2214[label="",style="solid", color="blue", weight=3]; 3371[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2215[label="",style="solid", color="blue", weight=3]; 3372[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2216[label="",style="solid", color="blue", weight=3]; 3373[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2217[label="",style="solid", color="blue", weight=3]; 3374[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2218[label="",style="solid", color="blue", weight=3]; 2076 -> 420[label="",style="dashed", color="red", weight=0]; 2076[label="xuu4911 == xuu5111 && xuu4912 <= xuu5112",fontsize=16,color="magenta"];2076 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2077[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2077 -> 2221[label="",style="solid", color="black", weight=3]; 2078[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2078 -> 2222[label="",style="solid", color="black", weight=3]; 2079[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2079 -> 2223[label="",style="solid", color="black", weight=3]; 2080[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2080 -> 2224[label="",style="solid", color="black", weight=3]; 2081 -> 2225[label="",style="dashed", color="red", weight=0]; 2081[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2081 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2082[label="EQ",fontsize=16,color="green",shape="box"];2083[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2083 -> 2227[label="",style="solid", color="black", weight=3]; 2084[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2084 -> 2228[label="",style="solid", color="black", weight=3]; 2085[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2085 -> 2229[label="",style="solid", color="black", weight=3]; 2086[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2086 -> 2230[label="",style="solid", color="black", weight=3]; 2087 -> 2231[label="",style="dashed", color="red", weight=0]; 2087[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2087 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2088[label="EQ",fontsize=16,color="green",shape="box"];2089 -> 2233[label="",style="dashed", color="red", weight=0]; 2089[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2089 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2090[label="EQ",fontsize=16,color="green",shape="box"];2091 -> 2235[label="",style="dashed", color="red", weight=0]; 2091[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2091 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2092[label="EQ",fontsize=16,color="green",shape="box"];2093[label="primCmpNat (Succ xuu49000) xuu5100",fontsize=16,color="burlywood",shape="box"];3375[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];2093 -> 3375[label="",style="solid", color="burlywood", weight=9]; 3375 -> 2237[label="",style="solid", color="burlywood", weight=3]; 3376[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2093 -> 3376[label="",style="solid", color="burlywood", weight=9]; 3376 -> 2238[label="",style="solid", color="burlywood", weight=3]; 2094[label="primCmpNat Zero xuu5100",fontsize=16,color="burlywood",shape="box"];3377[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];2094 -> 3377[label="",style="solid", color="burlywood", weight=9]; 3377 -> 2239[label="",style="solid", color="burlywood", weight=3]; 3378[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2094 -> 3378[label="",style="solid", color="burlywood", weight=9]; 3378 -> 2240[label="",style="solid", color="burlywood", weight=3]; 2095 -> 2241[label="",style="dashed", color="red", weight=0]; 2095[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2095 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2096[label="EQ",fontsize=16,color="green",shape="box"];2097[label="xuu5100 * xuu4901",fontsize=16,color="burlywood",shape="triangle"];3379[label="xuu5100/Integer xuu51000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3379[label="",style="solid", color="burlywood", weight=9]; 3379 -> 2243[label="",style="solid", color="burlywood", weight=3]; 2098 -> 2097[label="",style="dashed", color="red", weight=0]; 2098[label="xuu4900 * xuu5101",fontsize=16,color="magenta"];2098 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2099 -> 515[label="",style="dashed", color="red", weight=0]; 2099[label="xuu5100 * xuu4901",fontsize=16,color="magenta"];2099 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2100 -> 515[label="",style="dashed", color="red", weight=0]; 2100[label="xuu4900 * xuu5101",fontsize=16,color="magenta"];2100 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2101[label="xuu5101",fontsize=16,color="green",shape="box"];2102[label="xuu4901",fontsize=16,color="green",shape="box"];2103 -> 2250[label="",style="dashed", color="red", weight=0]; 2103[label="primCompAux0 xuu128 (compare xuu4900 xuu5100)",fontsize=16,color="magenta"];2103 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1571[label="primPlusNat xuu4120 xuu900",fontsize=16,color="burlywood",shape="triangle"];3380[label="xuu4120/Succ xuu41200",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3380[label="",style="solid", color="burlywood", weight=9]; 3380 -> 1694[label="",style="solid", color="burlywood", weight=3]; 3381[label="xuu4120/Zero",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3381[label="",style="solid", color="burlywood", weight=9]; 3381 -> 1695[label="",style="solid", color="burlywood", weight=3]; 1572[label="primMinusNat (Succ xuu41200) xuu900",fontsize=16,color="burlywood",shape="box"];3382[label="xuu900/Succ xuu9000",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3382[label="",style="solid", color="burlywood", weight=9]; 3382 -> 1696[label="",style="solid", color="burlywood", weight=3]; 3383[label="xuu900/Zero",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3383[label="",style="solid", color="burlywood", weight=9]; 3383 -> 1697[label="",style="solid", color="burlywood", weight=3]; 1573[label="primMinusNat Zero xuu900",fontsize=16,color="burlywood",shape="box"];3384[label="xuu900/Succ xuu9000",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 1698[label="",style="solid", color="burlywood", weight=3]; 3385[label="xuu900/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 1699[label="",style="solid", color="burlywood", weight=3]; 1574[label="xuu4120",fontsize=16,color="green",shape="box"];1575[label="xuu900",fontsize=16,color="green",shape="box"];1576 -> 1571[label="",style="dashed", color="red", weight=0]; 1576[label="primPlusNat xuu4120 xuu900",fontsize=16,color="magenta"];1576 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1578[label="primCmpNat (Succ xuu4900) (Succ xuu5100)",fontsize=16,color="black",shape="box"];1578 -> 1704[label="",style="solid", color="black", weight=3]; 1579[label="primCmpNat (Succ xuu4900) Zero",fontsize=16,color="black",shape="box"];1579 -> 1705[label="",style="solid", color="black", weight=3]; 1580 -> 1480[label="",style="dashed", color="red", weight=0]; 1580[label="primCmpNat Zero (Succ xuu5100)",fontsize=16,color="magenta"];1580 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1707[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 xuu5100) (Succ xuu4900)",fontsize=16,color="black",shape="box"];1584 -> 1708[label="",style="solid", color="black", weight=3]; 1585[label="primCmpNat Zero (Succ xuu4900)",fontsize=16,color="black",shape="box"];1585 -> 1709[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 xuu5100) Zero",fontsize=16,color="magenta"];1588 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1589[label="EQ",fontsize=16,color="green",shape="box"];1590 -> 515[label="",style="dashed", color="red", weight=0]; 1590[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];1590 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1228[label="",style="dashed", color="red", weight=0]; 1591[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];1591 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1592[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];1592 -> 1715[label="",style="solid", color="black", weight=3]; 1593[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];1593 -> 1716[label="",style="solid", color="black", weight=3]; 2104[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="burlywood",shape="box"];3386[label="xuu243/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 2253[label="",style="solid", color="burlywood", weight=3]; 3387[label="xuu243/FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 2254[label="",style="solid", color="burlywood", weight=3]; 2105[label="FiniteMap.mkBranchResult xuu240 xuu241 xuu244 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243)",fontsize=16,color="black",shape="box"];2105 -> 2255[label="",style="solid", color="black", weight=3]; 2791[label="xuu218",fontsize=16,color="green",shape="box"];1702[label="xuu600000",fontsize=16,color="green",shape="box"];1703[label="xuu940",fontsize=16,color="green",shape="box"];2121[label="xuu5110",fontsize=16,color="green",shape="box"];2122[label="xuu4910",fontsize=16,color="green",shape="box"];2123[label="xuu5110",fontsize=16,color="green",shape="box"];2124[label="xuu4910",fontsize=16,color="green",shape="box"];2125[label="xuu5110",fontsize=16,color="green",shape="box"];2126[label="xuu4910",fontsize=16,color="green",shape="box"];2127[label="xuu5110",fontsize=16,color="green",shape="box"];2128[label="xuu4910",fontsize=16,color="green",shape="box"];2129[label="xuu5110",fontsize=16,color="green",shape="box"];2130[label="xuu4910",fontsize=16,color="green",shape="box"];2131[label="xuu5110",fontsize=16,color="green",shape="box"];2132[label="xuu4910",fontsize=16,color="green",shape="box"];2133[label="xuu5110",fontsize=16,color="green",shape="box"];2134[label="xuu4910",fontsize=16,color="green",shape="box"];2135[label="xuu5110",fontsize=16,color="green",shape="box"];2136[label="xuu4910",fontsize=16,color="green",shape="box"];2137[label="xuu5110",fontsize=16,color="green",shape="box"];2138[label="xuu4910",fontsize=16,color="green",shape="box"];2139[label="xuu5110",fontsize=16,color="green",shape="box"];2140[label="xuu4910",fontsize=16,color="green",shape="box"];2141[label="xuu5110",fontsize=16,color="green",shape="box"];2142[label="xuu4910",fontsize=16,color="green",shape="box"];2143[label="xuu5110",fontsize=16,color="green",shape="box"];2144[label="xuu4910",fontsize=16,color="green",shape="box"];2145[label="xuu5110",fontsize=16,color="green",shape="box"];2146[label="xuu4910",fontsize=16,color="green",shape="box"];2147[label="xuu5110",fontsize=16,color="green",shape="box"];2148[label="xuu4910",fontsize=16,color="green",shape="box"];2149[label="xuu4911",fontsize=16,color="green",shape="box"];2150[label="xuu5111",fontsize=16,color="green",shape="box"];2151[label="xuu4911",fontsize=16,color="green",shape="box"];2152[label="xuu5111",fontsize=16,color="green",shape="box"];2153[label="xuu4911",fontsize=16,color="green",shape="box"];2154[label="xuu5111",fontsize=16,color="green",shape="box"];2155[label="xuu4911",fontsize=16,color="green",shape="box"];2156[label="xuu5111",fontsize=16,color="green",shape="box"];2157[label="xuu4911",fontsize=16,color="green",shape="box"];2158[label="xuu5111",fontsize=16,color="green",shape="box"];2159[label="xuu4911",fontsize=16,color="green",shape="box"];2160[label="xuu5111",fontsize=16,color="green",shape="box"];2161[label="xuu4911",fontsize=16,color="green",shape="box"];2162[label="xuu5111",fontsize=16,color="green",shape="box"];2163[label="xuu4911",fontsize=16,color="green",shape="box"];2164[label="xuu5111",fontsize=16,color="green",shape="box"];2165[label="xuu4911",fontsize=16,color="green",shape="box"];2166[label="xuu5111",fontsize=16,color="green",shape="box"];2167[label="xuu4911",fontsize=16,color="green",shape="box"];2168[label="xuu5111",fontsize=16,color="green",shape="box"];2169[label="xuu4911",fontsize=16,color="green",shape="box"];2170[label="xuu5111",fontsize=16,color="green",shape="box"];2171[label="xuu4911",fontsize=16,color="green",shape="box"];2172[label="xuu5111",fontsize=16,color="green",shape="box"];2173[label="xuu4911",fontsize=16,color="green",shape="box"];2174[label="xuu5111",fontsize=16,color="green",shape="box"];2175[label="xuu4911",fontsize=16,color="green",shape="box"];2176[label="xuu5111",fontsize=16,color="green",shape="box"];2177[label="xuu5110",fontsize=16,color="green",shape="box"];2178[label="xuu4910",fontsize=16,color="green",shape="box"];2179[label="xuu5110",fontsize=16,color="green",shape="box"];2180[label="xuu4910",fontsize=16,color="green",shape="box"];2181[label="xuu5110",fontsize=16,color="green",shape="box"];2182[label="xuu4910",fontsize=16,color="green",shape="box"];2183[label="xuu5110",fontsize=16,color="green",shape="box"];2184[label="xuu4910",fontsize=16,color="green",shape="box"];2185[label="xuu5110",fontsize=16,color="green",shape="box"];2186[label="xuu4910",fontsize=16,color="green",shape="box"];2187[label="xuu5110",fontsize=16,color="green",shape="box"];2188[label="xuu4910",fontsize=16,color="green",shape="box"];2189[label="xuu5110",fontsize=16,color="green",shape="box"];2190[label="xuu4910",fontsize=16,color="green",shape="box"];2191[label="xuu5110",fontsize=16,color="green",shape="box"];2192[label="xuu4910",fontsize=16,color="green",shape="box"];2193[label="xuu5110",fontsize=16,color="green",shape="box"];2194[label="xuu4910",fontsize=16,color="green",shape="box"];2195[label="xuu5110",fontsize=16,color="green",shape="box"];2196[label="xuu4910",fontsize=16,color="green",shape="box"];2197[label="xuu5110",fontsize=16,color="green",shape="box"];2198[label="xuu4910",fontsize=16,color="green",shape="box"];2199[label="xuu5110",fontsize=16,color="green",shape="box"];2200[label="xuu4910",fontsize=16,color="green",shape="box"];2201[label="xuu5110",fontsize=16,color="green",shape="box"];2202[label="xuu4910",fontsize=16,color="green",shape="box"];2203[label="xuu5110",fontsize=16,color="green",shape="box"];2204[label="xuu4910",fontsize=16,color="green",shape="box"];2205 -> 1387[label="",style="dashed", color="red", weight=0]; 2205[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2205 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2206 -> 1388[label="",style="dashed", color="red", weight=0]; 2206[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2206 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1389[label="",style="dashed", color="red", weight=0]; 2207[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2207 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1390[label="",style="dashed", color="red", weight=0]; 2208[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2208 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1391[label="",style="dashed", color="red", weight=0]; 2209[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2209 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1392[label="",style="dashed", color="red", weight=0]; 2210[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2210 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1393[label="",style="dashed", color="red", weight=0]; 2211[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2211 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1394[label="",style="dashed", color="red", weight=0]; 2212[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2212 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1395[label="",style="dashed", color="red", weight=0]; 2213[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2213 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1396[label="",style="dashed", color="red", weight=0]; 2214[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2214 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1397[label="",style="dashed", color="red", weight=0]; 2215[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2215 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1398[label="",style="dashed", color="red", weight=0]; 2216[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2216 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1399[label="",style="dashed", color="red", weight=0]; 2217[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2217 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2218 -> 1400[label="",style="dashed", color="red", weight=0]; 2218[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2218 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2219[label="xuu4911 == xuu5111",fontsize=16,color="blue",shape="box"];3388[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2284[label="",style="solid", color="blue", weight=3]; 3389[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 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"];2219 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2286[label="",style="solid", color="blue", weight=3]; 3391[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2287[label="",style="solid", color="blue", weight=3]; 3392[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2288[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2289[label="",style="solid", color="blue", weight=3]; 3394[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2290[label="",style="solid", color="blue", weight=3]; 3395[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2291[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2292[label="",style="solid", color="blue", weight=3]; 3397[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2293[label="",style="solid", color="blue", weight=3]; 3398[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 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"];2219 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2295[label="",style="solid", color="blue", weight=3]; 3400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2296[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2297[label="",style="solid", color="blue", weight=3]; 2220[label="xuu4912 <= xuu5112",fontsize=16,color="blue",shape="box"];3402[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2298[label="",style="solid", color="blue", weight=3]; 3403[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 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"];2220 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2300[label="",style="solid", color="blue", weight=3]; 3405[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2301[label="",style="solid", color="blue", weight=3]; 3406[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2302[label="",style="solid", color="blue", weight=3]; 3407[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2303[label="",style="solid", color="blue", weight=3]; 3408[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2304[label="",style="solid", color="blue", weight=3]; 3409[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2305[label="",style="solid", color="blue", weight=3]; 3410[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2306[label="",style="solid", color="blue", weight=3]; 3411[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2307[label="",style="solid", color="blue", weight=3]; 3412[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2308[label="",style="solid", color="blue", weight=3]; 3413[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2309[label="",style="solid", color="blue", weight=3]; 3414[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2310[label="",style="solid", color="blue", weight=3]; 3415[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2311[label="",style="solid", color="blue", weight=3]; 2221 -> 1279[label="",style="dashed", color="red", weight=0]; 2221[label="compare (xuu4900 * Pos xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2221 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2222 -> 1279[label="",style="dashed", color="red", weight=0]; 2222[label="compare (xuu4900 * Pos xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2222 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2223 -> 1279[label="",style="dashed", color="red", weight=0]; 2223[label="compare (xuu4900 * Neg xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2223 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2224 -> 1279[label="",style="dashed", color="red", weight=0]; 2224[label="compare (xuu4900 * Neg xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2224 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2226 -> 1435[label="",style="dashed", color="red", weight=0]; 2226[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2226 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2225[label="compare1 xuu490 xuu510 xuu129",fontsize=16,color="burlywood",shape="triangle"];3416[label="xuu129/False",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3416[label="",style="solid", color="burlywood", weight=9]; 3416 -> 2322[label="",style="solid", color="burlywood", weight=3]; 3417[label="xuu129/True",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3417[label="",style="solid", color="burlywood", weight=9]; 3417 -> 2323[label="",style="solid", color="burlywood", weight=3]; 2227 -> 1279[label="",style="dashed", color="red", weight=0]; 2227[label="compare (xuu4900 * Pos xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2227 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2228 -> 1279[label="",style="dashed", color="red", weight=0]; 2228[label="compare (xuu4900 * Pos xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2228 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2229 -> 1279[label="",style="dashed", color="red", weight=0]; 2229[label="compare (xuu4900 * Neg xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2229 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2230 -> 1279[label="",style="dashed", color="red", weight=0]; 2230[label="compare (xuu4900 * Neg xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2230 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2232 -> 1438[label="",style="dashed", color="red", weight=0]; 2232[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2232 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2231[label="compare1 xuu490 xuu510 xuu130",fontsize=16,color="burlywood",shape="triangle"];3418[label="xuu130/False",fontsize=10,color="white",style="solid",shape="box"];2231 -> 3418[label="",style="solid", color="burlywood", weight=9]; 3418 -> 2334[label="",style="solid", color="burlywood", weight=3]; 3419[label="xuu130/True",fontsize=10,color="white",style="solid",shape="box"];2231 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 2335[label="",style="solid", color="burlywood", weight=3]; 2234 -> 1439[label="",style="dashed", color="red", weight=0]; 2234[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2234 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2233[label="compare1 xuu490 xuu510 xuu131",fontsize=16,color="burlywood",shape="triangle"];3420[label="xuu131/False",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 2338[label="",style="solid", color="burlywood", weight=3]; 3421[label="xuu131/True",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 2339[label="",style="solid", color="burlywood", weight=3]; 2236 -> 1440[label="",style="dashed", color="red", weight=0]; 2236[label="xuu490 <= xuu510",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 xuu490 xuu510 xuu132",fontsize=16,color="burlywood",shape="triangle"];3422[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 2342[label="",style="solid", color="burlywood", weight=3]; 3423[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 2343[label="",style="solid", color="burlywood", weight=3]; 2237[label="primCmpNat (Succ xuu49000) (Succ xuu51000)",fontsize=16,color="black",shape="box"];2237 -> 2344[label="",style="solid", color="black", weight=3]; 2238[label="primCmpNat (Succ xuu49000) Zero",fontsize=16,color="black",shape="box"];2238 -> 2345[label="",style="solid", color="black", weight=3]; 2239[label="primCmpNat Zero (Succ xuu51000)",fontsize=16,color="black",shape="box"];2239 -> 2346[label="",style="solid", color="black", weight=3]; 2240[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2240 -> 2347[label="",style="solid", color="black", weight=3]; 2242 -> 1442[label="",style="dashed", color="red", weight=0]; 2242[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2242 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2241[label="compare1 xuu490 xuu510 xuu133",fontsize=16,color="burlywood",shape="triangle"];3424[label="xuu133/False",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 2350[label="",style="solid", color="burlywood", weight=3]; 3425[label="xuu133/True",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2351[label="",style="solid", color="burlywood", weight=3]; 2243[label="Integer xuu51000 * xuu4901",fontsize=16,color="burlywood",shape="box"];3426[label="xuu4901/Integer xuu49010",fontsize=10,color="white",style="solid",shape="box"];2243 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2352[label="",style="solid", color="burlywood", weight=3]; 2244[label="xuu5101",fontsize=16,color="green",shape="box"];2245[label="xuu4900",fontsize=16,color="green",shape="box"];2246[label="xuu4901",fontsize=16,color="green",shape="box"];2247[label="xuu5100",fontsize=16,color="green",shape="box"];2248[label="xuu5101",fontsize=16,color="green",shape="box"];2249[label="xuu4900",fontsize=16,color="green",shape="box"];2251[label="compare xuu4900 xuu5100",fontsize=16,color="blue",shape="box"];3427[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2353[label="",style="solid", color="blue", weight=3]; 3428[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2354[label="",style="solid", color="blue", weight=3]; 3429[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2355[label="",style="solid", color="blue", weight=3]; 3430[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2356[label="",style="solid", color="blue", weight=3]; 3431[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2357[label="",style="solid", color="blue", weight=3]; 3432[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2358[label="",style="solid", color="blue", weight=3]; 3433[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2359[label="",style="solid", color="blue", weight=3]; 3434[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2360[label="",style="solid", color="blue", weight=3]; 3435[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2361[label="",style="solid", color="blue", weight=3]; 3436[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2362[label="",style="solid", color="blue", weight=3]; 3437[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2363[label="",style="solid", color="blue", weight=3]; 3438[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2364[label="",style="solid", color="blue", weight=3]; 3439[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2365[label="",style="solid", color="blue", weight=3]; 3440[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2251 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2366[label="",style="solid", color="blue", weight=3]; 2252[label="xuu128",fontsize=16,color="green",shape="box"];2250[label="primCompAux0 xuu137 xuu138",fontsize=16,color="burlywood",shape="triangle"];3441[label="xuu138/LT",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 2367[label="",style="solid", color="burlywood", weight=3]; 3442[label="xuu138/EQ",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 2368[label="",style="solid", color="burlywood", weight=3]; 3443[label="xuu138/GT",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 2369[label="",style="solid", color="burlywood", weight=3]; 1694[label="primPlusNat (Succ xuu41200) xuu900",fontsize=16,color="burlywood",shape="box"];3444[label="xuu900/Succ xuu9000",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 2106[label="",style="solid", color="burlywood", weight=3]; 3445[label="xuu900/Zero",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 2107[label="",style="solid", color="burlywood", weight=3]; 1695[label="primPlusNat Zero xuu900",fontsize=16,color="burlywood",shape="box"];3446[label="xuu900/Succ xuu9000",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 2108[label="",style="solid", color="burlywood", weight=3]; 3447[label="xuu900/Zero",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 2109[label="",style="solid", color="burlywood", weight=3]; 1696[label="primMinusNat (Succ xuu41200) (Succ xuu9000)",fontsize=16,color="black",shape="box"];1696 -> 2110[label="",style="solid", color="black", weight=3]; 1697[label="primMinusNat (Succ xuu41200) Zero",fontsize=16,color="black",shape="box"];1697 -> 2111[label="",style="solid", color="black", weight=3]; 1698[label="primMinusNat Zero (Succ xuu9000)",fontsize=16,color="black",shape="box"];1698 -> 2112[label="",style="solid", color="black", weight=3]; 1699[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1699 -> 2113[label="",style="solid", color="black", weight=3]; 1700[label="xuu900",fontsize=16,color="green",shape="box"];1701[label="xuu4120",fontsize=16,color="green",shape="box"];1704 -> 1964[label="",style="dashed", color="red", weight=0]; 1704[label="primCmpNat xuu4900 xuu5100",fontsize=16,color="magenta"];1704 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1704 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1705[label="GT",fontsize=16,color="green",shape="box"];1706[label="Zero",fontsize=16,color="green",shape="box"];1707[label="xuu5100",fontsize=16,color="green",shape="box"];1708 -> 1964[label="",style="dashed", color="red", weight=0]; 1708[label="primCmpNat xuu5100 xuu4900",fontsize=16,color="magenta"];1708 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1708 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1709[label="LT",fontsize=16,color="green",shape="box"];1710[label="xuu5100",fontsize=16,color="green",shape="box"];1711[label="Zero",fontsize=16,color="green",shape="box"];1712 -> 1228[label="",style="dashed", color="red", weight=0]; 1712[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];1712 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1713[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1714[label="xuu414",fontsize=16,color="green",shape="box"];1715[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];1715 -> 2119[label="",style="solid", color="black", weight=3]; 1716[label="FiniteMap.mkBalBranch6Single_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24",fontsize=16,color="black",shape="box"];1716 -> 2120[label="",style="solid", color="black", weight=3]; 2253[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 FiniteMap.EmptyFM xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 FiniteMap.EmptyFM xuu244)",fontsize=16,color="black",shape="box"];2253 -> 2387[label="",style="solid", color="black", weight=3]; 2254[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 (FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434) xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 (FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434) xuu244)",fontsize=16,color="black",shape="box"];2254 -> 2388[label="",style="solid", color="black", weight=3]; 2255[label="FiniteMap.Branch xuu240 xuu241 (FiniteMap.mkBranchUnbox xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243))) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) xuu244",fontsize=16,color="green",shape="box"];2255 -> 2389[label="",style="dashed", color="green", weight=3]; 2255 -> 2390[label="",style="dashed", color="green", weight=3]; 2256[label="xuu5111",fontsize=16,color="green",shape="box"];2257[label="xuu4911",fontsize=16,color="green",shape="box"];2258[label="xuu5111",fontsize=16,color="green",shape="box"];2259[label="xuu4911",fontsize=16,color="green",shape="box"];2260[label="xuu5111",fontsize=16,color="green",shape="box"];2261[label="xuu4911",fontsize=16,color="green",shape="box"];2262[label="xuu5111",fontsize=16,color="green",shape="box"];2263[label="xuu4911",fontsize=16,color="green",shape="box"];2264[label="xuu5111",fontsize=16,color="green",shape="box"];2265[label="xuu4911",fontsize=16,color="green",shape="box"];2266[label="xuu5111",fontsize=16,color="green",shape="box"];2267[label="xuu4911",fontsize=16,color="green",shape="box"];2268[label="xuu5111",fontsize=16,color="green",shape="box"];2269[label="xuu4911",fontsize=16,color="green",shape="box"];2270[label="xuu5111",fontsize=16,color="green",shape="box"];2271[label="xuu4911",fontsize=16,color="green",shape="box"];2272[label="xuu5111",fontsize=16,color="green",shape="box"];2273[label="xuu4911",fontsize=16,color="green",shape="box"];2274[label="xuu5111",fontsize=16,color="green",shape="box"];2275[label="xuu4911",fontsize=16,color="green",shape="box"];2276[label="xuu5111",fontsize=16,color="green",shape="box"];2277[label="xuu4911",fontsize=16,color="green",shape="box"];2278[label="xuu5111",fontsize=16,color="green",shape="box"];2279[label="xuu4911",fontsize=16,color="green",shape="box"];2280[label="xuu5111",fontsize=16,color="green",shape="box"];2281[label="xuu4911",fontsize=16,color="green",shape="box"];2282[label="xuu5111",fontsize=16,color="green",shape="box"];2283[label="xuu4911",fontsize=16,color="green",shape="box"];2284 -> 168[label="",style="dashed", color="red", weight=0]; 2284[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2284 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2285 -> 166[label="",style="dashed", color="red", weight=0]; 2285[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2285 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2286 -> 164[label="",style="dashed", color="red", weight=0]; 2286[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2286 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2287 -> 157[label="",style="dashed", color="red", weight=0]; 2287[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2287 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2288 -> 161[label="",style="dashed", color="red", weight=0]; 2288[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2288 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2289 -> 170[label="",style="dashed", color="red", weight=0]; 2289[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2289 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2290 -> 160[label="",style="dashed", color="red", weight=0]; 2290[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2290 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2291 -> 169[label="",style="dashed", color="red", weight=0]; 2291[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2291 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2292 -> 162[label="",style="dashed", color="red", weight=0]; 2292[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2292 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2293 -> 159[label="",style="dashed", color="red", weight=0]; 2293[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2293 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2294 -> 163[label="",style="dashed", color="red", weight=0]; 2294[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2294 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2295 -> 165[label="",style="dashed", color="red", weight=0]; 2295[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2295 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2296 -> 158[label="",style="dashed", color="red", weight=0]; 2296[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2296 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2297 -> 167[label="",style="dashed", color="red", weight=0]; 2297[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2297 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2298 -> 1432[label="",style="dashed", color="red", weight=0]; 2298[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2298 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1433[label="",style="dashed", color="red", weight=0]; 2299[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2299 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1434[label="",style="dashed", color="red", weight=0]; 2300[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2300 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1435[label="",style="dashed", color="red", weight=0]; 2301[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2301 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1436[label="",style="dashed", color="red", weight=0]; 2302[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2302 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2303 -> 1437[label="",style="dashed", color="red", weight=0]; 2303[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2303 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1438[label="",style="dashed", color="red", weight=0]; 2304[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2304 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2305 -> 1439[label="",style="dashed", color="red", weight=0]; 2305[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2305 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2306 -> 1440[label="",style="dashed", color="red", weight=0]; 2306[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2306 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1441[label="",style="dashed", color="red", weight=0]; 2307[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2307 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1442[label="",style="dashed", color="red", weight=0]; 2308[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2308 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1443[label="",style="dashed", color="red", weight=0]; 2309[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2309 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1444[label="",style="dashed", color="red", weight=0]; 2310[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2310 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1445[label="",style="dashed", color="red", weight=0]; 2311[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2311 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2312 -> 515[label="",style="dashed", color="red", weight=0]; 2312[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2312 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2313 -> 515[label="",style="dashed", color="red", weight=0]; 2313[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2313 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2314 -> 515[label="",style="dashed", color="red", weight=0]; 2314[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2314 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2315 -> 515[label="",style="dashed", color="red", weight=0]; 2315[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2315 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2316 -> 515[label="",style="dashed", color="red", weight=0]; 2316[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2316 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2317 -> 515[label="",style="dashed", color="red", weight=0]; 2317[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2317 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2318 -> 515[label="",style="dashed", color="red", weight=0]; 2318[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2318 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2319 -> 515[label="",style="dashed", color="red", weight=0]; 2319[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2319 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2320[label="xuu490",fontsize=16,color="green",shape="box"];2321[label="xuu510",fontsize=16,color="green",shape="box"];2322[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2322 -> 2463[label="",style="solid", color="black", weight=3]; 2323[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2323 -> 2464[label="",style="solid", color="black", weight=3]; 2324 -> 515[label="",style="dashed", color="red", weight=0]; 2324[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2324 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2325 -> 515[label="",style="dashed", color="red", weight=0]; 2325[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2325 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2326 -> 515[label="",style="dashed", color="red", weight=0]; 2326[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2326 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2327 -> 515[label="",style="dashed", color="red", weight=0]; 2327[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2327 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2328 -> 515[label="",style="dashed", color="red", weight=0]; 2328[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2328 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2329 -> 515[label="",style="dashed", color="red", weight=0]; 2329[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2329 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2330 -> 515[label="",style="dashed", color="red", weight=0]; 2330[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2330 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2331 -> 515[label="",style="dashed", color="red", weight=0]; 2331[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2331 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2332[label="xuu490",fontsize=16,color="green",shape="box"];2333[label="xuu510",fontsize=16,color="green",shape="box"];2334[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2334 -> 2481[label="",style="solid", color="black", weight=3]; 2335[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2335 -> 2482[label="",style="solid", color="black", weight=3]; 2336[label="xuu490",fontsize=16,color="green",shape="box"];2337[label="xuu510",fontsize=16,color="green",shape="box"];2338[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2338 -> 2483[label="",style="solid", color="black", weight=3]; 2339[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2339 -> 2484[label="",style="solid", color="black", weight=3]; 2340[label="xuu490",fontsize=16,color="green",shape="box"];2341[label="xuu510",fontsize=16,color="green",shape="box"];2342[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2342 -> 2485[label="",style="solid", color="black", weight=3]; 2343[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2343 -> 2486[label="",style="solid", color="black", weight=3]; 2344 -> 1964[label="",style="dashed", color="red", weight=0]; 2344[label="primCmpNat xuu49000 xuu51000",fontsize=16,color="magenta"];2344 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2345[label="GT",fontsize=16,color="green",shape="box"];2346[label="LT",fontsize=16,color="green",shape="box"];2347[label="EQ",fontsize=16,color="green",shape="box"];2348[label="xuu490",fontsize=16,color="green",shape="box"];2349[label="xuu510",fontsize=16,color="green",shape="box"];2350[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2350 -> 2489[label="",style="solid", color="black", weight=3]; 2351[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2351 -> 2490[label="",style="solid", color="black", weight=3]; 2352[label="Integer xuu51000 * Integer xuu49010",fontsize=16,color="black",shape="box"];2352 -> 2491[label="",style="solid", color="black", weight=3]; 2353 -> 1535[label="",style="dashed", color="red", weight=0]; 2353[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2353 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2354 -> 1537[label="",style="dashed", color="red", weight=0]; 2354[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2354 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2355 -> 1539[label="",style="dashed", color="red", weight=0]; 2355[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2355 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2356 -> 1541[label="",style="dashed", color="red", weight=0]; 2356[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2356 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1543[label="",style="dashed", color="red", weight=0]; 2357[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2357 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1545[label="",style="dashed", color="red", weight=0]; 2358[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2358 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1547[label="",style="dashed", color="red", weight=0]; 2359[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2359 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1549[label="",style="dashed", color="red", weight=0]; 2360[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2360 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1551[label="",style="dashed", color="red", weight=0]; 2361[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2361 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1553[label="",style="dashed", color="red", weight=0]; 2362[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2362 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1555[label="",style="dashed", color="red", weight=0]; 2363[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2363 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1557[label="",style="dashed", color="red", weight=0]; 2364[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2364 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1559[label="",style="dashed", color="red", weight=0]; 2365[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2365 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1279[label="",style="dashed", color="red", weight=0]; 2366[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2366 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2367[label="primCompAux0 xuu137 LT",fontsize=16,color="black",shape="box"];2367 -> 2520[label="",style="solid", color="black", weight=3]; 2368[label="primCompAux0 xuu137 EQ",fontsize=16,color="black",shape="box"];2368 -> 2521[label="",style="solid", color="black", weight=3]; 2369[label="primCompAux0 xuu137 GT",fontsize=16,color="black",shape="box"];2369 -> 2522[label="",style="solid", color="black", weight=3]; 2106[label="primPlusNat (Succ xuu41200) (Succ xuu9000)",fontsize=16,color="black",shape="box"];2106 -> 2370[label="",style="solid", color="black", weight=3]; 2107[label="primPlusNat (Succ xuu41200) Zero",fontsize=16,color="black",shape="box"];2107 -> 2371[label="",style="solid", color="black", weight=3]; 2108[label="primPlusNat Zero (Succ xuu9000)",fontsize=16,color="black",shape="box"];2108 -> 2372[label="",style="solid", color="black", weight=3]; 2109[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2109 -> 2373[label="",style="solid", color="black", weight=3]; 2110 -> 1468[label="",style="dashed", color="red", weight=0]; 2110[label="primMinusNat xuu41200 xuu9000",fontsize=16,color="magenta"];2110 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2111[label="Pos (Succ xuu41200)",fontsize=16,color="green",shape="box"];2112[label="Neg (Succ xuu9000)",fontsize=16,color="green",shape="box"];2113[label="Pos Zero",fontsize=16,color="green",shape="box"];2114[label="xuu4900",fontsize=16,color="green",shape="box"];2115[label="xuu5100",fontsize=16,color="green",shape="box"];2116[label="xuu5100",fontsize=16,color="green",shape="box"];2117[label="xuu4900",fontsize=16,color="green",shape="box"];2118[label="xuu413",fontsize=16,color="green",shape="box"];2119[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];2119 -> 2376[label="",style="solid", color="black", weight=3]; 2120 -> 2377[label="",style="dashed", color="red", weight=0]; 2120[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu410 xuu411 xuu413 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu19,xuu20) xuu21 xuu414 xuu24)",fontsize=16,color="magenta"];2120 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2387[label="error []",fontsize=16,color="red",shape="box"];2388 -> 2527[label="",style="dashed", color="red", weight=0]; 2388[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2430 xuu2431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu19,xuu20) xuu21 xuu41 xuu2433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu240 xuu241 xuu2434 xuu244)",fontsize=16,color="magenta"];2388 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2681[label="",style="dashed", color="red", weight=0]; 2389[label="FiniteMap.mkBranchUnbox xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243))",fontsize=16,color="magenta"];2389 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2390[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="black",shape="triangle"];2390 -> 2541[label="",style="solid", color="black", weight=3]; 2391[label="xuu5111",fontsize=16,color="green",shape="box"];2392[label="xuu4911",fontsize=16,color="green",shape="box"];2393[label="xuu5111",fontsize=16,color="green",shape="box"];2394[label="xuu4911",fontsize=16,color="green",shape="box"];2395[label="xuu5111",fontsize=16,color="green",shape="box"];2396[label="xuu4911",fontsize=16,color="green",shape="box"];2397[label="xuu5111",fontsize=16,color="green",shape="box"];2398[label="xuu4911",fontsize=16,color="green",shape="box"];2399[label="xuu5111",fontsize=16,color="green",shape="box"];2400[label="xuu4911",fontsize=16,color="green",shape="box"];2401[label="xuu5111",fontsize=16,color="green",shape="box"];2402[label="xuu4911",fontsize=16,color="green",shape="box"];2403[label="xuu5111",fontsize=16,color="green",shape="box"];2404[label="xuu4911",fontsize=16,color="green",shape="box"];2405[label="xuu5111",fontsize=16,color="green",shape="box"];2406[label="xuu4911",fontsize=16,color="green",shape="box"];2407[label="xuu5111",fontsize=16,color="green",shape="box"];2408[label="xuu4911",fontsize=16,color="green",shape="box"];2409[label="xuu5111",fontsize=16,color="green",shape="box"];2410[label="xuu4911",fontsize=16,color="green",shape="box"];2411[label="xuu5111",fontsize=16,color="green",shape="box"];2412[label="xuu4911",fontsize=16,color="green",shape="box"];2413[label="xuu5111",fontsize=16,color="green",shape="box"];2414[label="xuu4911",fontsize=16,color="green",shape="box"];2415[label="xuu5111",fontsize=16,color="green",shape="box"];2416[label="xuu4911",fontsize=16,color="green",shape="box"];2417[label="xuu5111",fontsize=16,color="green",shape="box"];2418[label="xuu4911",fontsize=16,color="green",shape="box"];2419[label="xuu4912",fontsize=16,color="green",shape="box"];2420[label="xuu5112",fontsize=16,color="green",shape="box"];2421[label="xuu4912",fontsize=16,color="green",shape="box"];2422[label="xuu5112",fontsize=16,color="green",shape="box"];2423[label="xuu4912",fontsize=16,color="green",shape="box"];2424[label="xuu5112",fontsize=16,color="green",shape="box"];2425[label="xuu4912",fontsize=16,color="green",shape="box"];2426[label="xuu5112",fontsize=16,color="green",shape="box"];2427[label="xuu4912",fontsize=16,color="green",shape="box"];2428[label="xuu5112",fontsize=16,color="green",shape="box"];2429[label="xuu4912",fontsize=16,color="green",shape="box"];2430[label="xuu5112",fontsize=16,color="green",shape="box"];2431[label="xuu4912",fontsize=16,color="green",shape="box"];2432[label="xuu5112",fontsize=16,color="green",shape="box"];2433[label="xuu4912",fontsize=16,color="green",shape="box"];2434[label="xuu5112",fontsize=16,color="green",shape="box"];2435[label="xuu4912",fontsize=16,color="green",shape="box"];2436[label="xuu5112",fontsize=16,color="green",shape="box"];2437[label="xuu4912",fontsize=16,color="green",shape="box"];2438[label="xuu5112",fontsize=16,color="green",shape="box"];2439[label="xuu4912",fontsize=16,color="green",shape="box"];2440[label="xuu5112",fontsize=16,color="green",shape="box"];2441[label="xuu4912",fontsize=16,color="green",shape="box"];2442[label="xuu5112",fontsize=16,color="green",shape="box"];2443[label="xuu4912",fontsize=16,color="green",shape="box"];2444[label="xuu5112",fontsize=16,color="green",shape="box"];2445[label="xuu4912",fontsize=16,color="green",shape="box"];2446[label="xuu5112",fontsize=16,color="green",shape="box"];2447[label="xuu5100",fontsize=16,color="green",shape="box"];2448[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2449[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2450[label="xuu4900",fontsize=16,color="green",shape="box"];2451[label="xuu5100",fontsize=16,color="green",shape="box"];2452[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2453[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2454[label="xuu4900",fontsize=16,color="green",shape="box"];2455[label="xuu5100",fontsize=16,color="green",shape="box"];2456[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2457[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2458[label="xuu4900",fontsize=16,color="green",shape="box"];2459[label="xuu5100",fontsize=16,color="green",shape="box"];2460[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2461[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2462[label="xuu4900",fontsize=16,color="green",shape="box"];2463[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2463 -> 2542[label="",style="solid", color="black", weight=3]; 2464[label="LT",fontsize=16,color="green",shape="box"];2465[label="xuu5100",fontsize=16,color="green",shape="box"];2466[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2467[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2468[label="xuu4900",fontsize=16,color="green",shape="box"];2469[label="xuu5100",fontsize=16,color="green",shape="box"];2470[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2471[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2472[label="xuu4900",fontsize=16,color="green",shape="box"];2473[label="xuu5100",fontsize=16,color="green",shape="box"];2474[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2475[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2476[label="xuu4900",fontsize=16,color="green",shape="box"];2477[label="xuu5100",fontsize=16,color="green",shape="box"];2478[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2479[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2480[label="xuu4900",fontsize=16,color="green",shape="box"];2481[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2481 -> 2543[label="",style="solid", color="black", weight=3]; 2482[label="LT",fontsize=16,color="green",shape="box"];2483[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2483 -> 2544[label="",style="solid", color="black", weight=3]; 2484[label="LT",fontsize=16,color="green",shape="box"];2485[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2485 -> 2545[label="",style="solid", color="black", weight=3]; 2486[label="LT",fontsize=16,color="green",shape="box"];2487[label="xuu49000",fontsize=16,color="green",shape="box"];2488[label="xuu51000",fontsize=16,color="green",shape="box"];2489[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2489 -> 2546[label="",style="solid", color="black", weight=3]; 2490[label="LT",fontsize=16,color="green",shape="box"];2491[label="Integer (primMulInt xuu51000 xuu49010)",fontsize=16,color="green",shape="box"];2491 -> 2547[label="",style="dashed", color="green", weight=3]; 2492[label="xuu5100",fontsize=16,color="green",shape="box"];2493[label="xuu4900",fontsize=16,color="green",shape="box"];2494[label="xuu5100",fontsize=16,color="green",shape="box"];2495[label="xuu4900",fontsize=16,color="green",shape="box"];2496[label="xuu5100",fontsize=16,color="green",shape="box"];2497[label="xuu4900",fontsize=16,color="green",shape="box"];2498[label="xuu5100",fontsize=16,color="green",shape="box"];2499[label="xuu4900",fontsize=16,color="green",shape="box"];2500[label="xuu5100",fontsize=16,color="green",shape="box"];2501[label="xuu4900",fontsize=16,color="green",shape="box"];2502[label="xuu5100",fontsize=16,color="green",shape="box"];2503[label="xuu4900",fontsize=16,color="green",shape="box"];2504[label="xuu5100",fontsize=16,color="green",shape="box"];2505[label="xuu4900",fontsize=16,color="green",shape="box"];2506[label="xuu5100",fontsize=16,color="green",shape="box"];2507[label="xuu4900",fontsize=16,color="green",shape="box"];2508[label="xuu5100",fontsize=16,color="green",shape="box"];2509[label="xuu4900",fontsize=16,color="green",shape="box"];2510[label="xuu5100",fontsize=16,color="green",shape="box"];2511[label="xuu4900",fontsize=16,color="green",shape="box"];2512[label="xuu5100",fontsize=16,color="green",shape="box"];2513[label="xuu4900",fontsize=16,color="green",shape="box"];2514[label="xuu5100",fontsize=16,color="green",shape="box"];2515[label="xuu4900",fontsize=16,color="green",shape="box"];2516[label="xuu5100",fontsize=16,color="green",shape="box"];2517[label="xuu4900",fontsize=16,color="green",shape="box"];2518[label="xuu5100",fontsize=16,color="green",shape="box"];2519[label="xuu4900",fontsize=16,color="green",shape="box"];2520[label="LT",fontsize=16,color="green",shape="box"];2521[label="xuu137",fontsize=16,color="green",shape="box"];2522[label="GT",fontsize=16,color="green",shape="box"];2370[label="Succ (Succ (primPlusNat xuu41200 xuu9000))",fontsize=16,color="green",shape="box"];2370 -> 2523[label="",style="dashed", color="green", weight=3]; 2371[label="Succ xuu41200",fontsize=16,color="green",shape="box"];2372[label="Succ xuu9000",fontsize=16,color="green",shape="box"];2373[label="Zero",fontsize=16,color="green",shape="box"];2374[label="xuu9000",fontsize=16,color="green",shape="box"];2375[label="xuu41200",fontsize=16,color="green",shape="box"];2376[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24",fontsize=16,color="burlywood",shape="box"];3448[label="xuu414/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2376 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 2524[label="",style="solid", color="burlywood", weight=3]; 3449[label="xuu414/FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144",fontsize=10,color="white",style="solid",shape="box"];2376 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 2525[label="",style="solid", color="burlywood", weight=3]; 2378[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];2379[label="xuu411",fontsize=16,color="green",shape="box"];2380[label="xuu413",fontsize=16,color="green",shape="box"];2381[label="xuu24",fontsize=16,color="green",shape="box"];2382[label="xuu410",fontsize=16,color="green",shape="box"];2383[label="xuu19",fontsize=16,color="green",shape="box"];2384[label="xuu20",fontsize=16,color="green",shape="box"];2385[label="xuu21",fontsize=16,color="green",shape="box"];2386[label="xuu414",fontsize=16,color="green",shape="box"];2377[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu140 xuu141 xuu142 (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148)",fontsize=16,color="black",shape="triangle"];2377 -> 2526[label="",style="solid", color="black", weight=3]; 2528[label="xuu2434",fontsize=16,color="green",shape="box"];2529[label="xuu244",fontsize=16,color="green",shape="box"];2530[label="xuu240",fontsize=16,color="green",shape="box"];2531[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2532[label="xuu20",fontsize=16,color="green",shape="box"];2533[label="xuu41",fontsize=16,color="green",shape="box"];2534[label="xuu21",fontsize=16,color="green",shape="box"];2535[label="xuu19",fontsize=16,color="green",shape="box"];2536[label="xuu241",fontsize=16,color="green",shape="box"];2537[label="xuu2430",fontsize=16,color="green",shape="box"];2538[label="xuu2431",fontsize=16,color="green",shape="box"];2539[label="xuu2433",fontsize=16,color="green",shape="box"];2527[label="FiniteMap.mkBranch (Pos (Succ xuu150)) xuu151 xuu152 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161)",fontsize=16,color="black",shape="triangle"];2527 -> 2548[label="",style="solid", color="black", weight=3]; 2686[label="xuu244",fontsize=16,color="green",shape="box"];2687 -> 2587[label="",style="dashed", color="red", weight=0]; 2687[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2687 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2688[label="xuu240",fontsize=16,color="green",shape="box"];2689 -> 2709[label="",style="dashed", color="red", weight=0]; 2689[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243)",fontsize=16,color="magenta"];2689 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2541 -> 874[label="",style="dashed", color="red", weight=0]; 2541[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu243 xuu41",fontsize=16,color="magenta"];2541 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2542[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2542 -> 2563[label="",style="solid", color="black", weight=3]; 2543[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2543 -> 2564[label="",style="solid", color="black", weight=3]; 2544[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2544 -> 2565[label="",style="solid", color="black", weight=3]; 2545[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2545 -> 2566[label="",style="solid", color="black", weight=3]; 2546[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2546 -> 2567[label="",style="solid", color="black", weight=3]; 2547 -> 782[label="",style="dashed", color="red", weight=0]; 2547[label="primMulInt xuu51000 xuu49010",fontsize=16,color="magenta"];2547 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2523 -> 1571[label="",style="dashed", color="red", weight=0]; 2523[label="primPlusNat xuu41200 xuu9000",fontsize=16,color="magenta"];2523 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2524[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 FiniteMap.EmptyFM) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 FiniteMap.EmptyFM) xuu24",fontsize=16,color="black",shape="box"];2524 -> 2551[label="",style="solid", color="black", weight=3]; 2525[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 (FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144)) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 (FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144)) xuu24",fontsize=16,color="black",shape="box"];2525 -> 2552[label="",style="solid", color="black", weight=3]; 2526[label="FiniteMap.mkBranchResult xuu140 xuu141 (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu142",fontsize=16,color="black",shape="triangle"];2526 -> 2553[label="",style="solid", color="black", weight=3]; 2548[label="FiniteMap.mkBranchResult xuu151 xuu152 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157)",fontsize=16,color="black",shape="box"];2548 -> 2570[label="",style="solid", color="black", weight=3]; 2703[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2704[label="xuu243",fontsize=16,color="green",shape="box"];2705[label="xuu19",fontsize=16,color="green",shape="box"];2706[label="xuu20",fontsize=16,color="green",shape="box"];2707[label="xuu21",fontsize=16,color="green",shape="box"];2708[label="xuu41",fontsize=16,color="green",shape="box"];2587[label="FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148",fontsize=16,color="black",shape="triangle"];2587 -> 2656[label="",style="solid", color="black", weight=3]; 2714 -> 2587[label="",style="dashed", color="red", weight=0]; 2714[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2714 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2587[label="",style="dashed", color="red", weight=0]; 2715[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2715 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2562[label="xuu243",fontsize=16,color="green",shape="box"];2563[label="GT",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"];2568[label="xuu49010",fontsize=16,color="green",shape="box"];2569[label="xuu51000",fontsize=16,color="green",shape="box"];2549[label="xuu9000",fontsize=16,color="green",shape="box"];2550[label="xuu41200",fontsize=16,color="green",shape="box"];2551[label="error []",fontsize=16,color="red",shape="box"];2552 -> 2620[label="",style="dashed", color="red", weight=0]; 2552[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4140 xuu4141 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu410 xuu411 xuu413 xuu4143) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu19,xuu20) xuu21 xuu4144 xuu24)",fontsize=16,color="magenta"];2552 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2553[label="FiniteMap.Branch xuu140 xuu141 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142)) xuu142 (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148)",fontsize=16,color="green",shape="box"];2553 -> 2586[label="",style="dashed", color="green", weight=3]; 2553 -> 2587[label="",style="dashed", color="green", weight=3]; 2570[label="FiniteMap.Branch xuu151 xuu152 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157))) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161)",fontsize=16,color="green",shape="box"];2570 -> 2588[label="",style="dashed", color="green", weight=3]; 2570 -> 2589[label="",style="dashed", color="green", weight=3]; 2570 -> 2590[label="",style="dashed", color="green", weight=3]; 2656 -> 874[label="",style="dashed", color="red", weight=0]; 2656[label="FiniteMap.mkBranchResult (xuu144,xuu145) xuu146 xuu148 xuu147",fontsize=16,color="magenta"];2656 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2725[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2726[label="xuu243",fontsize=16,color="green",shape="box"];2727[label="xuu19",fontsize=16,color="green",shape="box"];2728[label="xuu20",fontsize=16,color="green",shape="box"];2729[label="xuu21",fontsize=16,color="green",shape="box"];2730[label="xuu41",fontsize=16,color="green",shape="box"];2731[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2732[label="xuu243",fontsize=16,color="green",shape="box"];2733[label="xuu19",fontsize=16,color="green",shape="box"];2734[label="xuu20",fontsize=16,color="green",shape="box"];2735[label="xuu21",fontsize=16,color="green",shape="box"];2736[label="xuu41",fontsize=16,color="green",shape="box"];2621[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];2622[label="xuu4144",fontsize=16,color="green",shape="box"];2623[label="xuu410",fontsize=16,color="green",shape="box"];2624[label="xuu19",fontsize=16,color="green",shape="box"];2625[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];2626[label="xuu413",fontsize=16,color="green",shape="box"];2627[label="xuu20",fontsize=16,color="green",shape="box"];2628[label="xuu411",fontsize=16,color="green",shape="box"];2629[label="xuu4141",fontsize=16,color="green",shape="box"];2630[label="xuu4143",fontsize=16,color="green",shape="box"];2631[label="xuu4140",fontsize=16,color="green",shape="box"];2632[label="xuu21",fontsize=16,color="green",shape="box"];2633[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];2634[label="xuu24",fontsize=16,color="green",shape="box"];2620[label="FiniteMap.mkBranch (Pos (Succ xuu192)) xuu193 xuu194 (FiniteMap.mkBranch (Pos (Succ xuu195)) xuu196 xuu197 xuu198 xuu199) (FiniteMap.mkBranch (Pos (Succ xuu200)) (xuu201,xuu202) xuu203 xuu204 xuu205)",fontsize=16,color="black",shape="triangle"];2620 -> 2652[label="",style="solid", color="black", weight=3]; 2586 -> 2681[label="",style="dashed", color="red", weight=0]; 2586[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142)",fontsize=16,color="magenta"];2586 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2681[label="",style="dashed", color="red", weight=0]; 2588[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157))",fontsize=16,color="magenta"];2588 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2587[label="",style="dashed", color="red", weight=0]; 2589[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157",fontsize=16,color="magenta"];2589 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2590[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161",fontsize=16,color="black",shape="triangle"];2590 -> 2667[label="",style="solid", color="black", weight=3]; 2737[label="xuu146",fontsize=16,color="green",shape="box"];2738[label="xuu147",fontsize=16,color="green",shape="box"];2739[label="xuu145",fontsize=16,color="green",shape="box"];2740[label="xuu148",fontsize=16,color="green",shape="box"];2741[label="xuu144",fontsize=16,color="green",shape="box"];2652 -> 2526[label="",style="dashed", color="red", weight=0]; 2652[label="FiniteMap.mkBranchResult xuu193 xuu194 (FiniteMap.mkBranch (Pos (Succ xuu200)) (xuu201,xuu202) xuu203 xuu204 xuu205) (FiniteMap.mkBranch (Pos (Succ xuu195)) xuu196 xuu197 xuu198 xuu199)",fontsize=16,color="magenta"];2652 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2587[label="",style="dashed", color="red", weight=0]; 2690[label="FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148",fontsize=16,color="magenta"];2691 -> 2709[label="",style="dashed", color="red", weight=0]; 2691[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148) xuu140 xuu142",fontsize=16,color="magenta"];2691 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2590[label="",style="dashed", color="red", weight=0]; 2692[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161",fontsize=16,color="magenta"];2693 -> 2587[label="",style="dashed", color="red", weight=0]; 2693[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157",fontsize=16,color="magenta"];2693 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2694[label="xuu151",fontsize=16,color="green",shape="box"];2695 -> 2709[label="",style="dashed", color="red", weight=0]; 2695[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161) xuu151 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157)",fontsize=16,color="magenta"];2695 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2661[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2662[label="xuu157",fontsize=16,color="green",shape="box"];2663[label="xuu153",fontsize=16,color="green",shape="box"];2664[label="xuu154",fontsize=16,color="green",shape="box"];2665[label="xuu155",fontsize=16,color="green",shape="box"];2666[label="xuu156",fontsize=16,color="green",shape="box"];2667[label="FiniteMap.mkBranchResult xuu158 xuu159 xuu161 xuu160",fontsize=16,color="black",shape="triangle"];2667 -> 2748[label="",style="solid", color="black", weight=3]; 2668[label="xuu200",fontsize=16,color="green",shape="box"];2669[label="xuu194",fontsize=16,color="green",shape="box"];2670[label="FiniteMap.mkBranch (Pos (Succ xuu195)) xuu196 xuu197 xuu198 xuu199",fontsize=16,color="black",shape="triangle"];2670 -> 2749[label="",style="solid", color="black", weight=3]; 2671[label="xuu205",fontsize=16,color="green",shape="box"];2672[label="xuu193",fontsize=16,color="green",shape="box"];2673[label="xuu201",fontsize=16,color="green",shape="box"];2674[label="xuu202",fontsize=16,color="green",shape="box"];2675[label="xuu203",fontsize=16,color="green",shape="box"];2676[label="xuu204",fontsize=16,color="green",shape="box"];2716[label="xuu140",fontsize=16,color="green",shape="box"];2717[label="xuu142",fontsize=16,color="green",shape="box"];2718[label="xuu142",fontsize=16,color="green",shape="box"];2719 -> 2670[label="",style="dashed", color="red", weight=0]; 2719[label="FiniteMap.mkBranch (Pos (Succ xuu143)) (xuu144,xuu145) xuu146 xuu147 xuu148",fontsize=16,color="magenta"];2719 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2742[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2743[label="xuu157",fontsize=16,color="green",shape="box"];2744[label="xuu153",fontsize=16,color="green",shape="box"];2745[label="xuu154",fontsize=16,color="green",shape="box"];2746[label="xuu155",fontsize=16,color="green",shape="box"];2747[label="xuu156",fontsize=16,color="green",shape="box"];2720[label="xuu151",fontsize=16,color="green",shape="box"];2721 -> 2670[label="",style="dashed", color="red", weight=0]; 2721[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157",fontsize=16,color="magenta"];2721 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2670[label="",style="dashed", color="red", weight=0]; 2722[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu153,xuu154) xuu155 xuu156 xuu157",fontsize=16,color="magenta"];2722 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2670[label="",style="dashed", color="red", weight=0]; 2723[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu158 xuu159 xuu160 xuu161",fontsize=16,color="magenta"];2723 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2748[label="FiniteMap.Branch xuu158 xuu159 (FiniteMap.mkBranchUnbox xuu161 xuu158 xuu160 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu161 xuu158 xuu160 + FiniteMap.mkBranchRight_size xuu161 xuu158 xuu160)) xuu160 xuu161",fontsize=16,color="green",shape="box"];2748 -> 2772[label="",style="dashed", color="green", weight=3]; 2749 -> 2667[label="",style="dashed", color="red", weight=0]; 2749[label="FiniteMap.mkBranchResult xuu196 xuu197 xuu199 xuu198",fontsize=16,color="magenta"];2749 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2750[label="xuu143",fontsize=16,color="green",shape="box"];2751[label="xuu148",fontsize=16,color="green",shape="box"];2752[label="(xuu144,xuu145)",fontsize=16,color="green",shape="box"];2753[label="xuu147",fontsize=16,color="green",shape="box"];2754[label="xuu146",fontsize=16,color="green",shape="box"];2755[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2756[label="xuu157",fontsize=16,color="green",shape="box"];2757[label="(xuu153,xuu154)",fontsize=16,color="green",shape="box"];2758[label="xuu156",fontsize=16,color="green",shape="box"];2759[label="xuu155",fontsize=16,color="green",shape="box"];2760[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2761[label="xuu157",fontsize=16,color="green",shape="box"];2762[label="(xuu153,xuu154)",fontsize=16,color="green",shape="box"];2763[label="xuu156",fontsize=16,color="green",shape="box"];2764[label="xuu155",fontsize=16,color="green",shape="box"];2765[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2766[label="xuu161",fontsize=16,color="green",shape="box"];2767[label="xuu158",fontsize=16,color="green",shape="box"];2768[label="xuu160",fontsize=16,color="green",shape="box"];2769[label="xuu159",fontsize=16,color="green",shape="box"];2772 -> 2681[label="",style="dashed", color="red", weight=0]; 2772[label="FiniteMap.mkBranchUnbox xuu161 xuu158 xuu160 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu161 xuu158 xuu160 + FiniteMap.mkBranchRight_size xuu161 xuu158 xuu160)",fontsize=16,color="magenta"];2772 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2773[label="xuu198",fontsize=16,color="green",shape="box"];2774[label="xuu199",fontsize=16,color="green",shape="box"];2775[label="xuu196",fontsize=16,color="green",shape="box"];2776[label="xuu197",fontsize=16,color="green",shape="box"];2779[label="xuu161",fontsize=16,color="green",shape="box"];2780[label="xuu160",fontsize=16,color="green",shape="box"];2781[label="xuu158",fontsize=16,color="green",shape="box"];2782 -> 2709[label="",style="dashed", color="red", weight=0]; 2782[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu161 xuu158 xuu160 + FiniteMap.mkBranchRight_size xuu161 xuu158 xuu160",fontsize=16,color="magenta"];2782 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2786[label="xuu158",fontsize=16,color="green",shape="box"];2787[label="xuu160",fontsize=16,color="green",shape="box"];2788[label="xuu160",fontsize=16,color="green",shape="box"];2789[label="xuu161",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(xuu49000), Succ(xuu51000)) -> new_primCmpNat(xuu49000, xuu51000) 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(xuu49000), Succ(xuu51000)) -> new_primCmpNat(xuu49000, xuu51000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs14(GT, GT) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_compare24(xuu490, xuu510, False) -> new_compare12(xuu490, xuu510, new_ltEs5(xuu490, xuu510)) new_esEs24(xuu4911, xuu5111, ty_Char) -> new_esEs11(xuu4911, xuu5111) new_pePe(True, xuu127) -> True new_lt6(xuu490, xuu510) -> new_esEs14(new_compare6(xuu490, xuu510), LT) new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, xuu243, xuu244, xuu41, True, bc, bd, be) -> Branch(xuu240, xuu241, new_mkBranchUnbox(xuu244, xuu240, new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bc, bd, be), new_ps(xuu244, xuu240, new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bc, bd, be), new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bc, bd, be), bc, bd, be), bc, bd, be), new_mkBranch4(xuu19, xuu20, xuu21, xuu41, xuu243, bc, bd, be), xuu244) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_@2, bbd), bbe), bbc) -> new_ltEs9(xuu4910, xuu5110, bbd, bbe) new_ltEs6(GT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_ltEs9(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cag, cah) -> new_pePe(new_lt21(xuu4910, xuu5110, cag), new_asAs(new_esEs29(xuu4910, xuu5110, cag), new_ltEs20(xuu4911, xuu5111, cah))) new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_compare26(xuu49, xuu51, True, cgf, cgg) -> EQ new_esEs28(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], cec), cea) -> new_esEs10(xuu3110000, xuu6000, cec) new_esEs22(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare25(xuu490, xuu510, False, fc) -> new_compare10(xuu490, xuu510, new_ltEs11(xuu490, xuu510, fc), fc) new_lt16(xuu490, xuu510, bag) -> new_esEs14(new_compare15(xuu490, xuu510, bag), LT) new_ltEs7(xuu491, xuu511, ty_@0) -> new_ltEs4(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, ddc)) -> new_ltEs16(xuu4912, xuu5112, ddc) new_mkBranch1(xuu158, xuu159, xuu160, xuu161, eh, fa, fb) -> new_mkBranchResult1(xuu158, xuu159, xuu161, xuu160, eh, fa, fb) new_esEs28(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs14(EQ, EQ) -> True new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare6(xuu491, xuu511)) new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_compare111(xuu103, xuu104, xuu105, xuu106, False, bec, bed) -> GT new_ltEs6(EQ, GT) -> True new_ltEs7(xuu491, xuu511, app(ty_Ratio, bee)) -> new_ltEs16(xuu491, xuu511, bee) new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, dad), dae), daf)) -> new_lt15(xuu4910, xuu5110, dad, dae, daf) new_esEs24(xuu4911, xuu5111, app(ty_Ratio, dca)) -> new_esEs16(xuu4911, xuu5111, dca) new_primCompAux0(xuu4900, xuu5100, xuu128, chb) -> new_primCompAux00(xuu128, new_compare30(xuu4900, xuu5100, chb)) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bf, bg) -> new_asAs(new_esEs8(xuu3110000, xuu6000, bf), new_esEs9(xuu3110001, xuu6001, bg)) new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, Branch(xuu240, xuu241, xuu242, xuu243, xuu244), xuu41, True, bc, bd, be) -> new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, xuu243, xuu244, xuu41, new_lt18(new_sizeFM(xuu243, bc, bd, be), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu244, bc, bd, be))), bc, bd, be) new_compare30(xuu4900, xuu5100, ty_@0) -> new_compare9(xuu4900, xuu5100) new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, bc, bd, be) -> new_mkBalBranch(xuu19, xuu20, xuu21, xuu23, new_addToFM_C0(xuu24, @2(xuu25, xuu26), xuu27, bc, bd, be), bc, bd, be) new_esEs20(xuu490, xuu510, ty_Double) -> new_esEs18(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(app(ty_@2, deg), deh)) -> new_compare18(xuu4900, xuu5100, deg, deh) new_esEs27(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(xuu311000, xuu600, bef, beg, beh) new_compare210(xuu490, xuu510, True, bea, beb) -> EQ new_ltEs20(xuu4911, xuu5111, ty_@0) -> new_ltEs4(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(ty_@2, dba), dbb)) -> new_esEs4(xuu4911, xuu5111, dba, dbb) new_compare29(xuu490, xuu510, bea, beb) -> new_compare210(xuu490, xuu510, new_esEs6(xuu490, xuu510, bea, beb), bea, beb) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primCmpNat2(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat2(xuu49000, xuu51000) new_ltEs4(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) new_lt12(xuu490, xuu510) -> new_esEs14(new_compare19(xuu490, xuu510), LT) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, app(ty_[], chb)) -> new_lt17(xuu490, xuu510, chb) new_compare1(:(xuu4900, xuu4901), [], chb) -> GT new_compare12(xuu490, xuu510, False) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_ltEs20(xuu4911, xuu5111, ty_Integer) -> new_ltEs10(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Float) -> new_lt11(xuu490, xuu510) new_esEs23(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_not(True) -> False new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(ty_[], cfe)) -> new_esEs10(xuu3110000, xuu6000, cfe) new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, de), df), dg)) -> new_esEs7(xuu3110001, xuu6001, de, df, dg) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bef, beg, beh) -> new_asAs(new_esEs25(xuu3110000, xuu6000, bef), new_asAs(new_esEs26(xuu3110001, xuu6001, beg), new_esEs27(xuu3110002, xuu6002, beh))) new_compare13(xuu490, xuu510, fc) -> new_compare25(xuu490, xuu510, new_esEs5(xuu490, xuu510, fc), fc) new_esEs27(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_primCompAux00(xuu137, LT) -> LT new_compare30(xuu4900, xuu5100, app(ty_[], dfh)) -> new_compare1(xuu4900, xuu5100, dfh) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs15(xuu4910, xuu5110, bab, bac, bad) new_esEs28(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_ltEs6(LT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs10(xuu4912, xuu5112) new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs15(xuu37, xuu39) new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs7(xuu3110000, xuu6000, bfc, bfd, bfe) new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_lt15(xuu4911, xuu5111, dbf, dbg, dbh) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cdf) -> new_asAs(new_esEs28(xuu3110000, xuu6000, cdf), new_esEs10(xuu3110001, xuu6001, cdf)) new_esEs26(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_esEs28(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_compare17(xuu490, xuu510, bah, bba, bbb) -> new_compare28(xuu490, xuu510, new_esEs7(xuu490, xuu510, bah, bba, bbb), bah, bba, bbb) new_esEs8(xuu3110000, xuu6000, app(ty_Ratio, ce)) -> new_esEs16(xuu3110000, xuu6000, ce) new_lt5(xuu490, xuu510, ty_Int) -> new_lt18(xuu490, xuu510) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs20(xuu4911, xuu5111, ty_Int) -> new_ltEs18(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, bff)) -> new_esEs16(xuu3110000, xuu6000, bff) new_addToFM_C0(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, h, ba, bb) -> new_addToFM_C20(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, h), h, ba), h, ba, bb) new_esEs8(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt0(Branch(xuu410, xuu411, xuu412, xuu413, xuu414), xuu19, xuu20, xuu21, xuu24, bc, bd, be) -> new_primCmpInt(new_primPlusInt(xuu412, new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), bc, bd, be)), Pos(Succ(Succ(Zero)))) new_ltEs7(xuu491, xuu511, ty_Int) -> new_ltEs18(xuu491, xuu511) new_primCmpNat0(xuu4900, Succ(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) new_esEs8(xuu3110000, xuu6000, app(app(ty_@2, cf), cg)) -> new_esEs4(xuu3110000, xuu6000, cf, cg) new_lt5(xuu490, xuu510, ty_Double) -> new_lt6(xuu490, xuu510) new_lt5(xuu490, xuu510, app(app(ty_@2, cgh), cha)) -> new_lt7(xuu490, xuu510, cgh, cha) new_primCompAux00(xuu137, GT) -> GT new_esEs24(xuu4911, xuu5111, ty_Ordering) -> new_esEs14(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs4(xuu4912, xuu5112) new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, bc, bd, be) -> Branch(@2(xuu25, xuu26), xuu27, xuu22, xuu23, xuu24) new_primMinusNat0(Succ(xuu41200), Zero) -> Pos(Succ(xuu41200)) new_esEs24(xuu4911, xuu5111, ty_Double) -> new_esEs18(xuu4911, xuu5111) new_esEs20(xuu490, xuu510, ty_@0) -> new_esEs13(xuu490, xuu510) new_lt14(xuu490, xuu510) -> new_esEs14(new_compare31(xuu490, xuu510), LT) new_primPlusInt(Pos(xuu4120), Pos(xuu900)) -> Pos(new_primPlusNat0(xuu4120, xuu900)) new_mkBranch4(xuu19, xuu20, xuu21, xuu41, xuu243, bc, bd, be) -> new_mkBranchResult(xuu19, xuu20, xuu21, xuu243, xuu41, bc, bd, be) new_lt21(xuu4910, xuu5110, app(ty_Maybe, cbc)) -> new_lt9(xuu4910, xuu5110, cbc) new_lt9(xuu490, xuu510, fc) -> new_esEs14(new_compare13(xuu490, xuu510, fc), LT) new_esEs29(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_lt5(xuu490, xuu510, ty_Ordering) -> new_lt4(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(ty_Ratio, dfg)) -> new_compare15(xuu4900, xuu5100, dfg) new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, EmptyFM, False, bc, bd, be) -> error([]) new_compare14(xuu490, xuu510, True) -> LT new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT new_lt5(xuu490, xuu510, app(app(ty_Either, bea), beb)) -> new_lt13(xuu490, xuu510, bea, beb) new_esEs20(xuu490, xuu510, app(app(ty_@2, cgh), cha)) -> new_esEs4(xuu490, xuu510, cgh, cha) new_esEs20(xuu490, xuu510, app(ty_Ratio, bag)) -> new_esEs16(xuu490, xuu510, bag) new_lt18(xuu490, xuu510) -> new_esEs14(new_compare7(xuu490, xuu510), LT) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_ltEs5(False, True) -> True new_esEs8(xuu3110000, xuu6000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs7(xuu3110000, xuu6000, cb, cc, cd) new_esEs23(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_lt5(xuu490, xuu510, app(ty_Maybe, fc)) -> new_lt9(xuu490, xuu510, fc) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, cea) -> new_esEs13(xuu3110000, xuu6000) new_lt21(xuu4910, xuu5110, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_lt15(xuu4910, xuu5110, cbf, cbg, cbh) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(ty_Maybe, cfd)) -> new_esEs5(xuu3110000, xuu6000, cfd) new_gt(xuu85, xuu84) -> new_esEs14(new_compare7(xuu85, xuu84), GT) new_esEs26(xuu3110001, xuu6001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs7(xuu3110001, xuu6001, bge, bgf, bgg) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt8(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_Either, bcf), bbc)) -> new_ltEs13(xuu491, xuu511, bcf, bbc) new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt14(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs13(xuu311000, xuu600) new_esEs32(xuu37, xuu39, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs7(xuu37, xuu39, gd, ge, gf) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Ratio, bae)) -> new_ltEs16(xuu4910, xuu5110, bae) new_compare110(xuu490, xuu510, False, bah, bba, bbb) -> GT new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, cea) -> new_esEs11(xuu3110000, xuu6000) new_pePe(False, xuu127) -> xuu127 new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, dc)) -> new_esEs5(xuu3110001, xuu6001, dc) new_ltEs13(Left(xuu4910), Right(xuu5110), bcf, bbc) -> True new_esEs12(False, False) -> True new_esEs27(xuu3110002, xuu6002, ty_Bool) -> new_esEs12(xuu3110002, xuu6002) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ceb), cea) -> new_esEs5(xuu3110000, xuu6000, ceb) new_mkBranch(xuu192, xuu193, xuu194, xuu195, xuu196, xuu197, xuu198, xuu199, xuu200, xuu201, xuu202, xuu203, xuu204, xuu205, ee, ef, eg) -> new_mkBranchResult0(xuu193, xuu194, xuu200, xuu201, xuu202, xuu203, xuu204, xuu205, new_mkBranch0(xuu195, xuu196, xuu197, xuu198, xuu199, ee, ef, eg), ee, ef, eg) new_compare112(xuu490, xuu510, True, bea, beb) -> LT new_lt20(xuu4911, xuu5111, app(ty_Ratio, dca)) -> new_lt16(xuu4911, xuu5111, dca) new_primMinusNat0(Succ(xuu41200), Succ(xuu9000)) -> new_primMinusNat0(xuu41200, xuu9000) new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(LT, LT) -> True new_ltEs7(xuu491, xuu511, app(ty_[], chf)) -> new_ltEs17(xuu491, xuu511, chf) new_esEs23(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_esEs11(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare10(xuu490, xuu510, False, fc) -> GT new_lt20(xuu4911, xuu5111, app(ty_Maybe, dbc)) -> new_lt9(xuu4911, xuu5111, dbc) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_Either, bbg), bbh), bbc) -> new_ltEs13(xuu4910, xuu5110, bbg, bbh) new_lt19(xuu4910, xuu5110, app(ty_Maybe, daa)) -> new_lt9(xuu4910, xuu5110, daa) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare16(xuu103, xuu104, xuu105, xuu106, True, xuu108, bec, bed) -> new_compare111(xuu103, xuu104, xuu105, xuu106, True, bec, bed) new_ltEs13(Right(xuu4910), Left(xuu5110), bcf, bbc) -> False new_compare30(xuu4900, xuu5100, app(app(ty_Either, dfb), dfc)) -> new_compare29(xuu4900, xuu5100, dfb, dfc) new_esEs8(xuu3110000, xuu6000, app(ty_[], ca)) -> new_esEs10(xuu3110000, xuu6000, ca) new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, bfg), bfh)) -> new_esEs4(xuu3110000, xuu6000, bfg, bfh) new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs18(xuu4912, xuu5112) new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, Branch(xuu2430, xuu2431, xuu2432, xuu2433, xuu2434), xuu244, xuu41, False, bc, bd, be) -> new_mkBranch2(Succ(Succ(Succ(Succ(Zero)))), xuu2430, xuu2431, xuu19, xuu20, xuu21, xuu41, xuu2433, xuu240, xuu241, xuu2434, xuu244, bc, bd, be) new_esEs5(Nothing, Nothing, cde) -> True new_primCmpInt0(EmptyFM, xuu19, xuu20, xuu21, xuu24, bc, bd, be) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, EmptyFM, bc, bd, be)), Pos(Succ(Succ(Zero)))) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(ty_Ratio, cga)) -> new_esEs16(xuu3110000, xuu6000, cga) new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, bc, bd, be) -> new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs4(@2(xuu25, xuu26), @2(xuu19, xuu20), bc, bd), bc, bd), GT), bc, bd, be) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, dh)) -> new_esEs16(xuu3110001, xuu6001, dh) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), cde) -> False new_esEs5(Just(xuu3110000), Nothing, cde) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_emptyFM(h, ba, bb) -> EmptyFM new_ltEs20(xuu4911, xuu5111, app(app(ty_Either, ccf), ccg)) -> new_ltEs13(xuu4911, xuu5111, ccf, ccg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, dee), def)) -> new_esEs6(xuu3110000, xuu6000, dee, def) new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs14(xuu4912, xuu5112) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs27(xuu3110002, xuu6002, ty_Ordering) -> new_esEs14(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(app(ty_@2, bcg), bch)) -> new_ltEs9(xuu4910, xuu5110, bcg, bch) new_esEs24(xuu4911, xuu5111, app(app(ty_Either, dbd), dbe)) -> new_esEs6(xuu4911, xuu5111, dbd, dbe) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, ea), eb)) -> new_esEs4(xuu3110001, xuu6001, ea, eb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cfb), cfc), cea) -> new_esEs6(xuu3110000, xuu6000, cfb, cfc) new_lt21(xuu4910, xuu5110, app(app(ty_Either, cbd), cbe)) -> new_lt13(xuu4910, xuu5110, cbd, cbe) new_esEs14(LT, GT) -> False new_esEs14(GT, LT) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(xuu3110000, xuu6000, ddg, ddh, dea) new_compare10(xuu490, xuu510, True, fc) -> LT new_compare30(xuu4900, xuu5100, ty_Float) -> new_compare27(xuu4900, xuu5100) new_esEs32(xuu37, xuu39, app(ty_Maybe, gb)) -> new_esEs5(xuu37, xuu39, gb) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_ltEs6(LT, EQ) -> True new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(ty_[], bdh)) -> new_ltEs17(xuu4910, xuu5110, bdh) new_esEs23(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, dcf), dcg)) -> new_ltEs13(xuu4912, xuu5112, dcf, dcg) new_lt5(xuu490, xuu510, app(ty_Ratio, bag)) -> new_lt16(xuu490, xuu510, bag) new_primPlusNat1(Succ(xuu940), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu940, xuu600000))) new_primCmpNat2(Succ(xuu49000), Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_esEs23(xuu4910, xuu5110, app(ty_Maybe, daa)) -> new_esEs5(xuu4910, xuu5110, daa) new_esEs24(xuu4911, xuu5111, ty_Int) -> new_esEs17(xuu4911, xuu5111) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) new_ltEs5(True, False) -> False new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Ratio, bcd), bbc) -> new_ltEs16(xuu4910, xuu5110, bcd) new_compare30(xuu4900, xuu5100, app(ty_Maybe, dfa)) -> new_compare13(xuu4900, xuu5100, dfa) new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt12(xuu4911, xuu5111) new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) new_primPlusNat0(Zero, Succ(xuu9000)) -> Succ(xuu9000) new_compare30(xuu4900, xuu5100, ty_Int) -> new_compare7(xuu4900, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Char, bbc) -> new_ltEs14(xuu4910, xuu5110) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs24(xuu4911, xuu5111, app(ty_[], dcb)) -> new_esEs10(xuu4911, xuu5111, dcb) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs7(xuu3110000, xuu6000, cff, cfg, cfh) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ddf)) -> new_esEs10(xuu3110000, xuu6000, ddf) new_compare7(xuu85, xuu84) -> new_primCmpInt(xuu85, xuu84) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, cea) -> new_esEs14(xuu3110000, xuu6000) new_ltEs20(xuu4911, xuu5111, ty_Double) -> new_ltEs8(xuu4911, xuu5111) new_compare1([], [], chb) -> EQ new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_esEs30(xuu36, xuu37, xuu38, xuu39, True, fh, ga) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, ga), fh, ga), LT) new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, False, bc, bd, be) -> new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, xuu24, xuu41, new_gt(new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be))), bc, bd, be) new_lt21(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, EmptyFM, xuu244, xuu41, False, bc, bd, be) -> error([]) new_lt21(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_esEs24(xuu4911, xuu5111, ty_Bool) -> new_esEs12(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(xuu4911, xuu5111, dbf, dbg, dbh) new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs18(xuu37, xuu39) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_lt5(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, EmptyFM, True, bc, bd, be) -> error([]) new_esEs27(xuu3110002, xuu6002, ty_@0) -> new_esEs13(xuu3110002, xuu6002) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Maybe, hg)) -> new_ltEs11(xuu4910, xuu5110, hg) new_mkBranch5(xuu140, xuu141, xuu142, xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, fd, ff, fg) -> new_mkBranchResult0(xuu140, xuu141, xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, xuu142, fd, ff, fg) new_lt19(xuu4910, xuu5110, app(ty_Ratio, dag)) -> new_lt16(xuu4910, xuu5110, dag) new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_ltEs7(xuu491, xuu511, app(app(ty_@2, cag), cah)) -> new_ltEs9(xuu491, xuu511, cag, cah) new_ltEs20(xuu4911, xuu5111, app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs15(xuu4911, xuu5111, cch, cda, cdb) new_esEs23(xuu4910, xuu5110, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(xuu4910, xuu5110, dad, dae, daf) new_ltEs19(xuu4912, xuu5112, app(ty_[], ddd)) -> new_ltEs17(xuu4912, xuu5112, ddd) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_compare25(xuu490, xuu510, True, fc) -> EQ new_esEs24(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Bool) -> new_lt12(xuu490, xuu510) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu491, xuu511) -> new_fsEs(new_compare7(xuu491, xuu511)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(ty_[], cdd)) -> new_ltEs17(xuu4911, xuu5111, cdd) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, xuu414, True, bc, bd, be) -> new_mkBranch5(xuu410, xuu411, xuu413, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu19, xuu20, xuu21, xuu414, xuu24, bc, bd, be) new_esEs23(xuu4910, xuu5110, app(ty_Ratio, dag)) -> new_esEs16(xuu4910, xuu5110, dag) new_esEs30(xuu36, xuu37, xuu38, xuu39, False, fh, ga) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), False, fh, ga), LT) new_lt21(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_lt17(xuu490, xuu510, chb) -> new_esEs14(new_compare1(xuu490, xuu510, chb), LT) new_lt15(xuu490, xuu510, bah, bba, bbb) -> new_esEs14(new_compare17(xuu490, xuu510, bah, bba, bbb), LT) new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, dch), dda), ddb)) -> new_ltEs15(xuu4912, xuu5112, dch, dda, ddb) new_ltEs16(xuu491, xuu511, bee) -> new_fsEs(new_compare15(xuu491, xuu511, bee)) new_esEs8(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, cea) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) new_ltEs14(xuu491, xuu511) -> new_fsEs(new_compare31(xuu491, xuu511)) new_ltEs7(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs8(xuu4912, xuu5112) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, dde)) -> new_esEs5(xuu3110000, xuu6000, dde) new_esEs26(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu4910, xuu5110, app(ty_[], dah)) -> new_esEs10(xuu4910, xuu5110, dah) new_esEs23(xuu4910, xuu5110, app(app(ty_Either, dab), dac)) -> new_esEs6(xuu4910, xuu5110, dab, dac) new_esEs23(xuu4910, xuu5110, app(app(ty_@2, chg), chh)) -> new_esEs4(xuu4910, xuu5110, chg, chh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Double, bbc) -> new_ltEs8(xuu4910, xuu5110) new_mkBranchResult0(xuu140, xuu141, xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, xuu142, fd, ff, fg) -> Branch(xuu140, xuu141, new_mkBranchUnbox(new_mkBranch3(xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, fd, ff, fg), xuu140, xuu142, new_ps(new_mkBranch0(xuu143, @2(xuu144, xuu145), xuu146, xuu147, xuu148, fd, ff, fg), xuu140, xuu142, xuu142, fd, ff, fg), fd, ff, fg), xuu142, new_mkBranch3(xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, fd, ff, fg)) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs8(xuu3110000, xuu6000, app(ty_Maybe, bh)) -> new_esEs5(xuu3110000, xuu6000, bh) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, cea) -> new_esEs17(xuu3110000, xuu6000) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_lt20(xuu4911, xuu5111, app(app(ty_Either, dbd), dbe)) -> new_lt13(xuu4911, xuu5111, dbd, dbe) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, ceh), cfa), cea) -> new_esEs4(xuu3110000, xuu6000, ceh, cfa) new_esEs9(xuu3110001, xuu6001, app(ty_[], dd)) -> new_esEs10(xuu3110001, xuu6001, dd) new_esEs20(xuu490, xuu510, ty_Integer) -> new_esEs15(xuu490, xuu510) new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_compare16(xuu103, xuu104, xuu105, xuu106, False, xuu108, bec, bed) -> new_compare111(xuu103, xuu104, xuu105, xuu106, xuu108, bec, bed) new_ltEs20(xuu4911, xuu5111, app(ty_Maybe, cce)) -> new_ltEs11(xuu4911, xuu5111, cce) new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat0(xuu4900, xuu510) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(app(ty_Either, cgd), cge)) -> new_esEs6(xuu3110000, xuu6000, cgd, cge) new_lt20(xuu4911, xuu5111, app(ty_[], dcb)) -> new_lt17(xuu4911, xuu5111, dcb) new_ltEs6(GT, EQ) -> False new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt11(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_compare14(xuu490, xuu510, False) -> GT new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_[], baf)) -> new_ltEs17(xuu4910, xuu5110, baf) new_mkBranch2(xuu150, xuu151, xuu152, xuu153, xuu154, xuu155, xuu156, xuu157, xuu158, xuu159, xuu160, xuu161, eh, fa, fb) -> Branch(xuu151, xuu152, new_mkBranchUnbox(new_mkBranch1(xuu158, xuu159, xuu160, xuu161, eh, fa, fb), xuu151, new_mkBranch3(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu153, xuu154, xuu155, xuu156, xuu157, eh, fa, fb), new_ps(new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu158, xuu159, xuu160, xuu161, eh, fa, fb), xuu151, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu153, xuu154), xuu155, xuu156, xuu157, eh, fa, fb), new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu153, xuu154), xuu155, xuu156, xuu157, eh, fa, fb), eh, fa, fb), eh, fa, fb), new_mkBranch3(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu153, xuu154, xuu155, xuu156, xuu157, eh, fa, fb), new_mkBranch1(xuu158, xuu159, xuu160, xuu161, eh, fa, fb)) new_ltEs7(xuu491, xuu511, app(ty_Maybe, hd)) -> new_ltEs11(xuu491, xuu511, hd) new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Maybe, bbf), bbc) -> new_ltEs11(xuu4910, xuu5110, bbf) new_mkBranch3(xuu143, xuu144, xuu145, xuu146, xuu147, xuu148, fd, ff, fg) -> new_mkBranchResult(xuu144, xuu145, xuu146, xuu148, xuu147, fd, ff, fg) new_primPlusInt(Neg(xuu4120), Neg(xuu900)) -> Neg(new_primPlusNat0(xuu4120, xuu900)) new_esEs29(xuu4910, xuu5110, app(ty_Maybe, cbc)) -> new_esEs5(xuu4910, xuu5110, cbc) new_ltEs5(False, False) -> True new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Bool, bbc) -> new_ltEs5(xuu4910, xuu5110) new_esEs23(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_lt4(xuu490, xuu510) -> new_esEs14(new_compare8(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_primCmpNat0(xuu4900, Zero) -> GT new_compare23(xuu490, xuu510, False) -> new_compare14(xuu490, xuu510, new_ltEs6(xuu490, xuu510)) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, cea) -> new_esEs19(xuu3110000, xuu6000) new_mkBalBranch(xuu19, xuu20, xuu21, xuu41, xuu24, bc, bd, be) -> new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, new_esEs14(new_primCmpInt0(xuu41, xuu19, xuu20, xuu21, xuu24, bc, bd, be), LT), bc, bd, be) new_esEs28(xuu3110000, xuu6000, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs7(xuu3110000, xuu6000, dgc, dgd, dge) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_primCmpNat2(Zero, Succ(xuu51000)) -> LT new_lt21(xuu4910, xuu5110, app(ty_Ratio, cca)) -> new_lt16(xuu4910, xuu5110, cca) new_esEs14(EQ, GT) -> False new_esEs14(GT, EQ) -> False new_esEs8(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs12(xuu37, xuu39) new_esEs26(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_compare111(xuu103, xuu104, xuu105, xuu106, True, bec, bed) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, Branch(xuu4140, xuu4141, xuu4142, xuu4143, xuu4144), False, bc, bd, be) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4140, xuu4141, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu410, xuu411, xuu413, xuu4143, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu19, xuu20, xuu21, xuu4144, xuu24, bc, bd, be) new_asAs(True, xuu59) -> xuu59 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, ec), ed)) -> new_esEs6(xuu3110001, xuu6001, ec, ed) new_lt20(xuu4911, xuu5111, app(app(ty_@2, dba), dbb)) -> new_lt7(xuu4911, xuu5111, dba, dbb) new_compare18(xuu490, xuu510, cgh, cha) -> new_compare26(xuu490, xuu510, new_esEs4(xuu490, xuu510, cgh, cha), cgh, cha) new_lt21(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(app(ty_@2, ccc), ccd)) -> new_ltEs9(xuu4911, xuu5111, ccc, ccd) new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba, bb) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs15(xuu4910, xuu5110, bdd, bde, bdf) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs13(xuu4910, xuu5110, bdb, bdc) new_esEs6(Left(xuu3110000), Right(xuu6000), cdh, cea) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), cdh, cea) -> False new_esEs20(xuu490, xuu510, app(ty_Maybe, fc)) -> new_esEs5(xuu490, xuu510, fc) new_ltEs7(xuu491, xuu511, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs15(xuu491, xuu511, chc, chd, che) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, dec), ded)) -> new_esEs4(xuu3110000, xuu6000, dec, ded) new_ltEs7(xuu491, xuu511, ty_Double) -> new_ltEs8(xuu491, xuu511) new_lt19(xuu4910, xuu5110, app(app(ty_@2, chg), chh)) -> new_lt7(xuu4910, xuu5110, chg, chh) new_esEs26(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_esEs24(xuu4911, xuu5111, ty_Integer) -> new_esEs15(xuu4911, xuu5111) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, ty_Char) -> new_ltEs14(xuu4911, xuu5111) new_primPlusInt(Pos(xuu4120), Neg(xuu900)) -> new_primMinusNat0(xuu4120, xuu900) new_primPlusInt(Neg(xuu4120), Pos(xuu900)) -> new_primMinusNat0(xuu900, xuu4120) new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs11(xuu37, xuu39) new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, dcc), dcd)) -> new_ltEs9(xuu4912, xuu5112, dcc, dcd) new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs6(xuu4912, xuu5112) new_esEs10(:(xuu3110000, xuu3110001), [], cdf) -> False new_esEs10([], :(xuu6000, xuu6001), cdf) -> False new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_lt11(xuu490, xuu510) -> new_esEs14(new_compare27(xuu490, xuu510), LT) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, deb)) -> new_esEs16(xuu3110000, xuu6000, deb) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Float, bbc) -> new_ltEs12(xuu4910, xuu5110) new_primCompAux00(xuu137, EQ) -> xuu137 new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare23(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primMulNat0(Zero, Zero) -> Zero new_esEs12(True, True) -> True new_esEs27(xuu3110002, xuu6002, app(ty_Ratio, cab)) -> new_esEs16(xuu3110002, xuu6002, cab) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs29(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, EmptyFM, xuu41, True, bc, bd, be) -> error([]) new_esEs24(xuu4911, xuu5111, app(ty_Maybe, dbc)) -> new_esEs5(xuu4911, xuu5111, dbc) new_sizeFM(Branch(xuu240, xuu241, xuu242, xuu243, xuu244), bc, bd, be) -> xuu242 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_ltEs17(xuu491, xuu511, chf) -> new_fsEs(new_compare1(xuu491, xuu511, chf)) new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) new_esEs26(xuu3110001, xuu6001, app(app(ty_Either, bhc), bhd)) -> new_esEs6(xuu3110001, xuu6001, bhc, bhd) new_esEs32(xuu37, xuu39, app(ty_[], gc)) -> new_esEs10(xuu37, xuu39, gc) new_esEs32(xuu37, xuu39, app(app(ty_Either, hb), hc)) -> new_esEs6(xuu37, xuu39, hb, hc) new_mkBranch0(xuu195, xuu196, xuu197, xuu198, xuu199, ee, ef, eg) -> new_mkBranchResult1(xuu196, xuu197, xuu199, xuu198, ee, ef, eg) new_compare9(@0, @0) -> EQ new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), True, bc, bd, be) -> new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, xuu414, new_lt18(new_sizeFM(xuu414, bc, bd, be), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu413, bc, bd, be))), bc, bd, be) new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) new_ltEs6(EQ, LT) -> False new_compare1(:(xuu4900, xuu4901), :(xuu5100, xuu5101), chb) -> new_primCompAux0(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, chb), chb) new_ltEs11(Nothing, Just(xuu5110), hd) -> True new_primCmpNat1(Zero, xuu4900) -> LT new_compare28(xuu490, xuu510, True, bah, bba, bbb) -> EQ new_esEs26(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(ty_[], bgd)) -> new_esEs10(xuu3110001, xuu6001, bgd) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Int, bbc) -> new_ltEs18(xuu4910, xuu5110) new_lt13(xuu490, xuu510, bea, beb) -> new_esEs14(new_compare29(xuu490, xuu510, bea, beb), LT) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_compare19(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs12(xuu490, xuu510)) new_esEs8(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCmpNat2(Zero, Zero) -> EQ new_esEs31(xuu311000, xuu600, app(ty_Maybe, cde)) -> new_esEs5(xuu311000, xuu600, cde) new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba, bb) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba, bb) new_esEs31(xuu311000, xuu600, app(ty_[], cdf)) -> new_esEs10(xuu311000, xuu600, cdf) new_esEs31(xuu311000, xuu600, app(app(ty_Either, cdh), cea)) -> new_esEs6(xuu311000, xuu600, cdh, cea) new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt4(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, bfa)) -> new_esEs5(xuu3110000, xuu6000, bfa) new_esEs25(xuu3110000, xuu6000, app(ty_[], bfb)) -> new_esEs10(xuu3110000, xuu6000, bfb) new_esEs8(xuu3110000, xuu6000, app(app(ty_Either, da), db)) -> new_esEs6(xuu3110000, xuu6000, da, db) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt18(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, dce)) -> new_ltEs11(xuu4912, xuu5112, dce) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, cea) -> new_esEs15(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_@0, bbc) -> new_ltEs4(xuu4910, xuu5110) new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, bga), bgb)) -> new_esEs6(xuu3110000, xuu6000, bga, bgb) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(ty_Maybe, bda)) -> new_ltEs11(xuu4910, xuu5110, bda) new_lt5(xuu490, xuu510, ty_Integer) -> new_lt8(xuu490, xuu510) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, app(app(ty_Either, dab), dac)) -> new_lt13(xuu4910, xuu5110, dab, dac) new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt6(xuu4911, xuu5111) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, ty_Char) -> new_lt14(xuu490, xuu510) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_compare210(xuu490, xuu510, False, bea, beb) -> new_compare112(xuu490, xuu510, new_ltEs13(xuu490, xuu510, bea, beb), bea, beb) new_esEs32(xuu37, xuu39, app(app(ty_@2, gh), ha)) -> new_esEs4(xuu37, xuu39, gh, ha) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu3110000, xuu6000, cgb, cgc) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(app(ty_@2, bha), bhb)) -> new_esEs4(xuu3110001, xuu6001, bha, bhb) new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be) -> new_sizeFM(xuu24, bc, bd, be) new_compare24(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_esEs20(xuu490, xuu510, app(app(ty_Either, bea), beb)) -> new_esEs6(xuu490, xuu510, bea, beb) new_ltEs7(xuu491, xuu511, ty_Char) -> new_ltEs14(xuu491, xuu511) new_esEs27(xuu3110002, xuu6002, ty_Char) -> new_esEs11(xuu3110002, xuu6002) new_fsEs(xuu115) -> new_not(new_esEs14(xuu115, GT)) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cdg) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cdg), new_esEs22(xuu3110001, xuu6001, cdg)) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu3110001, xuu6001, app(ty_Ratio, bgh)) -> new_esEs16(xuu3110001, xuu6001, bgh) new_esEs32(xuu37, xuu39, app(ty_Ratio, gg)) -> new_esEs16(xuu37, xuu39, gg) new_ltEs15(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), chc, chd, che) -> new_pePe(new_lt19(xuu4910, xuu5110, chc), new_asAs(new_esEs23(xuu4910, xuu5110, chc), new_pePe(new_lt20(xuu4911, xuu5111, chd), new_asAs(new_esEs24(xuu4911, xuu5111, chd), new_ltEs19(xuu4912, xuu5112, che))))) new_lt10(xuu490, xuu510) -> new_esEs14(new_compare9(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_Either, hh), baa)) -> new_ltEs13(xuu4910, xuu5110, hh, baa) new_lt21(xuu4910, xuu5110, app(app(ty_@2, cba), cbb)) -> new_lt7(xuu4910, xuu5110, cba, cbb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_@2, he), hf)) -> new_ltEs9(xuu4910, xuu5110, he, hf) new_lt21(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(ty_Maybe, dga)) -> new_esEs5(xuu3110000, xuu6000, dga) new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs5(xuu4912, xuu5112) new_esEs29(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_esEs8(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat2(xuu5100, xuu4900) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs11(xuu311000, xuu600) new_esEs20(xuu490, xuu510, app(ty_[], chb)) -> new_esEs10(xuu490, xuu510, chb) new_compare110(xuu490, xuu510, True, bah, bba, bbb) -> LT new_compare26(@2(xuu490, xuu491), @2(xuu510, xuu511), False, cgf, cgg) -> new_compare16(xuu490, xuu491, xuu510, xuu511, new_lt5(xuu490, xuu510, cgf), new_asAs(new_esEs20(xuu490, xuu510, cgf), new_ltEs7(xuu491, xuu511, cgg)), cgf, cgg) new_compare112(xuu490, xuu510, False, bea, beb) -> GT new_compare30(xuu4900, xuu5100, ty_Ordering) -> new_compare8(xuu4900, xuu5100) new_esEs29(xuu4910, xuu5110, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs7(xuu4910, xuu5110, cbf, cbg, cbh) new_esEs31(xuu311000, xuu600, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu311000, xuu600, bf, bg) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs17(xuu37, xuu39) new_not(False) -> True new_compare1([], :(xuu5100, xuu5101), chb) -> LT new_esEs20(xuu490, xuu510, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs7(xuu490, xuu510, bah, bba, bbb) new_lt21(xuu4910, xuu5110, app(ty_[], ccb)) -> new_lt17(xuu4910, xuu5110, ccb) new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs29(xuu4910, xuu5110, app(ty_[], ccb)) -> new_esEs10(xuu4910, xuu5110, ccb) new_esEs20(xuu490, xuu510, ty_Ordering) -> new_esEs14(xuu490, xuu510) new_primPlusNat0(Succ(xuu41200), Succ(xuu9000)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu9000))) new_esEs29(xuu4910, xuu5110, app(app(ty_Either, cbd), cbe)) -> new_esEs6(xuu4910, xuu5110, cbd, cbe) new_esEs20(xuu490, xuu510, ty_Bool) -> new_esEs12(xuu490, xuu510) new_esEs22(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_lt5(xuu490, xuu510, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt15(xuu490, xuu510, bah, bba, bbb) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, cea) -> new_esEs18(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, app(ty_[], bhf)) -> new_esEs10(xuu3110002, xuu6002, bhf) new_esEs20(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare27(xuu491, xuu511)) new_mkBranchResult(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be) -> Branch(@2(xuu19, xuu20), xuu21, new_mkBranchUnbox(xuu24, @2(xuu19, xuu20), xuu41, new_ps(xuu24, @2(xuu19, xuu20), xuu41, xuu41, bc, bd, be), bc, bd, be), xuu41, xuu24) new_esEs31(xuu311000, xuu600, app(ty_Ratio, cdg)) -> new_esEs16(xuu311000, xuu600, cdg) new_compare30(xuu4900, xuu5100, ty_Double) -> new_compare6(xuu4900, xuu5100) new_esEs27(xuu3110002, xuu6002, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs7(xuu3110002, xuu6002, bhg, bhh, caa) new_esEs24(xuu4911, xuu5111, ty_@0) -> new_esEs13(xuu4911, xuu5111) new_mkBranchResult1(xuu158, xuu159, xuu161, xuu160, eh, fa, fb) -> Branch(xuu158, xuu159, new_mkBranchUnbox(xuu161, xuu158, xuu160, new_ps(xuu161, xuu158, xuu160, xuu160, eh, fa, fb), eh, fa, fb), xuu160, xuu161) new_esEs29(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_esEs26(xuu3110001, xuu6001, app(ty_Maybe, bgc)) -> new_esEs5(xuu3110001, xuu6001, bgc) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs13(xuu37, xuu39) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ps(xuu244, xuu240, xuu218, xuu217, bc, bd, be) -> new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu218, bc, bd, be)), new_sizeFM(xuu244, bc, bd, be)) new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_compare30(xuu4900, xuu5100, ty_Char) -> new_compare31(xuu4900, xuu5100) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ceg), cea) -> new_esEs16(xuu3110000, xuu6000, ceg) new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, True, bc, bd, be) -> new_mkBranchResult(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Integer, bbc) -> new_ltEs10(xuu4910, xuu5110) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, app(ty_Ratio, bdg)) -> new_ltEs16(xuu4910, xuu5110, bdg) new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, app(app(app(ty_@3, dfd), dfe), dff)) -> new_compare17(xuu4900, xuu5100, dfd, dfe, dff) new_esEs28(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs5(True, True) -> True new_esEs10([], [], cdf) -> True new_esEs13(@0, @0) -> True new_lt21(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs14(LT, LT) -> True new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare7(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) new_esEs27(xuu3110002, xuu6002, app(app(ty_@2, cac), cad)) -> new_esEs4(xuu3110002, xuu6002, cac, cad) new_esEs27(xuu3110002, xuu6002, app(app(ty_Either, cae), caf)) -> new_esEs6(xuu3110002, xuu6002, cae, caf) new_esEs8(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs14(LT, EQ) -> False new_esEs14(EQ, LT) -> False new_compare8(xuu490, xuu510) -> new_compare23(xuu490, xuu510, new_esEs14(xuu490, xuu510)) new_lt7(xuu490, xuu510, cgh, cha) -> new_esEs14(new_compare18(xuu490, xuu510, cgh, cha), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Ordering, bbc) -> new_ltEs6(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_@2, dgg), dgh)) -> new_esEs4(xuu3110000, xuu6000, dgg, dgh) new_compare28(xuu490, xuu510, False, bah, bba, bbb) -> new_compare110(xuu490, xuu510, new_ltEs15(xuu490, xuu510, bah, bba, bbb), bah, bba, bbb) new_esEs8(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs14(xuu311000, xuu600) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ced), cee), cef), cea) -> new_esEs7(xuu3110000, xuu6000, ced, cee, cef) new_esEs20(xuu490, xuu510, ty_Char) -> new_esEs11(xuu490, xuu510) new_mkBranchUnbox(xuu216, xuu140, xuu142, xuu206, fd, ff, fg) -> xuu206 new_sizeFM(EmptyFM, bc, bd, be) -> Pos(Zero) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_[], bce), bbc) -> new_ltEs17(xuu4910, xuu5110, bce) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) new_lt19(xuu4910, xuu5110, app(ty_[], dah)) -> new_lt17(xuu4910, xuu5110, dah) new_ltEs11(Just(xuu4910), Nothing, hd) -> False new_ltEs7(xuu491, xuu511, ty_Bool) -> new_ltEs5(xuu491, xuu511) new_ltEs20(xuu4911, xuu5111, ty_Ordering) -> new_ltEs6(xuu4911, xuu5111) new_compare12(xuu490, xuu510, True) -> LT new_esEs28(xuu3110000, xuu6000, app(ty_Ratio, dgf)) -> new_esEs16(xuu3110000, xuu6000, dgf) new_primMinusNat0(Zero, Succ(xuu9000)) -> Neg(Succ(xuu9000)) new_ltEs11(Nothing, Nothing, hd) -> True new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, xuu41, False, bc, bd, be) -> new_mkBranchResult(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be) new_esEs29(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcf, ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, app(app(ty_@2, cba), cbb)) -> new_esEs4(xuu4910, xuu5110, cba, cbb) new_esEs29(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, app(ty_Ratio, cca)) -> new_esEs16(xuu4910, xuu5110, cca) new_esEs28(xuu3110000, xuu6000, app(app(ty_Either, dha), dhb)) -> new_esEs6(xuu3110000, xuu6000, dha, dhb) new_esEs23(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_primEqNat0(Zero, Zero) -> True new_ltEs20(xuu4911, xuu5111, app(ty_Ratio, cdc)) -> new_ltEs16(xuu4911, xuu5111, cdc) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, bca), bcb), bcc), bbc) -> new_ltEs15(xuu4910, xuu5110, bca, bcb, bcc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_asAs(False, xuu59) -> False new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, bc, bd, be) -> new_mkBalBranch(xuu19, xuu20, xuu21, new_addToFM_C0(xuu23, @2(xuu25, xuu26), xuu27, bc, bd, be), xuu24, bc, bd, be) new_ltEs20(xuu4911, xuu5111, ty_Bool) -> new_ltEs5(xuu4911, xuu5111) new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be) -> new_sizeFM(xuu41, bc, bd, be) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs12(xuu311000, xuu600) new_esEs28(xuu3110000, xuu6000, app(ty_[], dgb)) -> new_esEs10(xuu3110000, xuu6000, dgb) new_esEs27(xuu3110002, xuu6002, app(ty_Maybe, bhe)) -> new_esEs5(xuu3110002, xuu6002, bhe) new_ltEs7(xuu491, xuu511, ty_Ordering) -> new_ltEs6(xuu491, xuu511) new_esEs8(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu490, xuu510) -> new_esEs14(new_compare11(xuu490, xuu510), LT) new_compare30(xuu4900, xuu5100, ty_Bool) -> new_compare19(xuu4900, xuu5100) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_ltEs7(xuu491, xuu511, ty_Integer) -> new_ltEs10(xuu491, xuu511) new_esEs6(Right(xuu3110000), Right(xuu6000), cdh, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs14(xuu37, xuu39) new_ltEs6(GT, LT) -> False new_esEs20(xuu490, xuu510, ty_Int) -> new_esEs17(xuu490, xuu510) new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, xuu24, xuu41, False, bc, bd, be) -> new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, xuu41, new_gt(new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bc, bd, be))), bc, bd, be) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_compare31(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) The set Q consists of the following terms: new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs29(x0, x1, ty_Float) new_esEs14(EQ, EQ) new_esEs5(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, ty_@0) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, GT) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_mkBranchResult(x0, x1, x2, x3, x4, x5, x6, x7) new_lt21(x0, x1, ty_Double) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, app(ty_[], x2)) new_compare31(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, ty_Float) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_ltEs17(x0, x1, x2) new_esEs31(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primCmpNat2(Succ(x0), Zero) new_ltEs6(LT, LT) new_lt20(x0, x1, ty_Char) new_esEs26(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10, x11) new_esEs25(x0, x1, ty_@0) new_lt8(x0, x1) new_compare7(x0, x1) new_lt16(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMinusNat0(Zero, Zero) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2, x3, x4) new_compare112(x0, x1, True, x2, x3) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_addToFM_C0(Branch(@2(x0, x1), x2, x3, x4, x5), @2(x6, x7), x8, x9, x10, x11) new_compare1(:(x0, x1), :(x2, x3), x4) new_lt10(x0, x1) new_esEs22(x0, x1, ty_Integer) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_primCmpNat2(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, x4, False, x5, x6, x7) new_lt14(x0, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10, x11) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_esEs10([], :(x0, x1), x2) new_esEs12(False, True) new_esEs12(True, False) new_lt17(x0, x1, x2) new_sIZE_RATIO new_lt21(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_compare30(x0, x1, app(ty_Maybe, x2)) new_lt18(x0, x1) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(x0, Zero) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_mkBranchUnbox(x0, x1, x2, x3, x4, x5, x6) new_lt21(x0, x1, ty_Char) new_lt5(x0, x1, ty_Char) new_compare18(x0, x1, x2, x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2, x3, x4) new_esEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_lt5(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare110(x0, x1, False, x2, x3, x4) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(x0, x1, ty_Char) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_ltEs7(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(Nothing, Just(x0), x1) new_primPlusNat1(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primPlusInt(Pos(x0), Pos(x1)) new_compare23(x0, x1, False) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_pePe(False, x0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Double) new_compare30(x0, x1, ty_Ordering) new_mkBranch5(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, True, x9, x10, x11) new_esEs8(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs27(x0, x1, ty_Char) new_mkBranchResult0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs23(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_gt(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs10([], [], x0) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare24(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5, x6) new_esEs27(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, EmptyFM, False, x8, x9, x10) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Bool) new_compare11(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, EmptyFM, True, x4, x5, x6) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs14(LT, EQ) new_esEs14(EQ, LT) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, x7, False, x8, x9, x10) new_esEs10(:(x0, x1), [], x2) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(GT, GT) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_Int) new_compare28(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Int) new_compare23(x0, x1, True) new_lt5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_compare10(x0, x1, False, x2) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), x1) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Float) new_pePe(True, x0) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Zero)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_compare25(x0, x1, False, x2) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ps(x0, x1, x2, x3, x4, x5, x6) new_esEs24(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Float) new_compare13(x0, x1, x2) new_ltEs6(LT, GT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, x12, False, x13, x14, x15) new_esEs28(x0, x1, ty_Ordering) new_mkBranch3(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(EQ, GT) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs6(GT, EQ) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_compare26(x0, x1, True, x2, x3) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs11(Char(x0), Char(x1)) new_ltEs14(x0, x1) new_esEs29(x0, x1, ty_Integer) new_ltEs5(True, True) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, x2, x3) new_esEs14(LT, LT) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs32(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) new_lt13(x0, x1, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(x0, Succ(x1)) new_compare112(x0, x1, False, x2, x3) new_mkBranch4(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare14(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs29(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, x4, False, x5, x6, x7) new_esEs9(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs16(x0, x1, x2) new_lt19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_mkBranchResult1(x0, x1, x2, x3, x4, x5, x6) new_esEs8(x0, x1, ty_Int) new_compare28(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, False, x5, x6, x7) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs9(x0, x1, ty_Int) new_primCmpNat1(Succ(x0), x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(@0, @0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1) new_compare12(x0, x1, False) new_ltEs11(Nothing, Nothing, x0) new_esEs8(x0, x1, ty_Double) new_esEs15(Integer(x0), Integer(x1)) new_primCompAux00(x0, EQ) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat2(Zero, Zero) new_lt19(x0, x1, ty_Integer) new_compare24(x0, x1, False) new_esEs32(x0, x1, ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_compare29(x0, x1, x2, x3) new_esEs32(x0, x1, ty_Double) new_mkBranch1(x0, x1, x2, x3, x4, x5, x6) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_ltEs7(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_fsEs(x0) new_primPlusNat0(Zero, Zero) new_ltEs7(x0, x1, ty_Float) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_esEs24(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_not(True) new_sizeFM(EmptyFM, x0, x1, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Double) new_compare14(x0, x1, True) new_esEs9(x0, x1, ty_Ordering) new_compare1(:(x0, x1), [], x2) new_esEs12(False, False) new_esEs28(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, False, x4, x5) new_primCmpNat1(Zero, x0) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(EQ, GT) new_esEs14(GT, EQ) new_ltEs12(x0, x1) new_compare12(x0, x1, True) new_esEs23(x0, x1, ty_Double) new_compare1([], :(x0, x1), x2) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, x3, True, x4, x5, x6) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs5(Nothing, Nothing, x0) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs29(x0, x1, ty_Int) new_ltEs11(Just(x0), Nothing, x1) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, True, x5, x6, x7) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqNat0(Succ(x0), Zero) new_lt20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, True, x2, x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, Branch(x8, x9, x10, x11, x12), False, x13, x14, x15) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Int) new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1) new_lt5(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(Just(x0), Nothing, x1) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs4(x0, x1) new_esEs27(x0, x1, ty_Double) new_compare25(x0, x1, True, x2) new_esEs9(x0, x1, ty_Integer) new_compare30(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs6(GT, GT) new_sr(x0, x1) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_compare8(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare19(x0, x1) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs20(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_ltEs10(x0, x1) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs19(Float(x0, x1), Float(x2, x3)) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs27(x0, x1, ty_Float) new_compare30(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_asAs(True, x0) new_lt19(x0, x1, ty_Ordering) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_ltEs20(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Integer) new_compare210(x0, x1, False, x2, x3) new_esEs14(LT, GT) new_esEs14(GT, LT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt21(x0, x1, ty_Integer) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_esEs28(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs12(True, True) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMinusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_emptyFM(x0, x1, x2) new_primCompAux00(x0, LT) new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1) new_primMinusNat0(Succ(x0), Succ(x1)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2) new_primCmpNat2(Zero, Succ(x0)) new_esEs24(x0, x1, ty_@0) new_primPlusInt(Neg(x0), Neg(x1)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs13(@0, @0) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primPlusNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_Char) new_lt5(x0, x1, ty_Integer) new_primMinusNat0(Succ(x0), Zero) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, 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_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(ty_Either, ec), ed))) -> new_ltEs1(xuu4910, xuu5110, ec, ed) new_primCompAux(xuu4900, xuu5100, xuu128, app(ty_[], bfe)) -> new_compare0(xuu4900, xuu5100, bfe) new_primCompAux(xuu4900, xuu5100, xuu128, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare5(xuu4900, xuu5100, bfb, bfc, bfd) new_compare2(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], bed), bde) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(app(ty_@3, bea), beb), bec), bde) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) new_lt2(xuu490, xuu510, bea, beb, bec) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(app(ty_@3, bbg), bbh), bca)), baa)) -> new_lt2(xuu4911, xuu5111, bbg, bbh, bca) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu4911, xuu5111, cf, cg) new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(ty_Maybe, fd)), fc)) -> new_ltEs0(xuu4910, xuu5110, fd) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(ty_Maybe, bce)) -> new_ltEs0(xuu4912, xuu5112, bce) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(app(ty_@3, da), db), dc))) -> new_ltEs2(xuu4911, xuu5111, da, db, dc) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(ty_Maybe, bbd)), baa)) -> new_lt0(xuu4911, xuu5111, bbd) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(ty_Either, bcf), bcg))) -> new_ltEs1(xuu4912, xuu5112, bcf, bcg) new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(ty_@2, ge), gf)) -> new_ltEs(xuu4910, xuu5110, ge, gf) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(ty_@2, bcc), bcd))) -> new_ltEs(xuu4912, xuu5112, bcc, bcd) new_lt(xuu490, xuu510, de, df) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(ty_Maybe, gg)) -> new_ltEs0(xuu4910, xuu5110, gg) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_@2, hf), hg), hh, baa) -> new_lt(xuu4910, xuu5110, hf, hg) new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(ty_Either, ff), fg)), fc)) -> new_ltEs1(xuu4910, xuu5110, ff, fg) new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(ty_Either, gh), ha)) -> new_ltEs1(xuu4910, xuu5110, gh, ha) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(ty_[], ca)), bb)) -> new_lt3(xuu4910, xuu5110, ca) new_compare4(xuu490, xuu510, bdg, bdh) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(ty_Either, bd), be)), bb)) -> new_lt1(xuu4910, xuu5110, bd, be) new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(ty_[], he)) -> new_ltEs3(xuu4910, xuu5110, he) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(ty_Maybe, ce)) -> new_ltEs0(xuu4911, xuu5111, ce) new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs2(xuu4910, xuu5110, hb, hc, hd) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(ty_[], bdc))) -> new_ltEs3(xuu4912, xuu5112, bdc) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(ty_Maybe, bc)), bb)) -> new_lt0(xuu4910, xuu5110, bc) new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs(xuu4910, xuu5110, dh, ea) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(xuu4911, xuu5111, da, db, dc) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(ty_Maybe, bce))) -> new_ltEs0(xuu4912, xuu5112, bce) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(app(ty_@3, bf), bg), bh), bb) -> new_lt2(xuu4910, xuu5110, bf, bg, bh) new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_@2, fa), fb), fc) -> new_ltEs(xuu4910, xuu5110, fa, fb) new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(app(ty_@3, fh), ga), gb)), fc)) -> new_ltEs2(xuu4910, xuu5110, fh, ga, gb) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(ty_Maybe, bbd), baa) -> new_lt0(xuu4911, xuu5111, bbd) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu4911, xuu5111, cc, cd) new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_Maybe, eb)) -> new_ltEs0(xuu4910, xuu5110, eb) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_Maybe, bab), hh, baa) -> new_lt0(xuu4910, xuu5110, bab) new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs2(xuu4910, xuu5110, ee, ef, eg) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(ty_Either, bbe), bbf), baa) -> new_lt1(xuu4911, xuu5111, bbe, bbf) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_Either, bd), be), bb) -> new_lt1(xuu4910, xuu5110, bd, be) new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(ty_Maybe, eb))) -> new_ltEs0(xuu4910, xuu5110, eb) new_ltEs3(xuu491, xuu511, bdd) -> new_compare0(xuu491, xuu511, bdd) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu4911, xuu5111, cc, cd) new_compare5(xuu490, xuu510, bea, beb, bec) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_Maybe, fd), fc) -> new_ltEs0(xuu4910, xuu5110, fd) new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_compare0(xuu4901, xuu5101, bed) new_lt3(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_compare0(xuu4901, xuu5101, bed) new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(ty_Maybe, bdf), bde) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hh), baa)) -> new_lt2(xuu4910, xuu5110, bae, baf, bag) new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(ty_@2, fa), fb)), fc)) -> new_ltEs(xuu4910, xuu5110, fa, fb) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(app(ty_@3, bae), baf), bag), hh, baa) -> new_lt2(xuu4910, xuu5110, bae, baf, bag) new_lt1(xuu490, xuu510, bdg, bdh) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) new_compare2(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], bed), bde) -> new_compare0(xuu4901, xuu5101, bed) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(app(ty_@3, bf), bg), bh)), bb)) -> new_lt2(xuu4910, xuu5110, bf, bg, bh) new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dh), ea)) -> new_ltEs(xuu4910, xuu5110, dh, ea) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(ty_[], dd)) -> new_ltEs3(xuu4911, xuu5111, dd) new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs2(xuu4910, xuu5110, ee, ef, eg) new_compare21(xuu490, xuu510, False, bdg, bdh) -> new_ltEs1(xuu490, xuu510, bdg, bdh) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_Either, bac), bad), hh, baa) -> new_lt1(xuu4910, xuu5110, bac, bad) new_primCompAux(xuu4900, xuu5100, xuu128, app(ty_Maybe, beg)) -> new_compare3(xuu4900, xuu5100, beg) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(ty_[], bdc)) -> new_ltEs3(xuu4912, xuu5112, bdc) new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_Either, ec), ed)) -> new_ltEs1(xuu4910, xuu5110, ec, ed) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_@2, h), ba), bb) -> new_lt(xuu4910, xuu5110, h, ba) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs2(xuu4912, xuu5112, bch, bda, bdb) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu4912, xuu5112, bcf, bcg) new_lt3(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_[], ca), bb) -> new_lt3(xuu4910, xuu5110, ca) new_primCompAux(xuu4900, xuu5100, xuu128, app(app(ty_@2, bee), bef)) -> new_compare(xuu4900, xuu5100, bee, bef) new_primCompAux(xuu4900, xuu5100, xuu128, app(app(ty_Either, beh), bfa)) -> new_compare4(xuu4900, xuu5100, beh, bfa) new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(ty_Maybe, ce))) -> new_ltEs0(xuu4911, xuu5111, ce) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(ty_Either, bbe), bbf)), baa)) -> new_lt1(xuu4911, xuu5111, bbe, bbf) new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, fh), ga), gb), fc) -> new_ltEs2(xuu4910, xuu5110, fh, ga, gb) new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs2(xuu4910, xuu5110, hb, hc, hd) new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, dg, app(ty_[], bdd)) -> new_compare0(xuu491, xuu511, bdd) new_compare20(xuu490, xuu510, False, bdf) -> new_ltEs0(xuu490, xuu510, bdf) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(ty_[], bah)), hh), baa)) -> new_lt3(xuu4910, xuu5110, bah) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(ty_[], bcb), baa) -> new_lt3(xuu4911, xuu5111, bcb) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(ty_Maybe, bab)), hh), baa)) -> new_lt0(xuu4910, xuu5110, bab) new_lt0(xuu490, xuu510, bdf) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ff), fg), fc) -> new_ltEs1(xuu4910, xuu5110, ff, fg) new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_Maybe, bc), bb) -> new_lt0(xuu4910, xuu5110, bc) new_compare22(xuu490, xuu510, False, bea, beb, bec) -> new_ltEs2(xuu490, xuu510, bea, beb, bec) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs2(xuu4912, xuu5112, bch, bda, bdb) new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(ty_@2, ge), gf))) -> new_ltEs(xuu4910, xuu5110, ge, gf) new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_@2, de), df), bde) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(ty_Either, cf), cg))) -> new_ltEs1(xuu4911, xuu5111, cf, cg) new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(ty_[], he))) -> new_ltEs3(xuu4910, xuu5110, he) new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_[], eh)) -> new_ltEs3(xuu4910, xuu5110, eh) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(ty_@2, bcc), bcd)) -> new_ltEs(xuu4912, xuu5112, bcc, bcd) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hh), baa)) -> new_lt1(xuu4910, xuu5110, bac, bad) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(ty_@2, bbb), bbc), baa) -> new_lt(xuu4911, xuu5111, bbb, bbc) new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_[], gc), fc) -> new_ltEs3(xuu4910, xuu5110, gc) new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(ty_[], eh))) -> new_ltEs3(xuu4910, xuu5110, eh) new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_Either, bdg), bdh), bde) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(ty_Maybe, gg))) -> new_ltEs0(xuu4910, xuu5110, gg) new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(ty_Either, gh), ha))) -> new_ltEs1(xuu4910, xuu5110, gh, ha) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(app(ty_@3, bbg), bbh), bca), baa) -> new_lt2(xuu4911, xuu5111, bbg, bbh, bca) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(ty_[], bcb)), baa)) -> new_lt3(xuu4911, xuu5111, bcb) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(ty_[], dd))) -> new_ltEs3(xuu4911, xuu5111, dd) new_compare(xuu490, xuu510, de, df) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) new_compare3(xuu490, xuu510, bdf) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xuu4910, xuu5110, h, ba) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hh), baa)) -> new_lt(xuu4910, xuu5110, hf, hg) new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_[], bah), hh, baa) -> new_lt3(xuu4910, xuu5110, bah) new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(ty_[], gc)), fc)) -> new_ltEs3(xuu4910, xuu5110, gc) new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(ty_@2, bbb), bbc)), baa)) -> new_lt(xuu4911, xuu5111, bbb, bbc) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs14(GT, GT) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_compare24(xuu490, xuu510, False) -> new_compare12(xuu490, xuu510, new_ltEs5(xuu490, xuu510)) new_esEs24(xuu4911, xuu5111, ty_Char) -> new_esEs11(xuu4911, xuu5111) new_pePe(True, xuu127) -> True new_lt6(xuu490, xuu510) -> new_esEs14(new_compare6(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_@2, fa), fb), fc) -> new_ltEs9(xuu4910, xuu5110, fa, fb) new_ltEs6(GT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_ltEs9(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, bb) -> new_pePe(new_lt21(xuu4910, xuu5110, cb), new_asAs(new_esEs29(xuu4910, xuu5110, cb), new_ltEs20(xuu4911, xuu5111, bb))) new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_compare26(xuu49, xuu51, True, dg, bde) -> EQ new_esEs28(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], caf), cae) -> new_esEs10(xuu3110000, xuu6000, caf) new_esEs22(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare25(xuu490, xuu510, False, bdf) -> new_compare10(xuu490, xuu510, new_ltEs11(xuu490, xuu510, bdf), bdf) new_lt16(xuu490, xuu510, cdb) -> new_esEs14(new_compare15(xuu490, xuu510, cdb), LT) new_ltEs7(xuu491, xuu511, ty_@0) -> new_ltEs4(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, cdh)) -> new_ltEs16(xuu4912, xuu5112, cdh) new_esEs28(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs14(EQ, EQ) -> True new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare6(xuu491, xuu511)) new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_compare111(xuu103, xuu104, xuu105, xuu106, False, cfh, cga) -> GT new_ltEs6(EQ, GT) -> True new_ltEs7(xuu491, xuu511, app(ty_Ratio, cdd)) -> new_ltEs16(xuu491, xuu511, cdd) new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, bae), baf), bag)) -> new_lt15(xuu4910, xuu5110, bae, baf, bag) new_esEs24(xuu4911, xuu5111, app(ty_Ratio, cdg)) -> new_esEs16(xuu4911, xuu5111, cdg) new_primCompAux0(xuu4900, xuu5100, xuu128, bed) -> new_primCompAux00(xuu128, new_compare30(xuu4900, xuu5100, bed)) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bff, bfg) -> new_asAs(new_esEs8(xuu3110000, xuu6000, bff), new_esEs9(xuu3110001, xuu6001, bfg)) new_compare30(xuu4900, xuu5100, ty_@0) -> new_compare9(xuu4900, xuu5100) new_esEs20(xuu490, xuu510, ty_Double) -> new_esEs18(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(app(ty_@2, bee), bef)) -> new_compare18(xuu4900, xuu5100, bee, bef) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_compare210(xuu490, xuu510, True, bdg, bdh) -> EQ new_ltEs20(xuu4911, xuu5111, ty_@0) -> new_ltEs4(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(ty_@2, bbb), bbc)) -> new_esEs4(xuu4911, xuu5111, bbb, bbc) new_compare29(xuu490, xuu510, bdg, bdh) -> new_compare210(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primCmpNat2(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat2(xuu49000, xuu51000) new_ltEs4(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) new_lt12(xuu490, xuu510) -> new_esEs14(new_compare19(xuu490, xuu510), LT) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, app(ty_[], bed)) -> new_lt17(xuu490, xuu510, bed) new_compare1(:(xuu4900, xuu4901), [], bed) -> GT new_compare12(xuu490, xuu510, False) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_ltEs20(xuu4911, xuu5111, ty_Integer) -> new_ltEs10(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Float) -> new_lt11(xuu490, xuu510) new_esEs23(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_not(True) -> False new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(ty_[], cca)) -> new_esEs10(xuu3110000, xuu6000, cca) new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs7(xuu3110001, xuu6001, bhd, bhe, bhf) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cgb, cgc, cgd) -> new_asAs(new_esEs25(xuu3110000, xuu6000, cgb), new_asAs(new_esEs26(xuu3110001, xuu6001, cgc), new_esEs27(xuu3110002, xuu6002, cgd))) new_compare13(xuu490, xuu510, bdf) -> new_compare25(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) new_esEs27(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_primCompAux00(xuu137, LT) -> LT new_compare30(xuu4900, xuu5100, app(ty_[], bfe)) -> new_compare1(xuu4900, xuu5100, bfe) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs15(xuu4910, xuu5110, ee, ef, eg) new_esEs28(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_ltEs6(LT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs10(xuu4912, xuu5112) new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt15(xuu4911, xuu5111, bbg, bbh, bca) new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(xuu3110000, xuu6000, cgg, cgh, cha) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dcc), new_esEs10(xuu3110001, xuu6001, dcc)) new_esEs26(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_esEs28(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_compare17(xuu490, xuu510, bea, beb, bec) -> new_compare28(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) new_esEs8(xuu3110000, xuu6000, app(ty_Ratio, bge)) -> new_esEs16(xuu3110000, xuu6000, bge) new_lt5(xuu490, xuu510, ty_Int) -> new_lt18(xuu490, xuu510) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs20(xuu4911, xuu5111, ty_Int) -> new_ltEs18(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, chb)) -> new_esEs16(xuu3110000, xuu6000, chb) new_esEs8(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, ty_Int) -> new_ltEs18(xuu491, xuu511) new_primCmpNat0(xuu4900, Succ(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) new_esEs8(xuu3110000, xuu6000, app(app(ty_@2, bgf), bgg)) -> new_esEs4(xuu3110000, xuu6000, bgf, bgg) new_lt5(xuu490, xuu510, ty_Double) -> new_lt6(xuu490, xuu510) new_lt5(xuu490, xuu510, app(app(ty_@2, de), df)) -> new_lt7(xuu490, xuu510, de, df) new_esEs24(xuu4911, xuu5111, ty_Ordering) -> new_esEs14(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs4(xuu4912, xuu5112) new_primCompAux00(xuu137, GT) -> GT new_esEs24(xuu4911, xuu5111, ty_Double) -> new_esEs18(xuu4911, xuu5111) new_esEs20(xuu490, xuu510, ty_@0) -> new_esEs13(xuu490, xuu510) new_lt14(xuu490, xuu510) -> new_esEs14(new_compare31(xuu490, xuu510), LT) new_lt21(xuu4910, xuu5110, app(ty_Maybe, bc)) -> new_lt9(xuu4910, xuu5110, bc) new_lt5(xuu490, xuu510, ty_Ordering) -> new_lt4(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(ty_Ratio, cfg)) -> new_compare15(xuu4900, xuu5100, cfg) new_lt9(xuu490, xuu510, bdf) -> new_esEs14(new_compare13(xuu490, xuu510, bdf), LT) new_esEs29(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_compare14(xuu490, xuu510, True) -> LT new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT new_lt5(xuu490, xuu510, app(app(ty_Either, bdg), bdh)) -> new_lt13(xuu490, xuu510, bdg, bdh) new_esEs20(xuu490, xuu510, app(app(ty_@2, de), df)) -> new_esEs4(xuu490, xuu510, de, df) new_esEs20(xuu490, xuu510, app(ty_Ratio, cdb)) -> new_esEs16(xuu490, xuu510, cdb) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_lt18(xuu490, xuu510) -> new_esEs14(new_compare7(xuu490, xuu510), LT) new_ltEs5(False, True) -> True new_esEs8(xuu3110000, xuu6000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs7(xuu3110000, xuu6000, bgb, bgc, bgd) new_esEs23(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_lt5(xuu490, xuu510, app(ty_Maybe, bdf)) -> new_lt9(xuu490, xuu510, bdf) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, cae) -> new_esEs13(xuu3110000, xuu6000) new_lt21(xuu4910, xuu5110, app(app(app(ty_@3, bf), bg), bh)) -> new_lt15(xuu4910, xuu5110, bf, bg, bh) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(ty_Maybe, cbh)) -> new_esEs5(xuu3110000, xuu6000, cbh) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(xuu3110001, xuu6001, daa, dab, dac) new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt8(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_Either, gd), fc)) -> new_ltEs13(xuu491, xuu511, gd, fc) new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt14(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Ratio, cfd)) -> new_ltEs16(xuu4910, xuu5110, cfd) new_compare110(xuu490, xuu510, False, bea, beb, bec) -> GT new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, cae) -> new_esEs11(xuu3110000, xuu6000) new_pePe(False, xuu127) -> xuu127 new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, bhb)) -> new_esEs5(xuu3110001, xuu6001, bhb) new_ltEs13(Left(xuu4910), Right(xuu5110), gd, fc) -> True new_esEs12(False, False) -> True new_esEs27(xuu3110002, xuu6002, ty_Bool) -> new_esEs12(xuu3110002, xuu6002) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cad), cae) -> new_esEs5(xuu3110000, xuu6000, cad) new_compare112(xuu490, xuu510, True, bdg, bdh) -> LT new_lt20(xuu4911, xuu5111, app(ty_Ratio, cdg)) -> new_lt16(xuu4911, xuu5111, cdg) new_ltEs6(LT, LT) -> True new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(ty_[], bdd)) -> new_ltEs17(xuu491, xuu511, bdd) new_esEs23(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_esEs11(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare10(xuu490, xuu510, False, bdf) -> GT new_lt20(xuu4911, xuu5111, app(ty_Maybe, bbd)) -> new_lt9(xuu4911, xuu5111, bbd) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ff), fg), fc) -> new_ltEs13(xuu4910, xuu5110, ff, fg) new_lt19(xuu4910, xuu5110, app(ty_Maybe, bab)) -> new_lt9(xuu4910, xuu5110, bab) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare16(xuu103, xuu104, xuu105, xuu106, True, xuu108, cfh, cga) -> new_compare111(xuu103, xuu104, xuu105, xuu106, True, cfh, cga) new_ltEs13(Right(xuu4910), Left(xuu5110), gd, fc) -> False new_compare30(xuu4900, xuu5100, app(app(ty_Either, beh), bfa)) -> new_compare29(xuu4900, xuu5100, beh, bfa) new_esEs8(xuu3110000, xuu6000, app(ty_[], bga)) -> new_esEs10(xuu3110000, xuu6000, bga) new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, chc), chd)) -> new_esEs4(xuu3110000, xuu6000, chc, chd) new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs18(xuu4912, xuu5112) new_esEs5(Nothing, Nothing, cea) -> True new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(ty_Ratio, cce)) -> new_esEs16(xuu3110000, xuu6000, cce) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, bhg)) -> new_esEs16(xuu3110001, xuu6001, bhg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), cea) -> False new_esEs5(Just(xuu3110000), Nothing, cea) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_ltEs20(xuu4911, xuu5111, app(app(ty_Either, cf), cg)) -> new_ltEs13(xuu4911, xuu5111, cf, cg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cfb), cfc)) -> new_esEs6(xuu3110000, xuu6000, cfb, cfc) new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs14(xuu4912, xuu5112) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs27(xuu3110002, xuu6002, ty_Ordering) -> new_esEs14(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(app(ty_@2, ge), gf)) -> new_ltEs9(xuu4910, xuu5110, ge, gf) new_esEs24(xuu4911, xuu5111, app(app(ty_Either, bbe), bbf)) -> new_esEs6(xuu4911, xuu5111, bbe, bbf) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, bhh), caa)) -> new_esEs4(xuu3110001, xuu6001, bhh, caa) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cbe), cbf), cae) -> new_esEs6(xuu3110000, xuu6000, cbe, cbf) new_lt21(xuu4910, xuu5110, app(app(ty_Either, bd), be)) -> new_lt13(xuu4910, xuu5110, bd, be) new_esEs14(LT, GT) -> False new_esEs14(GT, LT) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ced), cee), cef)) -> new_esEs7(xuu3110000, xuu6000, ced, cee, cef) new_compare10(xuu490, xuu510, True, bdf) -> LT new_compare30(xuu4900, xuu5100, ty_Float) -> new_compare27(xuu4900, xuu5100) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_ltEs6(LT, EQ) -> True new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(ty_[], he)) -> new_ltEs17(xuu4910, xuu5110, he) new_esEs23(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, bcf), bcg)) -> new_ltEs13(xuu4912, xuu5112, bcf, bcg) new_lt5(xuu490, xuu510, app(ty_Ratio, cdb)) -> new_lt16(xuu490, xuu510, cdb) new_primPlusNat1(Succ(xuu940), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu940, xuu600000))) new_esEs23(xuu4910, xuu5110, app(ty_Maybe, bab)) -> new_esEs5(xuu4910, xuu5110, bab) new_esEs24(xuu4911, xuu5111, ty_Int) -> new_esEs17(xuu4911, xuu5111) new_primCmpNat2(Succ(xuu49000), Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) new_ltEs5(True, False) -> False new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Ratio, cfe), fc) -> new_ltEs16(xuu4910, xuu5110, cfe) new_compare30(xuu4900, xuu5100, app(ty_Maybe, beg)) -> new_compare13(xuu4900, xuu5100, beg) new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt12(xuu4911, xuu5111) new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) new_primPlusNat0(Zero, Succ(xuu9000)) -> Succ(xuu9000) new_compare30(xuu4900, xuu5100, ty_Int) -> new_compare7(xuu4900, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Char, fc) -> new_ltEs14(xuu4910, xuu5110) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) new_esEs24(xuu4911, xuu5111, app(ty_[], bcb)) -> new_esEs10(xuu4911, xuu5111, bcb) new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs7(xuu3110000, xuu6000, ccb, ccc, ccd) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], cec)) -> new_esEs10(xuu3110000, xuu6000, cec) new_compare7(xuu85, xuu84) -> new_primCmpInt(xuu85, xuu84) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, cae) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], bed) -> EQ new_ltEs20(xuu4911, xuu5111, ty_Double) -> new_ltEs8(xuu4911, xuu5111) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) new_lt21(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_esEs24(xuu4911, xuu5111, ty_Bool) -> new_esEs12(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(xuu4911, xuu5111, bbg, bbh, bca) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_lt5(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_@0) -> new_esEs13(xuu3110002, xuu6002) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Maybe, eb)) -> new_ltEs11(xuu4910, xuu5110, eb) new_lt19(xuu4910, xuu5110, app(ty_Ratio, cdf)) -> new_lt16(xuu4910, xuu5110, cdf) new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_@2, cb), bb)) -> new_ltEs9(xuu491, xuu511, cb, bb) new_esEs26(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_ltEs20(xuu4911, xuu5111, app(app(app(ty_@3, da), db), dc)) -> new_ltEs15(xuu4911, xuu5111, da, db, dc) new_esEs23(xuu4910, xuu5110, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs7(xuu4910, xuu5110, bae, baf, bag) new_ltEs19(xuu4912, xuu5112, app(ty_[], bdc)) -> new_ltEs17(xuu4912, xuu5112, bdc) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_compare25(xuu490, xuu510, True, bdf) -> EQ new_esEs24(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Bool) -> new_lt12(xuu490, xuu510) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu491, xuu511) -> new_fsEs(new_compare7(xuu491, xuu511)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(ty_[], dd)) -> new_ltEs17(xuu4911, xuu5111, dd) new_esEs23(xuu4910, xuu5110, app(ty_Ratio, cdf)) -> new_esEs16(xuu4910, xuu5110, cdf) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_lt17(xuu490, xuu510, bed) -> new_esEs14(new_compare1(xuu490, xuu510, bed), LT) new_lt15(xuu490, xuu510, bea, beb, bec) -> new_esEs14(new_compare17(xuu490, xuu510, bea, beb, bec), LT) new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs15(xuu4912, xuu5112, bch, bda, bdb) new_ltEs16(xuu491, xuu511, cdd) -> new_fsEs(new_compare15(xuu491, xuu511, cdd)) new_esEs8(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, cae) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) new_ltEs14(xuu491, xuu511) -> new_fsEs(new_compare31(xuu491, xuu511)) new_ltEs7(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs8(xuu4912, xuu5112) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, ceb)) -> new_esEs5(xuu3110000, xuu6000, ceb) new_esEs23(xuu4910, xuu5110, app(ty_[], bah)) -> new_esEs10(xuu4910, xuu5110, bah) new_esEs26(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu4910, xuu5110, app(app(ty_Either, bac), bad)) -> new_esEs6(xuu4910, xuu5110, bac, bad) new_esEs23(xuu4910, xuu5110, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu4910, xuu5110, hf, hg) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Double, fc) -> new_ltEs8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs8(xuu3110000, xuu6000, app(ty_Maybe, bfh)) -> new_esEs5(xuu3110000, xuu6000, bfh) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, cae) -> new_esEs17(xuu3110000, xuu6000) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_lt20(xuu4911, xuu5111, app(app(ty_Either, bbe), bbf)) -> new_lt13(xuu4911, xuu5111, bbe, bbf) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cbc), cbd), cae) -> new_esEs4(xuu3110000, xuu6000, cbc, cbd) new_esEs9(xuu3110001, xuu6001, app(ty_[], bhc)) -> new_esEs10(xuu3110001, xuu6001, bhc) new_esEs20(xuu490, xuu510, ty_Integer) -> new_esEs15(xuu490, xuu510) new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_compare16(xuu103, xuu104, xuu105, xuu106, False, xuu108, cfh, cga) -> new_compare111(xuu103, xuu104, xuu105, xuu106, xuu108, cfh, cga) new_ltEs20(xuu4911, xuu5111, app(ty_Maybe, ce)) -> new_ltEs11(xuu4911, xuu5111, ce) new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat0(xuu4900, xuu510) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(app(ty_Either, cch), cda)) -> new_esEs6(xuu3110000, xuu6000, cch, cda) new_lt20(xuu4911, xuu5111, app(ty_[], bcb)) -> new_lt17(xuu4911, xuu5111, bcb) new_ltEs6(GT, EQ) -> False new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt11(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_compare14(xuu490, xuu510, False) -> GT new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_[], eh)) -> new_ltEs17(xuu4910, xuu5110, eh) new_ltEs7(xuu491, xuu511, app(ty_Maybe, cdc)) -> new_ltEs11(xuu491, xuu511, cdc) new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Maybe, fd), fc) -> new_ltEs11(xuu4910, xuu5110, fd) new_ltEs5(False, False) -> True new_esEs29(xuu4910, xuu5110, app(ty_Maybe, bc)) -> new_esEs5(xuu4910, xuu5110, bc) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Bool, fc) -> new_ltEs5(xuu4910, xuu5110) new_esEs23(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_lt4(xuu490, xuu510) -> new_esEs14(new_compare8(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_primCmpNat0(xuu4900, Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, cae) -> new_esEs19(xuu3110000, xuu6000) new_compare23(xuu490, xuu510, False) -> new_compare14(xuu490, xuu510, new_ltEs6(xuu490, xuu510)) new_esEs28(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_esEs14(EQ, GT) -> False new_esEs14(GT, EQ) -> False new_primCmpNat2(Zero, Succ(xuu51000)) -> LT new_lt21(xuu4910, xuu5110, app(ty_Ratio, ddf)) -> new_lt16(xuu4910, xuu5110, ddf) new_esEs8(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare111(xuu103, xuu104, xuu105, xuu106, True, cfh, cga) -> LT new_asAs(True, xuu59) -> xuu59 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, cab), cac)) -> new_esEs6(xuu3110001, xuu6001, cab, cac) new_lt20(xuu4911, xuu5111, app(app(ty_@2, bbb), bbc)) -> new_lt7(xuu4911, xuu5111, bbb, bbc) new_compare18(xuu490, xuu510, de, df) -> new_compare26(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(app(ty_@2, cc), cd)) -> new_ltEs9(xuu4911, xuu5111, cc, cd) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs15(xuu4910, xuu5110, hb, hc, hd) new_esEs6(Left(xuu3110000), Right(xuu6000), cbg, cae) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), cbg, cae) -> False new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(app(ty_Either, gh), ha)) -> new_ltEs13(xuu4910, xuu5110, gh, ha) new_esEs20(xuu490, xuu510, app(ty_Maybe, bdf)) -> new_esEs5(xuu490, xuu510, bdf) new_ltEs7(xuu491, xuu511, app(app(app(ty_@3, bba), hh), baa)) -> new_ltEs15(xuu491, xuu511, bba, hh, baa) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, ceh), cfa)) -> new_esEs4(xuu3110000, xuu6000, ceh, cfa) new_ltEs7(xuu491, xuu511, ty_Double) -> new_ltEs8(xuu491, xuu511) new_lt19(xuu4910, xuu5110, app(app(ty_@2, hf), hg)) -> new_lt7(xuu4910, xuu5110, hf, hg) new_esEs24(xuu4911, xuu5111, ty_Integer) -> new_esEs15(xuu4911, xuu5111) new_esEs26(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, ty_Char) -> new_ltEs14(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, bcc), bcd)) -> new_ltEs9(xuu4912, xuu5112, bcc, bcd) new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs6(xuu4912, xuu5112) new_esEs10(:(xuu3110000, xuu3110001), [], dcc) -> False new_esEs10([], :(xuu6000, xuu6001), dcc) -> False new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ceg)) -> new_esEs16(xuu3110000, xuu6000, ceg) new_lt11(xuu490, xuu510) -> new_esEs14(new_compare27(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Float, fc) -> new_ltEs12(xuu4910, xuu5110) new_primCompAux00(xuu137, EQ) -> xuu137 new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare23(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primMulNat0(Zero, Zero) -> Zero new_esEs12(True, True) -> True new_esEs27(xuu3110002, xuu6002, app(ty_Ratio, dbf)) -> new_esEs16(xuu3110002, xuu6002, dbf) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs24(xuu4911, xuu5111, app(ty_Maybe, bbd)) -> new_esEs5(xuu4911, xuu5111, bbd) new_esEs29(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_ltEs17(xuu491, xuu511, bdd) -> new_fsEs(new_compare1(xuu491, xuu511, bdd)) new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) new_esEs26(xuu3110001, xuu6001, app(app(ty_Either, dag), dah)) -> new_esEs6(xuu3110001, xuu6001, dag, dah) new_compare9(@0, @0) -> EQ new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) new_ltEs6(EQ, LT) -> False new_compare1(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_primCompAux0(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) new_primCmpNat1(Zero, xuu4900) -> LT new_ltEs11(Nothing, Just(xuu5110), cdc) -> True new_compare28(xuu490, xuu510, True, bea, beb, bec) -> EQ new_esEs26(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(ty_[], chh)) -> new_esEs10(xuu3110001, xuu6001, chh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Int, fc) -> new_ltEs18(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_compare19(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs12(xuu490, xuu510)) new_lt13(xuu490, xuu510, bdg, bdh) -> new_esEs14(new_compare29(xuu490, xuu510, bdg, bdh), LT) new_esEs8(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCmpNat2(Zero, Zero) -> EQ new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt4(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs25(xuu3110000, xuu6000, app(ty_[], cgf)) -> new_esEs10(xuu3110000, xuu6000, cgf) new_esEs8(xuu3110000, xuu6000, app(app(ty_Either, bgh), bha)) -> new_esEs6(xuu3110000, xuu6000, bgh, bha) new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt18(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, bce)) -> new_ltEs11(xuu4912, xuu5112, bce) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, cae) -> new_esEs15(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_@0, fc) -> new_ltEs4(xuu4910, xuu5110) new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, che), chf)) -> new_esEs6(xuu3110000, xuu6000, che, chf) new_lt5(xuu490, xuu510, ty_Integer) -> new_lt8(xuu490, xuu510) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(ty_Maybe, gg)) -> new_ltEs11(xuu4910, xuu5110, gg) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, app(app(ty_Either, bac), bad)) -> new_lt13(xuu4910, xuu5110, bac, bad) new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt6(xuu4911, xuu5111) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, ty_Char) -> new_lt14(xuu490, xuu510) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_compare210(xuu490, xuu510, False, bdg, bdh) -> new_compare112(xuu490, xuu510, new_ltEs13(xuu490, xuu510, bdg, bdh), bdg, bdh) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, app(app(ty_@2, ccf), ccg)) -> new_esEs4(xuu3110000, xuu6000, ccf, ccg) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(app(ty_@2, dae), daf)) -> new_esEs4(xuu3110001, xuu6001, dae, daf) new_compare24(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_esEs20(xuu490, xuu510, app(app(ty_Either, bdg), bdh)) -> new_esEs6(xuu490, xuu510, bdg, bdh) new_ltEs7(xuu491, xuu511, ty_Char) -> new_ltEs14(xuu491, xuu511) new_fsEs(xuu115) -> new_not(new_esEs14(xuu115, GT)) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cde) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cde), new_esEs22(xuu3110001, xuu6001, cde)) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, ty_Char) -> new_esEs11(xuu3110002, xuu6002) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu3110001, xuu6001, app(ty_Ratio, dad)) -> new_esEs16(xuu3110001, xuu6001, dad) new_ltEs15(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, baa) -> new_pePe(new_lt19(xuu4910, xuu5110, bba), new_asAs(new_esEs23(xuu4910, xuu5110, bba), new_pePe(new_lt20(xuu4911, xuu5111, hh), new_asAs(new_esEs24(xuu4911, xuu5111, hh), new_ltEs19(xuu4912, xuu5112, baa))))) new_lt10(xuu490, xuu510) -> new_esEs14(new_compare9(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_Either, ec), ed)) -> new_ltEs13(xuu4910, xuu5110, ec, ed) new_lt21(xuu4910, xuu5110, app(app(ty_@2, h), ba)) -> new_lt7(xuu4910, xuu5110, h, ba) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dh), ea)) -> new_ltEs9(xuu4910, xuu5110, dh, ea) new_esEs28(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_lt21(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs5(xuu4912, xuu5112) new_esEs29(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_esEs8(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat2(xuu5100, xuu4900) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, app(ty_[], bed)) -> new_esEs10(xuu490, xuu510, bed) new_compare110(xuu490, xuu510, True, bea, beb, bec) -> LT new_compare26(@2(xuu490, xuu491), @2(xuu510, xuu511), False, dg, bde) -> new_compare16(xuu490, xuu491, xuu510, xuu511, new_lt5(xuu490, xuu510, dg), new_asAs(new_esEs20(xuu490, xuu510, dg), new_ltEs7(xuu491, xuu511, bde)), dg, bde) new_compare112(xuu490, xuu510, False, bdg, bdh) -> GT new_compare30(xuu4900, xuu5100, ty_Ordering) -> new_compare8(xuu4900, xuu5100) new_esEs29(xuu4910, xuu5110, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs7(xuu4910, xuu5110, bf, bg, bh) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_not(False) -> True new_compare1([], :(xuu5100, xuu5101), bed) -> LT new_esEs20(xuu490, xuu510, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs7(xuu490, xuu510, bea, beb, bec) new_lt21(xuu4910, xuu5110, app(ty_[], ca)) -> new_lt17(xuu4910, xuu5110, ca) new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, ty_Ordering) -> new_esEs14(xuu490, xuu510) new_esEs29(xuu4910, xuu5110, app(ty_[], ca)) -> new_esEs10(xuu4910, xuu5110, ca) new_primPlusNat0(Succ(xuu41200), Succ(xuu9000)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu9000))) new_esEs29(xuu4910, xuu5110, app(app(ty_Either, bd), be)) -> new_esEs6(xuu4910, xuu5110, bd, be) new_esEs20(xuu490, xuu510, ty_Bool) -> new_esEs12(xuu490, xuu510) new_esEs22(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_lt5(xuu490, xuu510, app(app(app(ty_@3, bea), beb), bec)) -> new_lt15(xuu490, xuu510, bea, beb, bec) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, cae) -> new_esEs18(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, app(ty_[], dbb)) -> new_esEs10(xuu3110002, xuu6002, dbb) new_esEs20(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare27(xuu491, xuu511)) new_compare30(xuu4900, xuu5100, ty_Double) -> new_compare6(xuu4900, xuu5100) new_esEs24(xuu4911, xuu5111, ty_@0) -> new_esEs13(xuu4911, xuu5111) new_esEs27(xuu3110002, xuu6002, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(xuu3110002, xuu6002, dbc, dbd, dbe) new_esEs29(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_esEs26(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_compare30(xuu4900, xuu5100, ty_Char) -> new_compare31(xuu4900, xuu5100) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cbb), cae) -> new_esEs16(xuu3110000, xuu6000, cbb) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Integer, fc) -> new_ltEs10(xuu4910, xuu5110) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(xuu4910), Right(xuu5110), gd, app(ty_Ratio, cff)) -> new_ltEs16(xuu4910, xuu5110, cff) new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare17(xuu4900, xuu5100, bfb, bfc, bfd) new_esEs28(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs5(True, True) -> True new_esEs10([], [], dcc) -> True new_esEs13(@0, @0) -> True new_lt21(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs14(LT, LT) -> True new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare7(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) new_esEs27(xuu3110002, xuu6002, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu3110002, xuu6002, dbg, dbh) new_esEs27(xuu3110002, xuu6002, app(app(ty_Either, dca), dcb)) -> new_esEs6(xuu3110002, xuu6002, dca, dcb) new_esEs8(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs14(LT, EQ) -> False new_esEs14(EQ, LT) -> False new_compare8(xuu490, xuu510) -> new_compare23(xuu490, xuu510, new_esEs14(xuu490, xuu510)) new_lt7(xuu490, xuu510, de, df) -> new_esEs14(new_compare18(xuu490, xuu510, de, df), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Ordering, fc) -> new_ltEs6(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_compare28(xuu490, xuu510, False, bea, beb, bec) -> new_compare110(xuu490, xuu510, new_ltEs15(xuu490, xuu510, bea, beb, bec), bea, beb, bec) new_esEs8(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, cag), cah), cba), cae) -> new_esEs7(xuu3110000, xuu6000, cag, cah, cba) new_esEs20(xuu490, xuu510, ty_Char) -> new_esEs11(xuu490, xuu510) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_[], gc), fc) -> new_ltEs17(xuu4910, xuu5110, gc) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu4910, xuu5110, app(ty_[], bah)) -> new_lt17(xuu4910, xuu5110, bah) new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) new_ltEs11(Just(xuu4910), Nothing, cdc) -> False new_ltEs7(xuu491, xuu511, ty_Bool) -> new_ltEs5(xuu491, xuu511) new_ltEs20(xuu4911, xuu5111, ty_Ordering) -> new_ltEs6(xuu4911, xuu5111) new_compare12(xuu490, xuu510, True) -> LT new_esEs28(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_ltEs11(Nothing, Nothing, cdc) -> True new_esEs29(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), gd, ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, app(app(ty_@2, h), ba)) -> new_esEs4(xuu4910, xuu5110, h, ba) new_esEs29(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_esEs29(xuu4910, xuu5110, app(ty_Ratio, ddf)) -> new_esEs16(xuu4910, xuu5110, ddf) new_esEs23(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_primEqNat0(Zero, Zero) -> True new_ltEs20(xuu4911, xuu5111, app(ty_Ratio, ddg)) -> new_ltEs16(xuu4911, xuu5111, ddg) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, fh), ga), gb), fc) -> new_ltEs15(xuu4910, xuu5110, fh, ga, gb) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_asAs(False, xuu59) -> False new_ltEs20(xuu4911, xuu5111, ty_Bool) -> new_ltEs5(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs10(xuu3110000, xuu6000, dce) new_ltEs7(xuu491, xuu511, ty_Ordering) -> new_ltEs6(xuu491, xuu511) new_esEs27(xuu3110002, xuu6002, app(ty_Maybe, dba)) -> new_esEs5(xuu3110002, xuu6002, dba) new_esEs8(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu490, xuu510) -> new_esEs14(new_compare11(xuu490, xuu510), LT) new_compare30(xuu4900, xuu5100, ty_Bool) -> new_compare19(xuu4900, xuu5100) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_ltEs7(xuu491, xuu511, ty_Integer) -> new_ltEs10(xuu491, xuu511) new_esEs6(Right(xuu3110000), Right(xuu6000), cbg, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(GT, LT) -> False new_esEs20(xuu490, xuu510, ty_Int) -> new_esEs17(xuu490, xuu510) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_compare31(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) The set Q consists of the following terms: new_esEs29(x0, x1, ty_Float) new_esEs14(EQ, EQ) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, GT) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, x2) new_esEs26(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Double) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs11(Just(x0), Just(x1), ty_Float) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_compare31(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare29(x0, x1, x2, x3) new_esEs20(x0, x1, ty_Float) new_compare30(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_lt6(x0, x1) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_primCmpNat2(Succ(x0), Zero) new_ltEs6(LT, LT) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs26(x0, x1, ty_@0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_@0) new_lt8(x0, x1) new_compare7(x0, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare18(x0, x1, x2, x3) new_lt21(x0, x1, ty_Ordering) new_lt10(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_Integer) new_ltEs5(False, True) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(True, False) new_primCmpNat2(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Bool) new_lt14(x0, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_lt18(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpNat0(x0, Zero) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Char) new_lt5(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Integer) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt5(x0, x1, ty_Int) new_lt21(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_esEs10(:(x0, x1), [], x2) new_ltEs7(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primPlusNat1(Zero, x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt5(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, False) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Double) new_compare30(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_asAs(False, x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs26(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare30(x0, x1, ty_Int) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_esEs5(Just(x0), Just(x1), ty_Bool) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare24(x0, x1, True) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_compare11(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs11(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_compare1([], :(x0, x1), x2) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs7(x0, x1, ty_@0) new_compare112(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(LT, EQ) new_esEs14(EQ, LT) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) new_compare110(x0, x1, False, x2, x3, x4) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_esEs14(GT, GT) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Int) new_compare23(x0, x1, True) new_lt5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), x1) new_esEs25(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Float) new_pePe(True, x0) new_esEs8(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_esEs20(x0, x1, ty_Char) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare26(x0, x1, True, x2, x3) new_esEs21(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, ty_Float) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs6(EQ, GT) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(GT, EQ) new_compare13(x0, x1, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(Char(x0), Char(x1)) new_ltEs14(x0, x1) new_esEs29(x0, x1, ty_Integer) new_ltEs5(True, True) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs20(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs14(LT, LT) new_compare25(x0, x1, False, x2) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare30(x0, x1, ty_Float) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Char) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs9(x0, x1, ty_Float) new_compare14(x0, x1, False) new_esEs23(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_@0) new_compare210(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Char) new_esEs5(Nothing, Nothing, x0) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs23(x0, x1, ty_Char) new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Int) new_lt13(x0, x1, x2, x3) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs9(x0, x1, ty_Int) new_primCmpNat1(Succ(x0), x1) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs6(EQ, EQ) new_compare9(@0, @0) new_esEs5(Just(x0), Nothing, x1) new_compare30(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2) new_lt11(x0, x1) new_compare12(x0, x1, False) new_esEs8(x0, x1, ty_Double) new_esEs15(Integer(x0), Integer(x1)) new_primCompAux00(x0, EQ) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat2(Zero, Zero) new_lt19(x0, x1, ty_Integer) new_compare24(x0, x1, False) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Float) new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_sr0(Integer(x0), Integer(x1)) new_compare1([], [], x0) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_fsEs(x0) new_primPlusNat0(Zero, Zero) new_ltEs7(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_esEs28(x0, x1, ty_Bool) new_not(True) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt19(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_compare14(x0, x1, True) new_esEs9(x0, x1, ty_Ordering) new_esEs12(False, False) new_esEs28(x0, x1, ty_@0) new_primCmpNat1(Zero, x0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs14(EQ, GT) new_esEs14(GT, EQ) new_ltEs12(x0, x1) new_compare12(x0, x1, True) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs10([], :(x0, x1), x2) new_lt20(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs29(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt15(x0, x1, x2, x3, x4) new_ltEs18(x0, x1) new_lt5(x0, x1, ty_Float) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_ltEs11(Nothing, Just(x0), x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1) new_esEs27(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_compare110(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_sr(x0, x1) new_compare8(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare1(:(x0, x1), [], x2) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs10([], [], x0) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, x2, x3, x4) new_ltEs10(x0, x1) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_compare30(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_lt19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, ty_Integer) new_esEs14(LT, GT) new_esEs14(GT, LT) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_Integer) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs28(x0, x1, ty_Float) new_lt7(x0, x1, x2, x3) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs16(x0, x1, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs12(True, True) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(x0, x1) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare28(x0, x1, False, x2, x3, x4) new_lt5(x0, x1, ty_Ordering) new_compare10(x0, x1, True, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpNat2(Zero, Succ(x0)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs10(:(x0, x1), :(x2, x3), x4) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs13(@0, @0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_ltEs17(x0, x1, x2) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Char) new_lt5(x0, x1, ty_Integer) new_compare112(x0, x1, True, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_compare0(xuu4901, xuu5101, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare5(xuu490, xuu510, bea, beb, bec) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare22(xuu490, xuu510, False, bea, beb, bec) -> new_ltEs2(xuu490, xuu510, bea, beb, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt2(xuu490, xuu510, bea, beb, bec) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dh), ea)) -> new_ltEs(xuu4910, xuu5110, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs2(xuu4910, xuu5110, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(ty_@2, bcc), bcd)) -> new_ltEs(xuu4912, xuu5112, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs2(xuu4912, xuu5112, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(xuu490, xuu510, bdf) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(app(ty_@3, bf), bg), bh), bb) -> new_lt2(xuu4910, xuu5110, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu4911, xuu5111, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_Either, ec), ed)) -> new_ltEs1(xuu4910, xuu5110, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(xuu4911, xuu5111, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu4912, xuu5112, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu4911, xuu5111, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_@2, de), df), bde) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], bed), bde) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt3(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_primCompAux(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bed), bed) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_@2, h), ba), bb) -> new_lt(xuu4910, xuu5110, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(xuu490, xuu510, False, bdg, bdh) -> new_ltEs1(xuu490, xuu510, bdg, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt(xuu490, xuu510, de, df) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare(xuu490, xuu510, de, df) -> new_compare2(xuu490, xuu510, new_esEs4(xuu490, xuu510, de, df), de, df) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt3(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bed) -> new_compare0(xuu4901, xuu5101, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_primCompAux(xuu4900, xuu5100, xuu128, app(app(ty_Either, beh), bfa)) -> new_compare4(xuu4900, xuu5100, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt1(xuu490, xuu510, bdg, bdh) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(xuu491, xuu511, bdd) -> new_compare0(xuu491, xuu511, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_Maybe, eb)) -> new_ltEs0(xuu4910, xuu5110, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_[], eh)) -> new_ltEs3(xuu4910, xuu5110, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(ty_Maybe, bce)) -> new_ltEs0(xuu4912, xuu5112, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(ty_Maybe, ce)) -> new_ltEs0(xuu4911, xuu5111, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(xuu490, xuu510, False, bdf) -> new_ltEs0(xuu490, xuu510, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, hh, app(ty_[], bdc)) -> new_ltEs3(xuu4912, xuu5112, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cb, app(ty_[], dd)) -> new_ltEs3(xuu4911, xuu5111, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(xuu4900, xuu5100, xuu128, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare5(xuu4900, xuu5100, bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(xuu4900, xuu5100, xuu128, app(ty_[], bfe)) -> new_compare0(xuu4900, xuu5100, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_[], ca), bb) -> new_lt3(xuu4910, xuu5110, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_Either, bd), be), bb) -> new_lt1(xuu4910, xuu5110, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_Maybe, bc), bb) -> new_lt0(xuu4910, xuu5110, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_Either, bdg), bdh), bde) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(xuu490, xuu510, bdg, bdh) -> new_compare21(xuu490, xuu510, new_esEs6(xuu490, xuu510, bdg, bdh), bdg, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare3(xuu490, xuu510, bdf) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(ty_Maybe, bdf), bde) -> new_compare20(xuu490, xuu510, new_esEs5(xuu490, xuu510, bdf), bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(app(ty_@3, bea), beb), bec), bde) -> new_compare22(xuu490, xuu510, new_esEs7(xuu490, xuu510, bea, beb, bec), bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_primCompAux(xuu4900, xuu5100, xuu128, app(app(ty_@2, bee), bef)) -> new_compare(xuu4900, xuu5100, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu4900, xuu5100, xuu128, app(ty_Maybe, beg)) -> new_compare3(xuu4900, xuu5100, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(ty_@2, ge), gf)) -> new_ltEs(xuu4910, xuu5110, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_@2, fa), fb), fc) -> new_ltEs(xuu4910, xuu5110, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, fh), ga), gb), fc) -> new_ltEs2(xuu4910, xuu5110, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs2(xuu4910, xuu5110, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(app(ty_Either, gh), ha)) -> new_ltEs1(xuu4910, xuu5110, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ff), fg), fc) -> new_ltEs1(xuu4910, xuu5110, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(ty_Maybe, gg)) -> new_ltEs0(xuu4910, xuu5110, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_Maybe, fd), fc) -> new_ltEs0(xuu4910, xuu5110, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(xuu4910), Right(xuu5110), gd, app(ty_[], he)) -> new_ltEs3(xuu4910, xuu5110, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_[], gc), fc) -> new_ltEs3(xuu4910, xuu5110, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(app(ty_@3, bae), baf), bag), hh, baa) -> new_lt2(xuu4910, xuu5110, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(app(ty_@3, bbg), bbh), bca), baa) -> new_lt2(xuu4911, xuu5111, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(app(ty_@3, bbg), bbh), bca)), baa)) -> new_lt2(xuu4911, xuu5111, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hh), baa)) -> new_lt2(xuu4910, xuu5110, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(app(ty_@3, bf), bg), bh)), bb)) -> new_lt2(xuu4910, xuu5110, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(ty_@2, bcc), bcd))) -> new_ltEs(xuu4912, xuu5112, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs(xuu4910, xuu5110, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu4911, xuu5111, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(ty_@2, fa), fb)), fc)) -> new_ltEs(xuu4910, xuu5110, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(ty_@2, ge), gf))) -> new_ltEs(xuu4910, xuu5110, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(app(ty_@3, da), db), dc))) -> new_ltEs2(xuu4911, xuu5111, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs2(xuu4910, xuu5110, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(app(ty_@3, fh), ga), gb)), fc)) -> new_ltEs2(xuu4910, xuu5110, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs2(xuu4910, xuu5110, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs2(xuu4912, xuu5112, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_@2, hf), hg), hh, baa) -> new_lt(xuu4910, xuu5110, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(ty_@2, bbb), bbc), baa) -> new_lt(xuu4911, xuu5111, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(ty_[], bcb), baa) -> new_lt3(xuu4911, xuu5111, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_[], bah), hh, baa) -> new_lt3(xuu4910, xuu5110, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(app(ty_Either, bbe), bbf), baa) -> new_lt1(xuu4911, xuu5111, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_Either, bac), bad), hh, baa) -> new_lt1(xuu4910, xuu5110, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bba, app(ty_Maybe, bbd), baa) -> new_lt0(xuu4911, xuu5111, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_Maybe, bab), hh, baa) -> new_lt0(xuu4910, xuu5110, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(app(ty_Either, ec), ed))) -> new_ltEs1(xuu4910, xuu5110, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(app(ty_Either, bcf), bcg))) -> new_ltEs1(xuu4912, xuu5112, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(app(ty_Either, ff), fg)), fc)) -> new_ltEs1(xuu4910, xuu5110, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(app(ty_Either, cf), cg))) -> new_ltEs1(xuu4911, xuu5111, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(app(ty_Either, gh), ha))) -> new_ltEs1(xuu4910, xuu5110, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xuu4910, xuu5110, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hh), baa)) -> new_lt(xuu4910, xuu5110, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(ty_@2, bbb), bbc)), baa)) -> new_lt(xuu4911, xuu5111, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(ty_Maybe, fd)), fc)) -> new_ltEs0(xuu4910, xuu5110, fd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(ty_Maybe, bce))) -> new_ltEs0(xuu4912, xuu5112, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(ty_Maybe, eb))) -> new_ltEs0(xuu4910, xuu5110, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(ty_Maybe, ce))) -> new_ltEs0(xuu4911, xuu5111, ce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(ty_Maybe, gg))) -> new_ltEs0(xuu4910, xuu5110, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), hh), app(ty_[], bdc))) -> new_ltEs3(xuu4912, xuu5112, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, dg, app(app(ty_Either, gd), app(ty_[], he))) -> new_ltEs3(xuu4910, xuu5110, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, dg, app(ty_Maybe, app(ty_[], eh))) -> new_ltEs3(xuu4910, xuu5110, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, cb), app(ty_[], dd))) -> new_ltEs3(xuu4911, xuu5111, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, dg, app(app(ty_Either, app(ty_[], gc)), fc)) -> new_ltEs3(xuu4910, xuu5110, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], bed), bde) -> new_compare0(xuu4901, xuu5101, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(xuu490, xuu491), @2(xuu510, xuu511), False, dg, app(ty_[], bdd)) -> new_compare0(xuu491, xuu511, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(ty_[], ca)), bb)) -> new_lt3(xuu4910, xuu5110, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(ty_[], bah)), hh), baa)) -> new_lt3(xuu4910, xuu5110, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(ty_[], bcb)), baa)) -> new_lt3(xuu4911, xuu5111, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(app(ty_Either, bd), be)), bb)) -> new_lt1(xuu4910, xuu5110, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(app(ty_Either, bbe), bbf)), baa)) -> new_lt1(xuu4911, xuu5111, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hh), baa)) -> new_lt1(xuu4910, xuu5110, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, bba), app(ty_Maybe, bbd)), baa)) -> new_lt0(xuu4911, xuu5111, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, dg, app(app(ty_@2, app(ty_Maybe, bc)), bb)) -> new_lt0(xuu4910, xuu5110, bc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, dg, app(app(app(ty_@3, app(ty_Maybe, bab)), hh), baa)) -> new_lt0(xuu4910, xuu5110, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, be), bf)) -> new_esEs2(xuu3110000, xuu6000, be, bf) new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bcg, bch) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bag)) -> new_esEs0(xuu3110001, xuu6001, bag) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(ty_[], bdc)) -> new_esEs0(xuu3110000, xuu6000, bdc) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(xuu3110001, xuu6001, bbc, bbd) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, cf), cg)) -> new_esEs2(xuu3110000, xuu6000, cf, cg) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, dh), ea), eb), de, df) -> new_esEs1(xuu3110000, xuu6000, dh, ea, eb) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], he), hd) -> new_esEs0(xuu3110000, xuu6000, he) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(xuu3110000, xuu6000, bac, bad) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(xuu3110000, xuu6000, cc, cd, ce) new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ec), ed), de, df) -> new_esEs2(xuu3110000, xuu6000, ec, ed) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(xuu3110000, xuu6000, bdg, bdh) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], cb)) -> new_esEs0(xuu3110000, xuu6000, cb) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(xuu3110000, xuu6000, bb, bc, bd) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, baa), bab), hd) -> new_esEs2(xuu3110000, xuu6000, baa, bab) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu3110000, xuu6000, bea, beb) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(ty_Maybe, gb)) -> new_esEs(xuu3110002, xuu6002, gb) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, hc), hd) -> new_esEs(xuu3110000, xuu6000, hc) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dc) -> new_esEs0(xuu3110001, xuu6001, dc) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, ee), ef), de, df) -> new_esEs3(xuu3110000, xuu6000, ee, ef) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(ty_Maybe, eh), df) -> new_esEs(xuu3110001, xuu6001, eh) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu3110001, xuu6001, bbe, bbf) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(xuu3110000, xuu6000, bdd, bde, bdf) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, dd), de, df) -> new_esEs(xuu3110000, xuu6000, dd) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, ca)) -> new_esEs(xuu3110000, xuu6000, ca) new_esEs3(Left(xuu3110000), Left(xuu6000), app(ty_[], bca), bbh) -> new_esEs0(xuu3110000, xuu6000, bca) new_esEs3(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(ty_[], fa), df) -> new_esEs0(xuu3110001, xuu6001, fa) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs1(xuu3110002, xuu6002, gd, ge, gf) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(xuu3110001, xuu6001, bah, bba, bbb) new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(xuu3110000, xuu6000, bce, bcf) new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bg), bh)) -> new_esEs3(xuu3110000, xuu6000, bg, bh) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(ty_Either, fh), ga), df) -> new_esEs3(xuu3110001, xuu6001, fh, ga) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(ty_[], gc)) -> new_esEs0(xuu3110002, xuu6002, gc) new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(xuu3110000, xuu6000, bcb, bcc, bcd) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(ty_Either, ha), hb)) -> new_esEs3(xuu3110002, xuu6002, ha, hb) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], dg), de, df) -> new_esEs0(xuu3110000, xuu6000, dg) new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], ba)) -> new_esEs0(xuu3110000, xuu6000, ba) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(ty_@2, ff), fg), df) -> new_esEs2(xuu3110001, xuu6001, ff, fg) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(app(ty_@3, fb), fc), fd), df) -> new_esEs1(xuu3110001, xuu6001, fb, fc, fd) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(ty_@2, gg), gh)) -> new_esEs2(xuu3110002, xuu6002, gg, gh) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, hf), hg), hh), hd) -> new_esEs1(xuu3110000, xuu6000, hf, hg, hh) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, da), db)) -> new_esEs3(xuu3110000, xuu6000, da, db) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, ca)) -> new_esEs(xuu3110000, xuu6000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, da), db)) -> new_esEs3(xuu3110000, xuu6000, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, cf), cg)) -> new_esEs2(xuu3110000, xuu6000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(xuu3110000, xuu6000, cc, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bg), bh)) -> new_esEs3(xuu3110000, xuu6000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, be), bf)) -> new_esEs2(xuu3110000, xuu6000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], ba)) -> new_esEs0(xuu3110000, xuu6000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(xuu3110000, xuu6000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, hc), hd) -> new_esEs(xuu3110000, xuu6000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(xuu3110000, xuu6000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu3110001, xuu6001, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(xuu3110001, xuu6001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, baa), bab), hd) -> new_esEs2(xuu3110000, xuu6000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bag)) -> new_esEs0(xuu3110001, xuu6001, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], he), hd) -> new_esEs0(xuu3110000, xuu6000, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(xuu3110001, xuu6001, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, hf), hg), hh), hd) -> new_esEs1(xuu3110000, xuu6000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(ty_Maybe, gb)) -> new_esEs(xuu3110002, xuu6002, gb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(ty_Maybe, eh), df) -> new_esEs(xuu3110001, xuu6001, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, dd), de, df) -> new_esEs(xuu3110000, xuu6000, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu3110000, xuu6000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(xuu3110000, xuu6000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(xuu3110000, xuu6000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(ty_[], bdc)) -> new_esEs0(xuu3110000, xuu6000, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu3110000), Left(xuu6000), app(ty_[], bca), bbh) -> new_esEs0(xuu3110000, xuu6000, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(xuu3110000, xuu6000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(xuu3110000, xuu6000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, ee), ef), de, df) -> new_esEs3(xuu3110000, xuu6000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(ty_Either, fh), ga), df) -> new_esEs3(xuu3110001, xuu6001, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(ty_Either, ha), hb)) -> new_esEs3(xuu3110002, xuu6002, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], cb)) -> new_esEs0(xuu3110000, xuu6000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dc) -> new_esEs0(xuu3110001, xuu6001, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ec), ed), de, df) -> new_esEs2(xuu3110000, xuu6000, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(ty_@2, ff), fg), df) -> new_esEs2(xuu3110001, xuu6001, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(ty_@2, gg), gh)) -> new_esEs2(xuu3110002, xuu6002, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(ty_[], fa), df) -> new_esEs0(xuu3110001, xuu6001, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(ty_[], gc)) -> new_esEs0(xuu3110002, xuu6002, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], dg), de, df) -> new_esEs0(xuu3110000, xuu6000, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, dh), ea), eb), de, df) -> new_esEs1(xuu3110000, xuu6000, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, de, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs1(xuu3110002, xuu6002, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eg, app(app(app(ty_@3, fb), fc), fd), df) -> new_esEs1(xuu3110001, xuu6001, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu41200), Succ(xuu9000)) -> new_primMinusNat(xuu41200, xuu9000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu41200), Succ(xuu9000)) -> new_primMinusNat(xuu41200, xuu9000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu41200), Succ(xuu9000)) -> new_primPlusNat(xuu41200, xuu9000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu41200), Succ(xuu9000)) -> new_primPlusNat(xuu41200, xuu9000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs4(@2(xuu25, xuu26), @2(xuu19, xuu20), h, ba), h, ba), GT), h, ba, bb) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) new_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, bc), bc, bd), bc, bd, be) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs14(GT, GT) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_compare24(xuu490, xuu510, False) -> new_compare12(xuu490, xuu510, new_ltEs5(xuu490, xuu510)) new_esEs24(xuu4911, xuu5111, ty_Char) -> new_esEs11(xuu4911, xuu5111) new_pePe(True, xuu127) -> True new_lt6(xuu490, xuu510) -> new_esEs14(new_compare6(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_@2, ccf), ccg), bch) -> new_ltEs9(xuu4910, xuu5110, ccf, ccg) new_ltEs6(GT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_ltEs9(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), bcd, bce) -> new_pePe(new_lt21(xuu4910, xuu5110, bcd), new_asAs(new_esEs29(xuu4910, xuu5110, bcd), new_ltEs20(xuu4911, xuu5111, bce))) new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_compare26(xuu49, xuu51, True, bba, bbb) -> EQ new_esEs28(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], eg), ef) -> new_esEs10(xuu3110000, xuu6000, eg) new_esEs22(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare25(xuu490, xuu510, False, hd) -> new_compare10(xuu490, xuu510, new_ltEs11(xuu490, xuu510, hd), hd) new_lt16(xuu490, xuu510, bcb) -> new_esEs14(new_compare15(xuu490, xuu510, bcb), LT) new_ltEs7(xuu491, xuu511, ty_@0) -> new_ltEs4(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, bhc)) -> new_ltEs16(xuu4912, xuu5112, bhc) new_esEs28(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs14(EQ, EQ) -> True new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare6(xuu491, xuu511)) new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_compare111(xuu103, xuu104, xuu105, xuu106, False, cgd, cge) -> GT new_ltEs6(EQ, GT) -> True new_ltEs7(xuu491, xuu511, app(ty_Ratio, bdd)) -> new_ltEs16(xuu491, xuu511, bdd) new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, bed), bee), bef)) -> new_lt15(xuu4910, xuu5110, bed, bee, bef) new_esEs24(xuu4911, xuu5111, app(ty_Ratio, bga)) -> new_esEs16(xuu4911, xuu5111, bga) new_primCompAux0(xuu4900, xuu5100, xuu128, bcc) -> new_primCompAux00(xuu128, new_compare30(xuu4900, xuu5100, bcc)) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bf, bg) -> new_asAs(new_esEs8(xuu3110000, xuu6000, bf), new_esEs9(xuu3110001, xuu6001, bg)) new_compare30(xuu4900, xuu5100, ty_@0) -> new_compare9(xuu4900, xuu5100) new_esEs20(xuu490, xuu510, ty_Double) -> new_esEs18(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(app(ty_@2, cfb), cfc)) -> new_compare18(xuu4900, xuu5100, cfb, cfc) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu311000, xuu600, ccc, ccd, cce) new_compare210(xuu490, xuu510, True, bbe, bbf) -> EQ new_ltEs20(xuu4911, xuu5111, ty_@0) -> new_ltEs4(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xuu4911, xuu5111, bfa, bfb) new_compare29(xuu490, xuu510, bbe, bbf) -> new_compare210(xuu490, xuu510, new_esEs6(xuu490, xuu510, bbe, bbf), bbe, bbf) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primCmpNat2(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat2(xuu49000, xuu51000) new_ltEs4(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) new_lt12(xuu490, xuu510) -> new_esEs14(new_compare19(xuu490, xuu510), LT) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, app(ty_[], bcc)) -> new_lt17(xuu490, xuu510, bcc) new_compare1(:(xuu4900, xuu4901), [], bcc) -> GT new_compare12(xuu490, xuu510, False) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_ltEs20(xuu4911, xuu5111, ty_Integer) -> new_ltEs10(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Float) -> new_lt11(xuu490, xuu510) new_esEs23(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_not(True) -> False new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_[], gc)) -> new_esEs10(xuu3110000, xuu6000, gc) new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, de), df), dg)) -> new_esEs7(xuu3110001, xuu6001, de, df, dg) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ccc, ccd, cce) -> new_asAs(new_esEs25(xuu3110000, xuu6000, ccc), new_asAs(new_esEs26(xuu3110001, xuu6001, ccd), new_esEs27(xuu3110002, xuu6002, cce))) new_compare13(xuu490, xuu510, hd) -> new_compare25(xuu490, xuu510, new_esEs5(xuu490, xuu510, hd), hd) new_esEs27(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_primCompAux00(xuu137, LT) -> LT new_compare30(xuu4900, xuu5100, app(ty_[], cgc)) -> new_compare1(xuu4900, xuu5100, cgc) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs15(xuu4910, xuu5110, cbe, cbf, cbg) new_esEs28(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_ltEs6(LT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs10(xuu4912, xuu5112) new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs15(xuu37, xuu39) new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt15(xuu4911, xuu5111, bff, bfg, bfh) new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs7(xuu3110000, xuu6000, cgh, cha, chb) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ccb) -> new_asAs(new_esEs28(xuu3110000, xuu6000, ccb), new_esEs10(xuu3110001, xuu6001, ccb)) new_esEs26(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_esEs28(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_compare17(xuu490, xuu510, bbg, bbh, bca) -> new_compare28(xuu490, xuu510, new_esEs7(xuu490, xuu510, bbg, bbh, bca), bbg, bbh, bca) new_esEs8(xuu3110000, xuu6000, app(ty_Ratio, ce)) -> new_esEs16(xuu3110000, xuu6000, ce) new_lt5(xuu490, xuu510, ty_Int) -> new_lt18(xuu490, xuu510) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs20(xuu4911, xuu5111, ty_Int) -> new_ltEs18(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, chc)) -> new_esEs16(xuu3110000, xuu6000, chc) new_esEs8(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, ty_Int) -> new_ltEs18(xuu491, xuu511) new_primCmpNat0(xuu4900, Succ(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) new_esEs8(xuu3110000, xuu6000, app(app(ty_@2, cf), cg)) -> new_esEs4(xuu3110000, xuu6000, cf, cg) new_lt5(xuu490, xuu510, ty_Double) -> new_lt6(xuu490, xuu510) new_lt5(xuu490, xuu510, app(app(ty_@2, bbc), bbd)) -> new_lt7(xuu490, xuu510, bbc, bbd) new_esEs24(xuu4911, xuu5111, ty_Ordering) -> new_esEs14(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs4(xuu4912, xuu5112) new_primCompAux00(xuu137, GT) -> GT new_esEs24(xuu4911, xuu5111, ty_Double) -> new_esEs18(xuu4911, xuu5111) new_esEs20(xuu490, xuu510, ty_@0) -> new_esEs13(xuu490, xuu510) new_lt14(xuu490, xuu510) -> new_esEs14(new_compare31(xuu490, xuu510), LT) new_lt21(xuu4910, xuu5110, app(ty_Maybe, ddh)) -> new_lt9(xuu4910, xuu5110, ddh) new_lt5(xuu490, xuu510, ty_Ordering) -> new_lt4(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(ty_Ratio, cgb)) -> new_compare15(xuu4900, xuu5100, cgb) new_lt9(xuu490, xuu510, hd) -> new_esEs14(new_compare13(xuu490, xuu510, hd), LT) new_esEs29(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_compare14(xuu490, xuu510, True) -> LT new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT new_lt5(xuu490, xuu510, app(app(ty_Either, bbe), bbf)) -> new_lt13(xuu490, xuu510, bbe, bbf) new_esEs20(xuu490, xuu510, app(app(ty_@2, bbc), bbd)) -> new_esEs4(xuu490, xuu510, bbc, bbd) new_esEs20(xuu490, xuu510, app(ty_Ratio, bcb)) -> new_esEs16(xuu490, xuu510, bcb) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_lt18(xuu490, xuu510) -> new_esEs14(new_compare7(xuu490, xuu510), LT) new_ltEs5(False, True) -> True new_esEs8(xuu3110000, xuu6000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs7(xuu3110000, xuu6000, cb, cc, cd) new_esEs23(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_lt5(xuu490, xuu510, app(ty_Maybe, hd)) -> new_lt9(xuu490, xuu510, hd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, ef) -> new_esEs13(xuu3110000, xuu6000) new_lt21(xuu4910, xuu5110, app(app(app(ty_@3, dec), ded), dee)) -> new_lt15(xuu4910, xuu5110, dec, ded, dee) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_Maybe, gb)) -> new_esEs5(xuu3110000, xuu6000, gb) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xuu3110001, xuu6001, dab, dac, dad) new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt8(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_Either, bcg), bch)) -> new_ltEs13(xuu491, xuu511, bcg, bch) new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt14(xuu4911, xuu5111) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs13(xuu311000, xuu600) new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs7(xuu37, xuu39, baa, bab, bac) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Ratio, cbh)) -> new_ltEs16(xuu4910, xuu5110, cbh) new_compare110(xuu490, xuu510, False, bbg, bbh, bca) -> GT new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, ef) -> new_esEs11(xuu3110000, xuu6000) new_pePe(False, xuu127) -> xuu127 new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, dc)) -> new_esEs5(xuu3110001, xuu6001, dc) new_ltEs13(Left(xuu4910), Right(xuu5110), bcg, bch) -> True new_esEs12(False, False) -> True new_esEs27(xuu3110002, xuu6002, ty_Bool) -> new_esEs12(xuu3110002, xuu6002) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ee), ef) -> new_esEs5(xuu3110000, xuu6000, ee) new_compare112(xuu490, xuu510, True, bbe, bbf) -> LT new_lt20(xuu4911, xuu5111, app(ty_Ratio, bga)) -> new_lt16(xuu4911, xuu5111, bga) new_ltEs6(LT, LT) -> True new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(ty_[], bde)) -> new_ltEs17(xuu491, xuu511, bde) new_esEs23(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_esEs11(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare10(xuu490, xuu510, False, hd) -> GT new_lt20(xuu4911, xuu5111, app(ty_Maybe, bfc)) -> new_lt9(xuu4911, xuu5111, bfc) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_Either, cda), cdb), bch) -> new_ltEs13(xuu4910, xuu5110, cda, cdb) new_lt19(xuu4910, xuu5110, app(ty_Maybe, bea)) -> new_lt9(xuu4910, xuu5110, bea) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare16(xuu103, xuu104, xuu105, xuu106, True, xuu108, cgd, cge) -> new_compare111(xuu103, xuu104, xuu105, xuu106, True, cgd, cge) new_ltEs13(Right(xuu4910), Left(xuu5110), bcg, bch) -> False new_compare30(xuu4900, xuu5100, app(app(ty_Either, cfe), cff)) -> new_compare29(xuu4900, xuu5100, cfe, cff) new_esEs8(xuu3110000, xuu6000, app(ty_[], ca)) -> new_esEs10(xuu3110000, xuu6000, ca) new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, chd), che)) -> new_esEs4(xuu3110000, xuu6000, chd, che) new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs18(xuu4912, xuu5112) new_esEs5(Nothing, Nothing, bhe) -> True new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_Ratio, gg)) -> new_esEs16(xuu3110000, xuu6000, gg) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, dh)) -> new_esEs16(xuu3110001, xuu6001, dh) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), bhe) -> False new_esEs5(Just(xuu3110000), Nothing, bhe) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_ltEs20(xuu4911, xuu5111, app(app(ty_Either, dfc), dfd)) -> new_ltEs13(xuu4911, xuu5111, dfc, dfd) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, caf), cag)) -> new_esEs6(xuu3110000, xuu6000, caf, cag) new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs14(xuu4912, xuu5112) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs27(xuu3110002, xuu6002, ty_Ordering) -> new_esEs14(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(ty_@2, cdh), cea)) -> new_ltEs9(xuu4910, xuu5110, cdh, cea) new_esEs24(xuu4911, xuu5111, app(app(ty_Either, bfd), bfe)) -> new_esEs6(xuu4911, xuu5111, bfd, bfe) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, ea), eb)) -> new_esEs4(xuu3110001, xuu6001, ea, eb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, fg), fh), ef) -> new_esEs6(xuu3110000, xuu6000, fg, fh) new_lt21(xuu4910, xuu5110, app(app(ty_Either, dea), deb)) -> new_lt13(xuu4910, xuu5110, dea, deb) new_esEs14(LT, GT) -> False new_esEs14(GT, LT) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa, cab) new_compare10(xuu490, xuu510, True, hd) -> LT new_compare30(xuu4900, xuu5100, ty_Float) -> new_compare27(xuu4900, xuu5100) new_esEs32(xuu37, xuu39, app(ty_Maybe, hg)) -> new_esEs5(xuu37, xuu39, hg) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_ltEs6(LT, EQ) -> True new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_[], cfa)) -> new_ltEs17(xuu4910, xuu5110, cfa) new_esEs23(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, bgf), bgg)) -> new_ltEs13(xuu4912, xuu5112, bgf, bgg) new_lt5(xuu490, xuu510, app(ty_Ratio, bcb)) -> new_lt16(xuu490, xuu510, bcb) new_primPlusNat1(Succ(xuu940), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu940, xuu600000))) new_esEs23(xuu4910, xuu5110, app(ty_Maybe, bea)) -> new_esEs5(xuu4910, xuu5110, bea) new_esEs24(xuu4911, xuu5111, ty_Int) -> new_esEs17(xuu4911, xuu5111) new_primCmpNat2(Succ(xuu49000), Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) new_ltEs5(True, False) -> False new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Ratio, cdf), bch) -> new_ltEs16(xuu4910, xuu5110, cdf) new_compare30(xuu4900, xuu5100, app(ty_Maybe, cfd)) -> new_compare13(xuu4900, xuu5100, cfd) new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt12(xuu4911, xuu5111) new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) new_primPlusNat0(Zero, Succ(xuu9000)) -> Succ(xuu9000) new_compare30(xuu4900, xuu5100, ty_Int) -> new_compare7(xuu4900, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Char, bch) -> new_ltEs14(xuu4910, xuu5110) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) new_esEs24(xuu4911, xuu5111, app(ty_[], bgb)) -> new_esEs10(xuu4911, xuu5111, bgb) new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs7(xuu3110000, xuu6000, gd, ge, gf) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], bhg)) -> new_esEs10(xuu3110000, xuu6000, bhg) new_compare7(xuu85, xuu84) -> new_primCmpInt(xuu85, xuu84) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, ef) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], bcc) -> EQ new_ltEs20(xuu4911, xuu5111, ty_Double) -> new_ltEs8(xuu4911, xuu5111) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_esEs30(xuu36, xuu37, xuu38, xuu39, True, he, hf) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, hf), he, hf), LT) new_lt21(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) new_lt21(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_esEs24(xuu4911, xuu5111, ty_Bool) -> new_esEs12(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(xuu4911, xuu5111, bff, bfg, bfh) new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs18(xuu37, xuu39) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_lt5(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_@0) -> new_esEs13(xuu3110002, xuu6002) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Maybe, cbb)) -> new_ltEs11(xuu4910, xuu5110, cbb) new_lt19(xuu4910, xuu5110, app(ty_Ratio, beg)) -> new_lt16(xuu4910, xuu5110, beg) new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_@2, bcd), bce)) -> new_ltEs9(xuu491, xuu511, bcd, bce) new_esEs26(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_ltEs20(xuu4911, xuu5111, app(app(app(ty_@3, dfe), dff), dfg)) -> new_ltEs15(xuu4911, xuu5111, dfe, dff, dfg) new_esEs23(xuu4910, xuu5110, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs7(xuu4910, xuu5110, bed, bee, bef) new_ltEs19(xuu4912, xuu5112, app(ty_[], bhd)) -> new_ltEs17(xuu4912, xuu5112, bhd) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_compare25(xuu490, xuu510, True, hd) -> EQ new_esEs24(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Bool) -> new_lt12(xuu490, xuu510) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu491, xuu511) -> new_fsEs(new_compare7(xuu491, xuu511)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(ty_[], dga)) -> new_ltEs17(xuu4911, xuu5111, dga) new_esEs23(xuu4910, xuu5110, app(ty_Ratio, beg)) -> new_esEs16(xuu4910, xuu5110, beg) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_esEs30(xuu36, xuu37, xuu38, xuu39, False, he, hf) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), False, he, hf), LT) new_lt21(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_lt17(xuu490, xuu510, bcc) -> new_esEs14(new_compare1(xuu490, xuu510, bcc), LT) new_lt15(xuu490, xuu510, bbg, bbh, bca) -> new_esEs14(new_compare17(xuu490, xuu510, bbg, bbh, bca), LT) new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs15(xuu4912, xuu5112, bgh, bha, bhb) new_ltEs16(xuu491, xuu511, bdd) -> new_fsEs(new_compare15(xuu491, xuu511, bdd)) new_esEs8(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, ef) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) new_ltEs14(xuu491, xuu511) -> new_fsEs(new_compare31(xuu491, xuu511)) new_ltEs7(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs8(xuu4912, xuu5112) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bhf)) -> new_esEs5(xuu3110000, xuu6000, bhf) new_esEs23(xuu4910, xuu5110, app(ty_[], beh)) -> new_esEs10(xuu4910, xuu5110, beh) new_esEs26(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu4910, xuu5110, app(app(ty_Either, beb), bec)) -> new_esEs6(xuu4910, xuu5110, beb, bec) new_esEs23(xuu4910, xuu5110, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xuu4910, xuu5110, bdg, bdh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Double, bch) -> new_ltEs8(xuu4910, xuu5110) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs8(xuu3110000, xuu6000, app(ty_Maybe, bh)) -> new_esEs5(xuu3110000, xuu6000, bh) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, ef) -> new_esEs17(xuu3110000, xuu6000) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_lt20(xuu4911, xuu5111, app(app(ty_Either, bfd), bfe)) -> new_lt13(xuu4911, xuu5111, bfd, bfe) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, fd), ff), ef) -> new_esEs4(xuu3110000, xuu6000, fd, ff) new_esEs9(xuu3110001, xuu6001, app(ty_[], dd)) -> new_esEs10(xuu3110001, xuu6001, dd) new_esEs20(xuu490, xuu510, ty_Integer) -> new_esEs15(xuu490, xuu510) new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_compare16(xuu103, xuu104, xuu105, xuu106, False, xuu108, cgd, cge) -> new_compare111(xuu103, xuu104, xuu105, xuu106, xuu108, cgd, cge) new_ltEs20(xuu4911, xuu5111, app(ty_Maybe, dfb)) -> new_ltEs11(xuu4911, xuu5111, dfb) new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat0(xuu4900, xuu510) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(ty_Either, hb), hc)) -> new_esEs6(xuu3110000, xuu6000, hb, hc) new_lt20(xuu4911, xuu5111, app(ty_[], bgb)) -> new_lt17(xuu4911, xuu5111, bgb) new_ltEs6(GT, EQ) -> False new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt11(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_compare14(xuu490, xuu510, False) -> GT new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_[], cca)) -> new_ltEs17(xuu4910, xuu5110, cca) new_ltEs7(xuu491, xuu511, app(ty_Maybe, bcf)) -> new_ltEs11(xuu491, xuu511, bcf) new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Maybe, cch), bch) -> new_ltEs11(xuu4910, xuu5110, cch) new_ltEs5(False, False) -> True new_esEs29(xuu4910, xuu5110, app(ty_Maybe, ddh)) -> new_esEs5(xuu4910, xuu5110, ddh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Bool, bch) -> new_ltEs5(xuu4910, xuu5110) new_esEs23(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_lt4(xuu490, xuu510) -> new_esEs14(new_compare8(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_primCmpNat0(xuu4900, Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, ef) -> new_esEs19(xuu3110000, xuu6000) new_compare23(xuu490, xuu510, False) -> new_compare14(xuu490, xuu510, new_ltEs6(xuu490, xuu510)) new_esEs28(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs14(EQ, GT) -> False new_esEs14(GT, EQ) -> False new_primCmpNat2(Zero, Succ(xuu51000)) -> LT new_lt21(xuu4910, xuu5110, app(ty_Ratio, def)) -> new_lt16(xuu4910, xuu5110, def) new_esEs8(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs12(xuu37, xuu39) new_esEs26(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare111(xuu103, xuu104, xuu105, xuu106, True, cgd, cge) -> LT new_asAs(True, xuu59) -> xuu59 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, ec), ed)) -> new_esEs6(xuu3110001, xuu6001, ec, ed) new_lt20(xuu4911, xuu5111, app(app(ty_@2, bfa), bfb)) -> new_lt7(xuu4911, xuu5111, bfa, bfb) new_compare18(xuu490, xuu510, bbc, bbd) -> new_compare26(xuu490, xuu510, new_esEs4(xuu490, xuu510, bbc, bbd), bbc, bbd) new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(app(ty_@2, deh), dfa)) -> new_ltEs9(xuu4911, xuu5111, deh, dfa) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs15(xuu4910, xuu5110, cee, cef, ceg) new_esEs6(Left(xuu3110000), Right(xuu6000), ga, ef) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), ga, ef) -> False new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(ty_Either, cec), ced)) -> new_ltEs13(xuu4910, xuu5110, cec, ced) new_esEs20(xuu490, xuu510, app(ty_Maybe, hd)) -> new_esEs5(xuu490, xuu510, hd) new_ltEs7(xuu491, xuu511, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs15(xuu491, xuu511, bda, bdb, bdc) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cad), cae)) -> new_esEs4(xuu3110000, xuu6000, cad, cae) new_ltEs7(xuu491, xuu511, ty_Double) -> new_ltEs8(xuu491, xuu511) new_lt19(xuu4910, xuu5110, app(app(ty_@2, bdg), bdh)) -> new_lt7(xuu4910, xuu5110, bdg, bdh) new_esEs24(xuu4911, xuu5111, ty_Integer) -> new_esEs15(xuu4911, xuu5111) new_esEs26(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, ty_Char) -> new_ltEs14(xuu4911, xuu5111) new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs11(xuu37, xuu39) new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, bgc), bgd)) -> new_ltEs9(xuu4912, xuu5112, bgc, bgd) new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs6(xuu4912, xuu5112) new_esEs10(:(xuu3110000, xuu3110001), [], ccb) -> False new_esEs10([], :(xuu6000, xuu6001), ccb) -> False new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cac)) -> new_esEs16(xuu3110000, xuu6000, cac) new_lt11(xuu490, xuu510) -> new_esEs14(new_compare27(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Float, bch) -> new_ltEs12(xuu4910, xuu5110) new_primCompAux00(xuu137, EQ) -> xuu137 new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare23(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primMulNat0(Zero, Zero) -> Zero new_esEs12(True, True) -> True new_esEs27(xuu3110002, xuu6002, app(ty_Ratio, dbg)) -> new_esEs16(xuu3110002, xuu6002, dbg) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs24(xuu4911, xuu5111, app(ty_Maybe, bfc)) -> new_esEs5(xuu4911, xuu5111, bfc) new_esEs29(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_ltEs17(xuu491, xuu511, bde) -> new_fsEs(new_compare1(xuu491, xuu511, bde)) new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) new_esEs26(xuu3110001, xuu6001, app(app(ty_Either, dah), dba)) -> new_esEs6(xuu3110001, xuu6001, dah, dba) new_esEs32(xuu37, xuu39, app(ty_[], hh)) -> new_esEs10(xuu37, xuu39, hh) new_esEs32(xuu37, xuu39, app(app(ty_Either, bag), bah)) -> new_esEs6(xuu37, xuu39, bag, bah) new_compare9(@0, @0) -> EQ new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) new_ltEs6(EQ, LT) -> False new_compare1(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bcc) -> new_primCompAux0(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bcc), bcc) new_primCmpNat1(Zero, xuu4900) -> LT new_ltEs11(Nothing, Just(xuu5110), bcf) -> True new_compare28(xuu490, xuu510, True, bbg, bbh, bca) -> EQ new_esEs26(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(ty_[], daa)) -> new_esEs10(xuu3110001, xuu6001, daa) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Int, bch) -> new_ltEs18(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_compare19(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs12(xuu490, xuu510)) new_lt13(xuu490, xuu510, bbe, bbf) -> new_esEs14(new_compare29(xuu490, xuu510, bbe, bbf), LT) new_esEs8(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(ty_Maybe, bhe)) -> new_esEs5(xuu311000, xuu600, bhe) new_primCmpNat2(Zero, Zero) -> EQ new_esEs31(xuu311000, xuu600, app(ty_[], ccb)) -> new_esEs10(xuu311000, xuu600, ccb) new_esEs31(xuu311000, xuu600, app(app(ty_Either, ga), ef)) -> new_esEs6(xuu311000, xuu600, ga, ef) new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt4(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, cgf)) -> new_esEs5(xuu3110000, xuu6000, cgf) new_esEs25(xuu3110000, xuu6000, app(ty_[], cgg)) -> new_esEs10(xuu3110000, xuu6000, cgg) new_esEs8(xuu3110000, xuu6000, app(app(ty_Either, da), db)) -> new_esEs6(xuu3110000, xuu6000, da, db) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt18(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, bge)) -> new_ltEs11(xuu4912, xuu5112, bge) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, ef) -> new_esEs15(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_@0, bch) -> new_ltEs4(xuu4910, xuu5110) new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, chf), chg)) -> new_esEs6(xuu3110000, xuu6000, chf, chg) new_lt5(xuu490, xuu510, ty_Integer) -> new_lt8(xuu490, xuu510) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_Maybe, ceb)) -> new_ltEs11(xuu4910, xuu5110, ceb) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, app(app(ty_Either, beb), bec)) -> new_lt13(xuu4910, xuu5110, beb, bec) new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt6(xuu4911, xuu5111) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, ty_Char) -> new_lt14(xuu490, xuu510) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_compare210(xuu490, xuu510, False, bbe, bbf) -> new_compare112(xuu490, xuu510, new_ltEs13(xuu490, xuu510, bbe, bbf), bbe, bbf) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(ty_@2, gh), ha)) -> new_esEs4(xuu3110000, xuu6000, gh, ha) new_esEs32(xuu37, xuu39, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu37, xuu39, bae, baf) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(app(ty_@2, daf), dag)) -> new_esEs4(xuu3110001, xuu6001, daf, dag) new_compare24(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_esEs20(xuu490, xuu510, app(app(ty_Either, bbe), bbf)) -> new_esEs6(xuu490, xuu510, bbe, bbf) new_ltEs7(xuu491, xuu511, ty_Char) -> new_ltEs14(xuu491, xuu511) new_fsEs(xuu115) -> new_not(new_esEs14(xuu115, GT)) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bdf) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bdf), new_esEs22(xuu3110001, xuu6001, bdf)) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, ty_Char) -> new_esEs11(xuu3110002, xuu6002) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu3110001, xuu6001, app(ty_Ratio, dae)) -> new_esEs16(xuu3110001, xuu6001, dae) new_esEs32(xuu37, xuu39, app(ty_Ratio, bad)) -> new_esEs16(xuu37, xuu39, bad) new_ltEs15(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bda, bdb, bdc) -> new_pePe(new_lt19(xuu4910, xuu5110, bda), new_asAs(new_esEs23(xuu4910, xuu5110, bda), new_pePe(new_lt20(xuu4911, xuu5111, bdb), new_asAs(new_esEs24(xuu4911, xuu5111, bdb), new_ltEs19(xuu4912, xuu5112, bdc))))) new_lt10(xuu490, xuu510) -> new_esEs14(new_compare9(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_Either, cbc), cbd)) -> new_ltEs13(xuu4910, xuu5110, cbc, cbd) new_lt21(xuu4910, xuu5110, app(app(ty_@2, ddf), ddg)) -> new_lt7(xuu4910, xuu5110, ddf, ddg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_@2, cah), cba)) -> new_ltEs9(xuu4910, xuu5110, cah, cba) new_esEs28(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_lt21(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs5(xuu4912, xuu5112) new_esEs29(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_esEs8(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat2(xuu5100, xuu4900) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, app(ty_[], bcc)) -> new_esEs10(xuu490, xuu510, bcc) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs11(xuu311000, xuu600) new_compare110(xuu490, xuu510, True, bbg, bbh, bca) -> LT new_compare26(@2(xuu490, xuu491), @2(xuu510, xuu511), False, bba, bbb) -> new_compare16(xuu490, xuu491, xuu510, xuu511, new_lt5(xuu490, xuu510, bba), new_asAs(new_esEs20(xuu490, xuu510, bba), new_ltEs7(xuu491, xuu511, bbb)), bba, bbb) new_compare112(xuu490, xuu510, False, bbe, bbf) -> GT new_compare30(xuu4900, xuu5100, ty_Ordering) -> new_compare8(xuu4900, xuu5100) new_esEs29(xuu4910, xuu5110, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs7(xuu4910, xuu5110, dec, ded, dee) new_esEs31(xuu311000, xuu600, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu311000, xuu600, bf, bg) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs17(xuu37, xuu39) new_not(False) -> True new_compare1([], :(xuu5100, xuu5101), bcc) -> LT new_esEs20(xuu490, xuu510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(xuu490, xuu510, bbg, bbh, bca) new_lt21(xuu4910, xuu5110, app(ty_[], deg)) -> new_lt17(xuu4910, xuu5110, deg) new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, ty_Ordering) -> new_esEs14(xuu490, xuu510) new_esEs29(xuu4910, xuu5110, app(ty_[], deg)) -> new_esEs10(xuu4910, xuu5110, deg) new_primPlusNat0(Succ(xuu41200), Succ(xuu9000)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu9000))) new_esEs29(xuu4910, xuu5110, app(app(ty_Either, dea), deb)) -> new_esEs6(xuu4910, xuu5110, dea, deb) new_esEs20(xuu490, xuu510, ty_Bool) -> new_esEs12(xuu490, xuu510) new_esEs22(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_lt5(xuu490, xuu510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt15(xuu490, xuu510, bbg, bbh, bca) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, ef) -> new_esEs18(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, app(ty_[], dbc)) -> new_esEs10(xuu3110002, xuu6002, dbc) new_esEs20(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare27(xuu491, xuu511)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, bdf)) -> new_esEs16(xuu311000, xuu600, bdf) new_compare30(xuu4900, xuu5100, ty_Double) -> new_compare6(xuu4900, xuu5100) new_esEs24(xuu4911, xuu5111, ty_@0) -> new_esEs13(xuu4911, xuu5111) new_esEs27(xuu3110002, xuu6002, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xuu3110002, xuu6002, dbd, dbe, dbf) new_esEs29(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_esEs26(xuu3110001, xuu6001, app(ty_Maybe, chh)) -> new_esEs5(xuu3110001, xuu6001, chh) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs13(xuu37, xuu39) new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_compare30(xuu4900, xuu5100, ty_Char) -> new_compare31(xuu4900, xuu5100) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fc), ef) -> new_esEs16(xuu3110000, xuu6000, fc) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Integer, bch) -> new_ltEs10(xuu4910, xuu5110) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_Ratio, ceh)) -> new_ltEs16(xuu4910, xuu5110, ceh) new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, app(app(app(ty_@3, cfg), cfh), cga)) -> new_compare17(xuu4900, xuu5100, cfg, cfh, cga) new_esEs28(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs5(True, True) -> True new_esEs10([], [], ccb) -> True new_esEs13(@0, @0) -> True new_lt21(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs14(LT, LT) -> True new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare7(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) new_esEs27(xuu3110002, xuu6002, app(app(ty_@2, dbh), dca)) -> new_esEs4(xuu3110002, xuu6002, dbh, dca) new_esEs27(xuu3110002, xuu6002, app(app(ty_Either, dcb), dcc)) -> new_esEs6(xuu3110002, xuu6002, dcb, dcc) new_esEs8(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs14(LT, EQ) -> False new_esEs14(EQ, LT) -> False new_compare8(xuu490, xuu510) -> new_compare23(xuu490, xuu510, new_esEs14(xuu490, xuu510)) new_lt7(xuu490, xuu510, bbc, bbd) -> new_esEs14(new_compare18(xuu490, xuu510, bbc, bbd), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Ordering, bch) -> new_ltEs6(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_compare28(xuu490, xuu510, False, bbg, bbh, bca) -> new_compare110(xuu490, xuu510, new_ltEs15(xuu490, xuu510, bbg, bbh, bca), bbg, bbh, bca) new_esEs8(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs14(xuu311000, xuu600) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, eh), fa), fb), ef) -> new_esEs7(xuu3110000, xuu6000, eh, fa, fb) new_esEs20(xuu490, xuu510, ty_Char) -> new_esEs11(xuu490, xuu510) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_[], cdg), bch) -> new_ltEs17(xuu4910, xuu5110, cdg) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu4910, xuu5110, app(ty_[], beh)) -> new_lt17(xuu4910, xuu5110, beh) new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) new_ltEs11(Just(xuu4910), Nothing, bcf) -> False new_ltEs7(xuu491, xuu511, ty_Bool) -> new_ltEs5(xuu491, xuu511) new_ltEs20(xuu4911, xuu5111, ty_Ordering) -> new_ltEs6(xuu4911, xuu5111) new_compare12(xuu490, xuu510, True) -> LT new_esEs28(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_ltEs11(Nothing, Nothing, bcf) -> True new_esEs29(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu4910, xuu5110, ddf, ddg) new_esEs29(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_esEs29(xuu4910, xuu5110, app(ty_Ratio, def)) -> new_esEs16(xuu4910, xuu5110, def) new_esEs23(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_primEqNat0(Zero, Zero) -> True new_ltEs20(xuu4911, xuu5111, app(ty_Ratio, dfh)) -> new_ltEs16(xuu4911, xuu5111, dfh) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, cdc), cdd), cde), bch) -> new_ltEs15(xuu4910, xuu5110, cdc, cdd, cde) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_asAs(False, xuu59) -> False new_ltEs20(xuu4911, xuu5111, ty_Bool) -> new_ltEs5(xuu4911, xuu5111) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs12(xuu311000, xuu600) new_esEs28(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs10(xuu3110000, xuu6000, dce) new_ltEs7(xuu491, xuu511, ty_Ordering) -> new_ltEs6(xuu491, xuu511) new_esEs27(xuu3110002, xuu6002, app(ty_Maybe, dbb)) -> new_esEs5(xuu3110002, xuu6002, dbb) new_esEs8(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu490, xuu510) -> new_esEs14(new_compare11(xuu490, xuu510), LT) new_compare30(xuu4900, xuu5100, ty_Bool) -> new_compare19(xuu4900, xuu5100) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_ltEs7(xuu491, xuu511, ty_Integer) -> new_ltEs10(xuu491, xuu511) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs14(xuu37, xuu39) new_ltEs6(GT, LT) -> False new_esEs20(xuu490, xuu510, ty_Int) -> new_esEs17(xuu490, xuu510) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_compare31(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) The set Q consists of the following terms: new_esEs29(x0, x1, ty_Float) new_esEs14(EQ, EQ) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs5(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_lt4(x0, x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Double) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare31(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_primCmpNat2(Succ(x0), Zero) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(LT, LT) new_lt20(x0, x1, ty_Char) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_@0) new_compare25(x0, x1, True, x2) new_lt8(x0, x1) new_compare7(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Ordering) new_ltEs11(Nothing, Just(x0), x1) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_primCmpNat2(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Bool) new_compare17(x0, x1, x2, x3, x4) new_lt14(x0, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_primCmpNat0(x0, Zero) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_lt21(x0, x1, ty_Char) new_lt5(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Int) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_ltEs16(x0, x1, x2) new_esEs25(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_compare112(x0, x1, True, x2, x3) new_ltEs7(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Char) new_ltEs17(x0, x1, x2) new_esEs25(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False) new_esEs23(x0, x1, ty_Float) new_compare28(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, ty_Bool) new_pePe(False, x0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Double) new_compare30(x0, x1, ty_Ordering) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(:(x0, x1), [], x2) new_esEs8(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_asAs(False, x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_esEs27(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Int) new_lt16(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_compare1([], :(x0, x1), x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare24(x0, x1, True) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Bool) new_compare11(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs14(LT, EQ) new_esEs14(EQ, LT) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs14(GT, GT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare28(x0, x1, False, x2, x3, x4) new_compare1(:(x0, x1), [], x2) new_compare210(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Int) new_compare23(x0, x1, True) new_lt5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), x1) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Float) new_pePe(True, x0) new_esEs8(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_Float) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs6(EQ, GT) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(GT, EQ) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs11(Char(x0), Char(x1)) new_ltEs14(x0, x1) new_esEs29(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs5(True, True) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(LT, LT) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_compare1([], [], x0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(:(x0, x1), :(x2, x3), x4) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat0(x0, Succ(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare14(x0, x1, False) new_esEs23(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare1(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Nothing, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, True, x2) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Char) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Char) new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), x1) new_esEs10([], [], x0) new_compare110(x0, x1, False, x2, x3, x4) new_compare29(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_compare9(@0, @0) new_compare30(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_compare12(x0, x1, False) new_esEs8(x0, x1, ty_Double) new_esEs15(Integer(x0), Integer(x1)) new_primCompAux00(x0, EQ) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, Zero) new_lt19(x0, x1, ty_Integer) new_compare24(x0, x1, False) new_esEs32(x0, x1, ty_Int) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Float) new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt21(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_fsEs(x0) new_primPlusNat0(Zero, Zero) new_ltEs7(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Ordering) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_not(True) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_compare14(x0, x1, True) new_esEs9(x0, x1, ty_Ordering) new_esEs12(False, False) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_@0) new_primCmpNat1(Zero, x0) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, x2) new_esEs5(Nothing, Nothing, x0) new_esEs14(EQ, GT) new_esEs14(GT, EQ) new_ltEs12(x0, x1) new_compare12(x0, x1, True) new_esEs23(x0, x1, ty_Double) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs29(x0, x1, ty_Int) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10([], :(x0, x1), x2) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Int) new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Bool) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_ltEs4(x0, x1) new_esEs27(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare18(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_compare10(x0, x1, False, x2) new_lt15(x0, x1, x2, x3, x4) new_ltEs6(GT, GT) new_sr(x0, x1) new_lt9(x0, x1, x2) new_compare8(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Nothing, Nothing, x0) new_ltEs10(x0, x1) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True, x2, x3, x4) new_compare112(x0, x1, False, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Float) new_compare30(x0, x1, ty_Double) new_asAs(True, x0) new_lt19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(LT, GT) new_esEs14(GT, LT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs12(True, True) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Ordering) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt7(x0, x1, x2, x3) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat0(Zero, Succ(x0)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1) new_primCompAux0(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt5(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_primCmpNat2(Zero, Succ(x0)) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_primMulNat0(Succ(x0), Zero) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs13(@0, @0) new_ltEs20(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_Char) new_lt5(x0, x1, ty_Integer) new_lt17(x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs4(@2(xuu25, xuu26), @2(xuu19, xuu20), h, ba), h, ba), GT), h, ba, bb) at position [9,0,2] we obtained the following new rules [LPAR04]: (new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs8(xuu25, xuu19, h), new_esEs9(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb),new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs8(xuu25, xuu19, h), new_esEs9(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb)) ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) new_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, bc), bc, bd), bc, bd, be) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs8(xuu25, xuu19, h), new_esEs9(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs14(GT, GT) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_compare24(xuu490, xuu510, False) -> new_compare12(xuu490, xuu510, new_ltEs5(xuu490, xuu510)) new_esEs24(xuu4911, xuu5111, ty_Char) -> new_esEs11(xuu4911, xuu5111) new_pePe(True, xuu127) -> True new_lt6(xuu490, xuu510) -> new_esEs14(new_compare6(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_@2, ccf), ccg), bch) -> new_ltEs9(xuu4910, xuu5110, ccf, ccg) new_ltEs6(GT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_ltEs9(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), bcd, bce) -> new_pePe(new_lt21(xuu4910, xuu5110, bcd), new_asAs(new_esEs29(xuu4910, xuu5110, bcd), new_ltEs20(xuu4911, xuu5111, bce))) new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_compare26(xuu49, xuu51, True, bba, bbb) -> EQ new_esEs28(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], eg), ef) -> new_esEs10(xuu3110000, xuu6000, eg) new_esEs22(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare25(xuu490, xuu510, False, hd) -> new_compare10(xuu490, xuu510, new_ltEs11(xuu490, xuu510, hd), hd) new_lt16(xuu490, xuu510, bcb) -> new_esEs14(new_compare15(xuu490, xuu510, bcb), LT) new_ltEs7(xuu491, xuu511, ty_@0) -> new_ltEs4(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, bhc)) -> new_ltEs16(xuu4912, xuu5112, bhc) new_esEs28(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs14(EQ, EQ) -> True new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare6(xuu491, xuu511)) new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_compare111(xuu103, xuu104, xuu105, xuu106, False, cgd, cge) -> GT new_ltEs6(EQ, GT) -> True new_ltEs7(xuu491, xuu511, app(ty_Ratio, bdd)) -> new_ltEs16(xuu491, xuu511, bdd) new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, bed), bee), bef)) -> new_lt15(xuu4910, xuu5110, bed, bee, bef) new_esEs24(xuu4911, xuu5111, app(ty_Ratio, bga)) -> new_esEs16(xuu4911, xuu5111, bga) new_primCompAux0(xuu4900, xuu5100, xuu128, bcc) -> new_primCompAux00(xuu128, new_compare30(xuu4900, xuu5100, bcc)) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bf, bg) -> new_asAs(new_esEs8(xuu3110000, xuu6000, bf), new_esEs9(xuu3110001, xuu6001, bg)) new_compare30(xuu4900, xuu5100, ty_@0) -> new_compare9(xuu4900, xuu5100) new_esEs20(xuu490, xuu510, ty_Double) -> new_esEs18(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(app(ty_@2, cfb), cfc)) -> new_compare18(xuu4900, xuu5100, cfb, cfc) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu311000, xuu600, ccc, ccd, cce) new_compare210(xuu490, xuu510, True, bbe, bbf) -> EQ new_ltEs20(xuu4911, xuu5111, ty_@0) -> new_ltEs4(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xuu4911, xuu5111, bfa, bfb) new_compare29(xuu490, xuu510, bbe, bbf) -> new_compare210(xuu490, xuu510, new_esEs6(xuu490, xuu510, bbe, bbf), bbe, bbf) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primCmpNat2(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat2(xuu49000, xuu51000) new_ltEs4(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) new_lt12(xuu490, xuu510) -> new_esEs14(new_compare19(xuu490, xuu510), LT) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, app(ty_[], bcc)) -> new_lt17(xuu490, xuu510, bcc) new_compare1(:(xuu4900, xuu4901), [], bcc) -> GT new_compare12(xuu490, xuu510, False) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_ltEs20(xuu4911, xuu5111, ty_Integer) -> new_ltEs10(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Float) -> new_lt11(xuu490, xuu510) new_esEs23(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_not(True) -> False new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_[], gc)) -> new_esEs10(xuu3110000, xuu6000, gc) new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, de), df), dg)) -> new_esEs7(xuu3110001, xuu6001, de, df, dg) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ccc, ccd, cce) -> new_asAs(new_esEs25(xuu3110000, xuu6000, ccc), new_asAs(new_esEs26(xuu3110001, xuu6001, ccd), new_esEs27(xuu3110002, xuu6002, cce))) new_compare13(xuu490, xuu510, hd) -> new_compare25(xuu490, xuu510, new_esEs5(xuu490, xuu510, hd), hd) new_esEs27(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_primCompAux00(xuu137, LT) -> LT new_compare30(xuu4900, xuu5100, app(ty_[], cgc)) -> new_compare1(xuu4900, xuu5100, cgc) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs15(xuu4910, xuu5110, cbe, cbf, cbg) new_esEs28(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_ltEs6(LT, GT) -> True new_esEs23(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs10(xuu4912, xuu5112) new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs15(xuu37, xuu39) new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt15(xuu4911, xuu5111, bff, bfg, bfh) new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs7(xuu3110000, xuu6000, cgh, cha, chb) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Char) -> new_lt14(xuu4910, xuu5110) new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ccb) -> new_asAs(new_esEs28(xuu3110000, xuu6000, ccb), new_esEs10(xuu3110001, xuu6001, ccb)) new_esEs26(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_esEs28(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_compare17(xuu490, xuu510, bbg, bbh, bca) -> new_compare28(xuu490, xuu510, new_esEs7(xuu490, xuu510, bbg, bbh, bca), bbg, bbh, bca) new_esEs8(xuu3110000, xuu6000, app(ty_Ratio, ce)) -> new_esEs16(xuu3110000, xuu6000, ce) new_lt5(xuu490, xuu510, ty_Int) -> new_lt18(xuu490, xuu510) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs20(xuu4911, xuu5111, ty_Int) -> new_ltEs18(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, chc)) -> new_esEs16(xuu3110000, xuu6000, chc) new_esEs8(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, ty_Int) -> new_ltEs18(xuu491, xuu511) new_primCmpNat0(xuu4900, Succ(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) new_esEs8(xuu3110000, xuu6000, app(app(ty_@2, cf), cg)) -> new_esEs4(xuu3110000, xuu6000, cf, cg) new_lt5(xuu490, xuu510, ty_Double) -> new_lt6(xuu490, xuu510) new_lt5(xuu490, xuu510, app(app(ty_@2, bbc), bbd)) -> new_lt7(xuu490, xuu510, bbc, bbd) new_esEs24(xuu4911, xuu5111, ty_Ordering) -> new_esEs14(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs4(xuu4912, xuu5112) new_primCompAux00(xuu137, GT) -> GT new_esEs24(xuu4911, xuu5111, ty_Double) -> new_esEs18(xuu4911, xuu5111) new_esEs20(xuu490, xuu510, ty_@0) -> new_esEs13(xuu490, xuu510) new_lt14(xuu490, xuu510) -> new_esEs14(new_compare31(xuu490, xuu510), LT) new_lt21(xuu4910, xuu5110, app(ty_Maybe, ddh)) -> new_lt9(xuu4910, xuu5110, ddh) new_lt5(xuu490, xuu510, ty_Ordering) -> new_lt4(xuu490, xuu510) new_compare30(xuu4900, xuu5100, app(ty_Ratio, cgb)) -> new_compare15(xuu4900, xuu5100, cgb) new_lt9(xuu490, xuu510, hd) -> new_esEs14(new_compare13(xuu490, xuu510, hd), LT) new_esEs29(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_compare14(xuu490, xuu510, True) -> LT new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT new_lt5(xuu490, xuu510, app(app(ty_Either, bbe), bbf)) -> new_lt13(xuu490, xuu510, bbe, bbf) new_esEs20(xuu490, xuu510, app(app(ty_@2, bbc), bbd)) -> new_esEs4(xuu490, xuu510, bbc, bbd) new_esEs20(xuu490, xuu510, app(ty_Ratio, bcb)) -> new_esEs16(xuu490, xuu510, bcb) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_lt18(xuu490, xuu510) -> new_esEs14(new_compare7(xuu490, xuu510), LT) new_ltEs5(False, True) -> True new_esEs8(xuu3110000, xuu6000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs7(xuu3110000, xuu6000, cb, cc, cd) new_esEs23(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_lt5(xuu490, xuu510, app(ty_Maybe, hd)) -> new_lt9(xuu490, xuu510, hd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, ef) -> new_esEs13(xuu3110000, xuu6000) new_lt21(xuu4910, xuu5110, app(app(app(ty_@3, dec), ded), dee)) -> new_lt15(xuu4910, xuu5110, dec, ded, dee) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_Maybe, gb)) -> new_esEs5(xuu3110000, xuu6000, gb) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu3110001, xuu6001, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xuu3110001, xuu6001, dab, dac, dad) new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt8(xuu4911, xuu5111) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_Either, bcg), bch)) -> new_ltEs13(xuu491, xuu511, bcg, bch) new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt14(xuu4911, xuu5111) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs13(xuu311000, xuu600) new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs7(xuu37, xuu39, baa, bab, bac) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Ratio, cbh)) -> new_ltEs16(xuu4910, xuu5110, cbh) new_compare110(xuu490, xuu510, False, bbg, bbh, bca) -> GT new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, ef) -> new_esEs11(xuu3110000, xuu6000) new_pePe(False, xuu127) -> xuu127 new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, dc)) -> new_esEs5(xuu3110001, xuu6001, dc) new_ltEs13(Left(xuu4910), Right(xuu5110), bcg, bch) -> True new_esEs12(False, False) -> True new_esEs27(xuu3110002, xuu6002, ty_Bool) -> new_esEs12(xuu3110002, xuu6002) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ee), ef) -> new_esEs5(xuu3110000, xuu6000, ee) new_compare112(xuu490, xuu510, True, bbe, bbf) -> LT new_lt20(xuu4911, xuu5111, app(ty_Ratio, bga)) -> new_lt16(xuu4911, xuu5111, bga) new_ltEs6(LT, LT) -> True new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(ty_[], bde)) -> new_ltEs17(xuu491, xuu511, bde) new_esEs23(xuu4910, xuu5110, ty_Double) -> new_esEs18(xuu4910, xuu5110) new_esEs11(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare10(xuu490, xuu510, False, hd) -> GT new_lt20(xuu4911, xuu5111, app(ty_Maybe, bfc)) -> new_lt9(xuu4911, xuu5111, bfc) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(ty_Either, cda), cdb), bch) -> new_ltEs13(xuu4910, xuu5110, cda, cdb) new_lt19(xuu4910, xuu5110, app(ty_Maybe, bea)) -> new_lt9(xuu4910, xuu5110, bea) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare16(xuu103, xuu104, xuu105, xuu106, True, xuu108, cgd, cge) -> new_compare111(xuu103, xuu104, xuu105, xuu106, True, cgd, cge) new_ltEs13(Right(xuu4910), Left(xuu5110), bcg, bch) -> False new_compare30(xuu4900, xuu5100, app(app(ty_Either, cfe), cff)) -> new_compare29(xuu4900, xuu5100, cfe, cff) new_esEs8(xuu3110000, xuu6000, app(ty_[], ca)) -> new_esEs10(xuu3110000, xuu6000, ca) new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, chd), che)) -> new_esEs4(xuu3110000, xuu6000, chd, che) new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs18(xuu4912, xuu5112) new_esEs5(Nothing, Nothing, bhe) -> True new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(ty_Ratio, gg)) -> new_esEs16(xuu3110000, xuu6000, gg) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, dh)) -> new_esEs16(xuu3110001, xuu6001, dh) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), bhe) -> False new_esEs5(Just(xuu3110000), Nothing, bhe) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_ltEs20(xuu4911, xuu5111, app(app(ty_Either, dfc), dfd)) -> new_ltEs13(xuu4911, xuu5111, dfc, dfd) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, caf), cag)) -> new_esEs6(xuu3110000, xuu6000, caf, cag) new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs14(xuu4912, xuu5112) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs27(xuu3110002, xuu6002, ty_Ordering) -> new_esEs14(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(ty_@2, cdh), cea)) -> new_ltEs9(xuu4910, xuu5110, cdh, cea) new_esEs24(xuu4911, xuu5111, app(app(ty_Either, bfd), bfe)) -> new_esEs6(xuu4911, xuu5111, bfd, bfe) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, ea), eb)) -> new_esEs4(xuu3110001, xuu6001, ea, eb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, fg), fh), ef) -> new_esEs6(xuu3110000, xuu6000, fg, fh) new_lt21(xuu4910, xuu5110, app(app(ty_Either, dea), deb)) -> new_lt13(xuu4910, xuu5110, dea, deb) new_esEs14(LT, GT) -> False new_esEs14(GT, LT) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa, cab) new_compare10(xuu490, xuu510, True, hd) -> LT new_compare30(xuu4900, xuu5100, ty_Float) -> new_compare27(xuu4900, xuu5100) new_esEs32(xuu37, xuu39, app(ty_Maybe, hg)) -> new_esEs5(xuu37, xuu39, hg) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_ltEs6(LT, EQ) -> True new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_[], cfa)) -> new_ltEs17(xuu4910, xuu5110, cfa) new_esEs23(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, bgf), bgg)) -> new_ltEs13(xuu4912, xuu5112, bgf, bgg) new_lt5(xuu490, xuu510, app(ty_Ratio, bcb)) -> new_lt16(xuu490, xuu510, bcb) new_primPlusNat1(Succ(xuu940), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu940, xuu600000))) new_esEs23(xuu4910, xuu5110, app(ty_Maybe, bea)) -> new_esEs5(xuu4910, xuu5110, bea) new_esEs24(xuu4911, xuu5111, ty_Int) -> new_esEs17(xuu4911, xuu5111) new_primCmpNat2(Succ(xuu49000), Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) new_ltEs5(True, False) -> False new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Ratio, cdf), bch) -> new_ltEs16(xuu4910, xuu5110, cdf) new_compare30(xuu4900, xuu5100, app(ty_Maybe, cfd)) -> new_compare13(xuu4900, xuu5100, cfd) new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt12(xuu4911, xuu5111) new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) new_primPlusNat0(Zero, Succ(xuu9000)) -> Succ(xuu9000) new_compare30(xuu4900, xuu5100, ty_Int) -> new_compare7(xuu4900, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Char, bch) -> new_ltEs14(xuu4910, xuu5110) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) new_esEs24(xuu4911, xuu5111, app(ty_[], bgb)) -> new_esEs10(xuu4911, xuu5111, bgb) new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs7(xuu3110000, xuu6000, gd, ge, gf) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], bhg)) -> new_esEs10(xuu3110000, xuu6000, bhg) new_compare7(xuu85, xuu84) -> new_primCmpInt(xuu85, xuu84) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, ef) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], bcc) -> EQ new_ltEs20(xuu4911, xuu5111, ty_Double) -> new_ltEs8(xuu4911, xuu5111) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs10(xuu4910, xuu5110) new_esEs30(xuu36, xuu37, xuu38, xuu39, True, he, hf) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, hf), he, hf), LT) new_lt21(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) new_lt21(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_esEs24(xuu4911, xuu5111, ty_Bool) -> new_esEs12(xuu4911, xuu5111) new_esEs24(xuu4911, xuu5111, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(xuu4911, xuu5111, bff, bfg, bfh) new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs18(xuu37, xuu39) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_lt5(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs4(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_@0) -> new_esEs13(xuu3110002, xuu6002) new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_Maybe, cbb)) -> new_ltEs11(xuu4910, xuu5110, cbb) new_lt19(xuu4910, xuu5110, app(ty_Ratio, beg)) -> new_lt16(xuu4910, xuu5110, beg) new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(xuu491, xuu511, app(app(ty_@2, bcd), bce)) -> new_ltEs9(xuu491, xuu511, bcd, bce) new_esEs26(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_ltEs20(xuu4911, xuu5111, app(app(app(ty_@3, dfe), dff), dfg)) -> new_ltEs15(xuu4911, xuu5111, dfe, dff, dfg) new_esEs23(xuu4910, xuu5110, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs7(xuu4910, xuu5110, bed, bee, bef) new_ltEs19(xuu4912, xuu5112, app(ty_[], bhd)) -> new_ltEs17(xuu4912, xuu5112, bhd) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_compare25(xuu490, xuu510, True, hd) -> EQ new_esEs24(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) new_lt5(xuu490, xuu510, ty_Bool) -> new_lt12(xuu490, xuu510) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu491, xuu511) -> new_fsEs(new_compare7(xuu491, xuu511)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs6(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(ty_[], dga)) -> new_ltEs17(xuu4911, xuu5111, dga) new_esEs23(xuu4910, xuu5110, app(ty_Ratio, beg)) -> new_esEs16(xuu4910, xuu5110, beg) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_esEs30(xuu36, xuu37, xuu38, xuu39, False, he, hf) -> new_esEs14(new_compare26(@2(xuu36, xuu37), @2(xuu38, xuu39), False, he, hf), LT) new_lt21(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_lt17(xuu490, xuu510, bcc) -> new_esEs14(new_compare1(xuu490, xuu510, bcc), LT) new_lt15(xuu490, xuu510, bbg, bbh, bca) -> new_esEs14(new_compare17(xuu490, xuu510, bbg, bbh, bca), LT) new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs15(xuu4912, xuu5112, bgh, bha, bhb) new_ltEs16(xuu491, xuu511, bdd) -> new_fsEs(new_compare15(xuu491, xuu511, bdd)) new_esEs8(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, ef) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) new_ltEs14(xuu491, xuu511) -> new_fsEs(new_compare31(xuu491, xuu511)) new_ltEs7(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs8(xuu4912, xuu5112) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bhf)) -> new_esEs5(xuu3110000, xuu6000, bhf) new_esEs23(xuu4910, xuu5110, app(ty_[], beh)) -> new_esEs10(xuu4910, xuu5110, beh) new_esEs26(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu4910, xuu5110, app(app(ty_Either, beb), bec)) -> new_esEs6(xuu4910, xuu5110, beb, bec) new_esEs23(xuu4910, xuu5110, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xuu4910, xuu5110, bdg, bdh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Double, bch) -> new_ltEs8(xuu4910, xuu5110) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs8(xuu3110000, xuu6000, app(ty_Maybe, bh)) -> new_esEs5(xuu3110000, xuu6000, bh) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, ef) -> new_esEs17(xuu3110000, xuu6000) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_lt20(xuu4911, xuu5111, app(app(ty_Either, bfd), bfe)) -> new_lt13(xuu4911, xuu5111, bfd, bfe) new_compare6(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_compare6(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, fd), ff), ef) -> new_esEs4(xuu3110000, xuu6000, fd, ff) new_esEs9(xuu3110001, xuu6001, app(ty_[], dd)) -> new_esEs10(xuu3110001, xuu6001, dd) new_esEs20(xuu490, xuu510, ty_Integer) -> new_esEs15(xuu490, xuu510) new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt18(xuu4910, xuu5110) new_compare16(xuu103, xuu104, xuu105, xuu106, False, xuu108, cgd, cge) -> new_compare111(xuu103, xuu104, xuu105, xuu106, xuu108, cgd, cge) new_ltEs20(xuu4911, xuu5111, app(ty_Maybe, dfb)) -> new_ltEs11(xuu4911, xuu5111, dfb) new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat0(xuu4900, xuu510) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(ty_Either, hb), hc)) -> new_esEs6(xuu3110000, xuu6000, hb, hc) new_lt20(xuu4911, xuu5111, app(ty_[], bgb)) -> new_lt17(xuu4911, xuu5111, bgb) new_ltEs6(GT, EQ) -> False new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt11(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_compare14(xuu490, xuu510, False) -> GT new_ltEs11(Just(xuu4910), Just(xuu5110), app(ty_[], cca)) -> new_ltEs17(xuu4910, xuu5110, cca) new_ltEs7(xuu491, xuu511, app(ty_Maybe, bcf)) -> new_ltEs11(xuu491, xuu511, bcf) new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_Maybe, cch), bch) -> new_ltEs11(xuu4910, xuu5110, cch) new_ltEs5(False, False) -> True new_esEs29(xuu4910, xuu5110, app(ty_Maybe, ddh)) -> new_esEs5(xuu4910, xuu5110, ddh) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Bool, bch) -> new_ltEs5(xuu4910, xuu5110) new_esEs23(xuu4910, xuu5110, ty_@0) -> new_esEs13(xuu4910, xuu5110) new_lt4(xuu490, xuu510) -> new_esEs14(new_compare8(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs5(xuu4910, xuu5110) new_primCmpNat0(xuu4900, Zero) -> GT new_esEs29(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, ef) -> new_esEs19(xuu3110000, xuu6000) new_compare23(xuu490, xuu510, False) -> new_compare14(xuu490, xuu510, new_ltEs6(xuu490, xuu510)) new_esEs28(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs14(EQ, GT) -> False new_esEs14(GT, EQ) -> False new_primCmpNat2(Zero, Succ(xuu51000)) -> LT new_lt21(xuu4910, xuu5110, app(ty_Ratio, def)) -> new_lt16(xuu4910, xuu5110, def) new_esEs8(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs12(xuu37, xuu39) new_esEs26(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare111(xuu103, xuu104, xuu105, xuu106, True, cgd, cge) -> LT new_asAs(True, xuu59) -> xuu59 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, ec), ed)) -> new_esEs6(xuu3110001, xuu6001, ec, ed) new_lt20(xuu4911, xuu5111, app(app(ty_@2, bfa), bfb)) -> new_lt7(xuu4911, xuu5111, bfa, bfb) new_compare18(xuu490, xuu510, bbc, bbd) -> new_compare26(xuu490, xuu510, new_esEs4(xuu490, xuu510, bbc, bbd), bbc, bbd) new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt12(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, app(app(ty_@2, deh), dfa)) -> new_ltEs9(xuu4911, xuu5111, deh, dfa) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs15(xuu4910, xuu5110, cee, cef, ceg) new_esEs6(Left(xuu3110000), Right(xuu6000), ga, ef) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), ga, ef) -> False new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(app(ty_Either, cec), ced)) -> new_ltEs13(xuu4910, xuu5110, cec, ced) new_esEs20(xuu490, xuu510, app(ty_Maybe, hd)) -> new_esEs5(xuu490, xuu510, hd) new_ltEs7(xuu491, xuu511, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs15(xuu491, xuu511, bda, bdb, bdc) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cad), cae)) -> new_esEs4(xuu3110000, xuu6000, cad, cae) new_ltEs7(xuu491, xuu511, ty_Double) -> new_ltEs8(xuu491, xuu511) new_lt19(xuu4910, xuu5110, app(app(ty_@2, bdg), bdh)) -> new_lt7(xuu4910, xuu5110, bdg, bdh) new_esEs24(xuu4911, xuu5111, ty_Integer) -> new_esEs15(xuu4911, xuu5111) new_esEs26(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) new_ltEs20(xuu4911, xuu5111, ty_Char) -> new_ltEs14(xuu4911, xuu5111) new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs11(xuu37, xuu39) new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, bgc), bgd)) -> new_ltEs9(xuu4912, xuu5112, bgc, bgd) new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs6(xuu4912, xuu5112) new_esEs10(:(xuu3110000, xuu3110001), [], ccb) -> False new_esEs10([], :(xuu6000, xuu6001), ccb) -> False new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs14(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cac)) -> new_esEs16(xuu3110000, xuu6000, cac) new_lt11(xuu490, xuu510) -> new_esEs14(new_compare27(xuu490, xuu510), LT) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Float, bch) -> new_ltEs12(xuu4910, xuu5110) new_primCompAux00(xuu137, EQ) -> xuu137 new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare23(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primMulNat0(Zero, Zero) -> Zero new_esEs12(True, True) -> True new_esEs27(xuu3110002, xuu6002, app(ty_Ratio, dbg)) -> new_esEs16(xuu3110002, xuu6002, dbg) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs11(xuu3110001, xuu6001) new_esEs24(xuu4911, xuu5111, app(ty_Maybe, bfc)) -> new_esEs5(xuu4911, xuu5111, bfc) new_esEs29(xuu4910, xuu5110, ty_Int) -> new_esEs17(xuu4910, xuu5110) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_ltEs17(xuu491, xuu511, bde) -> new_fsEs(new_compare1(xuu491, xuu511, bde)) new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) new_esEs26(xuu3110001, xuu6001, app(app(ty_Either, dah), dba)) -> new_esEs6(xuu3110001, xuu6001, dah, dba) new_esEs32(xuu37, xuu39, app(ty_[], hh)) -> new_esEs10(xuu37, xuu39, hh) new_esEs32(xuu37, xuu39, app(app(ty_Either, bag), bah)) -> new_esEs6(xuu37, xuu39, bag, bah) new_compare9(@0, @0) -> EQ new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) new_ltEs6(EQ, LT) -> False new_compare1(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bcc) -> new_primCompAux0(xuu4900, xuu5100, new_compare1(xuu4901, xuu5101, bcc), bcc) new_primCmpNat1(Zero, xuu4900) -> LT new_ltEs11(Nothing, Just(xuu5110), bcf) -> True new_compare28(xuu490, xuu510, True, bbg, bbh, bca) -> EQ new_esEs26(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(ty_[], daa)) -> new_esEs10(xuu3110001, xuu6001, daa) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Int, bch) -> new_ltEs18(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_compare19(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs12(xuu490, xuu510)) new_lt13(xuu490, xuu510, bbe, bbf) -> new_esEs14(new_compare29(xuu490, xuu510, bbe, bbf), LT) new_esEs8(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(ty_Maybe, bhe)) -> new_esEs5(xuu311000, xuu600, bhe) new_primCmpNat2(Zero, Zero) -> EQ new_esEs31(xuu311000, xuu600, app(ty_[], ccb)) -> new_esEs10(xuu311000, xuu600, ccb) new_esEs31(xuu311000, xuu600, app(app(ty_Either, ga), ef)) -> new_esEs6(xuu311000, xuu600, ga, ef) new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt4(xuu4911, xuu5111) new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, cgf)) -> new_esEs5(xuu3110000, xuu6000, cgf) new_esEs25(xuu3110000, xuu6000, app(ty_[], cgg)) -> new_esEs10(xuu3110000, xuu6000, cgg) new_esEs8(xuu3110000, xuu6000, app(app(ty_Either, da), db)) -> new_esEs6(xuu3110000, xuu6000, da, db) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt18(xuu4911, xuu5111) new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, bge)) -> new_ltEs11(xuu4912, xuu5112, bge) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, ef) -> new_esEs15(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_@0, bch) -> new_ltEs4(xuu4910, xuu5110) new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, chf), chg)) -> new_esEs6(xuu3110000, xuu6000, chf, chg) new_lt5(xuu490, xuu510, ty_Integer) -> new_lt8(xuu490, xuu510) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_Maybe, ceb)) -> new_ltEs11(xuu4910, xuu5110, ceb) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs18(xuu4910, xuu5110) new_lt21(xuu4910, xuu5110, ty_Ordering) -> new_lt4(xuu4910, xuu5110) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt8(xuu4910, xuu5110) new_lt19(xuu4910, xuu5110, app(app(ty_Either, beb), bec)) -> new_lt13(xuu4910, xuu5110, beb, bec) new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt6(xuu4911, xuu5111) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_lt5(xuu490, xuu510, ty_Char) -> new_lt14(xuu490, xuu510) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_compare210(xuu490, xuu510, False, bbe, bbf) -> new_compare112(xuu490, xuu510, new_ltEs13(xuu490, xuu510, bbe, bbf), bbe, bbf) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, app(app(ty_@2, gh), ha)) -> new_esEs4(xuu3110000, xuu6000, gh, ha) new_esEs32(xuu37, xuu39, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu37, xuu39, bae, baf) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs26(xuu3110001, xuu6001, app(app(ty_@2, daf), dag)) -> new_esEs4(xuu3110001, xuu6001, daf, dag) new_compare24(xuu490, xuu510, True) -> EQ new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs12(xuu3110001, xuu6001) new_esEs20(xuu490, xuu510, app(app(ty_Either, bbe), bbf)) -> new_esEs6(xuu490, xuu510, bbe, bbf) new_ltEs7(xuu491, xuu511, ty_Char) -> new_ltEs14(xuu491, xuu511) new_fsEs(xuu115) -> new_not(new_esEs14(xuu115, GT)) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bdf) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bdf), new_esEs22(xuu3110001, xuu6001, bdf)) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, ty_Char) -> new_esEs11(xuu3110002, xuu6002) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu3110001, xuu6001, app(ty_Ratio, dae)) -> new_esEs16(xuu3110001, xuu6001, dae) new_esEs32(xuu37, xuu39, app(ty_Ratio, bad)) -> new_esEs16(xuu37, xuu39, bad) new_ltEs15(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bda, bdb, bdc) -> new_pePe(new_lt19(xuu4910, xuu5110, bda), new_asAs(new_esEs23(xuu4910, xuu5110, bda), new_pePe(new_lt20(xuu4911, xuu5111, bdb), new_asAs(new_esEs24(xuu4911, xuu5111, bdb), new_ltEs19(xuu4912, xuu5112, bdc))))) new_lt10(xuu490, xuu510) -> new_esEs14(new_compare9(xuu490, xuu510), LT) new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_Either, cbc), cbd)) -> new_ltEs13(xuu4910, xuu5110, cbc, cbd) new_lt21(xuu4910, xuu5110, app(app(ty_@2, ddf), ddg)) -> new_lt7(xuu4910, xuu5110, ddf, ddg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu4910), Just(xuu5110), app(app(ty_@2, cah), cba)) -> new_ltEs9(xuu4910, xuu5110, cah, cba) new_esEs28(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_lt21(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs5(xuu4912, xuu5112) new_esEs29(xuu4910, xuu5110, ty_Ordering) -> new_esEs14(xuu4910, xuu5110) new_esEs8(xuu3110000, xuu6000, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat2(xuu5100, xuu4900) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, app(ty_[], bcc)) -> new_esEs10(xuu490, xuu510, bcc) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs11(xuu311000, xuu600) new_compare110(xuu490, xuu510, True, bbg, bbh, bca) -> LT new_compare26(@2(xuu490, xuu491), @2(xuu510, xuu511), False, bba, bbb) -> new_compare16(xuu490, xuu491, xuu510, xuu511, new_lt5(xuu490, xuu510, bba), new_asAs(new_esEs20(xuu490, xuu510, bba), new_ltEs7(xuu491, xuu511, bbb)), bba, bbb) new_compare112(xuu490, xuu510, False, bbe, bbf) -> GT new_compare30(xuu4900, xuu5100, ty_Ordering) -> new_compare8(xuu4900, xuu5100) new_esEs29(xuu4910, xuu5110, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs7(xuu4910, xuu5110, dec, ded, dee) new_esEs31(xuu311000, xuu600, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu311000, xuu600, bf, bg) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs17(xuu37, xuu39) new_not(False) -> True new_compare1([], :(xuu5100, xuu5101), bcc) -> LT new_esEs20(xuu490, xuu510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(xuu490, xuu510, bbg, bbh, bca) new_lt21(xuu4910, xuu5110, app(ty_[], deg)) -> new_lt17(xuu4910, xuu5110, deg) new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Bool) -> new_esEs12(xuu3110000, xuu6000) new_esEs20(xuu490, xuu510, ty_Ordering) -> new_esEs14(xuu490, xuu510) new_esEs29(xuu4910, xuu5110, app(ty_[], deg)) -> new_esEs10(xuu4910, xuu5110, deg) new_primPlusNat0(Succ(xuu41200), Succ(xuu9000)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu9000))) new_esEs29(xuu4910, xuu5110, app(app(ty_Either, dea), deb)) -> new_esEs6(xuu4910, xuu5110, dea, deb) new_esEs20(xuu490, xuu510, ty_Bool) -> new_esEs12(xuu490, xuu510) new_esEs22(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_lt5(xuu490, xuu510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt15(xuu490, xuu510, bbg, bbh, bca) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, ef) -> new_esEs18(xuu3110000, xuu6000) new_esEs27(xuu3110002, xuu6002, app(ty_[], dbc)) -> new_esEs10(xuu3110002, xuu6002, dbc) new_esEs20(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare27(xuu491, xuu511)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, bdf)) -> new_esEs16(xuu311000, xuu600, bdf) new_compare30(xuu4900, xuu5100, ty_Double) -> new_compare6(xuu4900, xuu5100) new_esEs24(xuu4911, xuu5111, ty_@0) -> new_esEs13(xuu4911, xuu5111) new_esEs27(xuu3110002, xuu6002, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xuu3110002, xuu6002, dbd, dbe, dbf) new_esEs29(xuu4910, xuu5110, ty_Bool) -> new_esEs12(xuu4910, xuu5110) new_esEs26(xuu3110001, xuu6001, app(ty_Maybe, chh)) -> new_esEs5(xuu3110001, xuu6001, chh) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Char) -> new_ltEs14(xuu4910, xuu5110) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Char) -> new_esEs11(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs13(xuu37, xuu39) new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_compare30(xuu4900, xuu5100, ty_Char) -> new_compare31(xuu4900, xuu5100) new_compare27(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare7(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fc), ef) -> new_esEs16(xuu3110000, xuu6000, fc) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Integer, bch) -> new_ltEs10(xuu4910, xuu5110) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, app(ty_Ratio, ceh)) -> new_ltEs16(xuu4910, xuu5110, ceh) new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare30(xuu4900, xuu5100, app(app(app(ty_@3, cfg), cfh), cga)) -> new_compare17(xuu4900, xuu5100, cfg, cfh, cga) new_esEs28(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs5(True, True) -> True new_esEs10([], [], ccb) -> True new_esEs13(@0, @0) -> True new_lt21(xuu4910, xuu5110, ty_Double) -> new_lt6(xuu4910, xuu5110) new_esEs14(LT, LT) -> True new_compare15(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare7(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) new_esEs27(xuu3110002, xuu6002, app(app(ty_@2, dbh), dca)) -> new_esEs4(xuu3110002, xuu6002, dbh, dca) new_esEs27(xuu3110002, xuu6002, app(app(ty_Either, dcb), dcc)) -> new_esEs6(xuu3110002, xuu6002, dcb, dcc) new_esEs8(xuu3110000, xuu6000, ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_esEs14(LT, EQ) -> False new_esEs14(EQ, LT) -> False new_compare8(xuu490, xuu510) -> new_compare23(xuu490, xuu510, new_esEs14(xuu490, xuu510)) new_lt7(xuu490, xuu510, bbc, bbd) -> new_esEs14(new_compare18(xuu490, xuu510, bbc, bbd), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_ltEs13(Left(xuu4910), Left(xuu5110), ty_Ordering, bch) -> new_ltEs6(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_compare28(xuu490, xuu510, False, bbg, bbh, bca) -> new_compare110(xuu490, xuu510, new_ltEs15(xuu490, xuu510, bbg, bbh, bca), bbg, bbh, bca) new_esEs8(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs14(xuu311000, xuu600) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, eh), fa), fb), ef) -> new_esEs7(xuu3110000, xuu6000, eh, fa, fb) new_esEs20(xuu490, xuu510, ty_Char) -> new_esEs11(xuu490, xuu510) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) new_ltEs13(Left(xuu4910), Left(xuu5110), app(ty_[], cdg), bch) -> new_ltEs17(xuu4910, xuu5110, cdg) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu4910, xuu5110, app(ty_[], beh)) -> new_lt17(xuu4910, xuu5110, beh) new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) new_ltEs11(Just(xuu4910), Nothing, bcf) -> False new_ltEs7(xuu491, xuu511, ty_Bool) -> new_ltEs5(xuu491, xuu511) new_ltEs20(xuu4911, xuu5111, ty_Ordering) -> new_ltEs6(xuu4911, xuu5111) new_compare12(xuu490, xuu510, True) -> LT new_esEs28(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_ltEs11(Nothing, Nothing, bcf) -> True new_esEs29(xuu4910, xuu5110, ty_Char) -> new_esEs11(xuu4910, xuu5110) new_esEs27(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Double) -> new_ltEs8(xuu4910, xuu5110) new_ltEs13(Right(xuu4910), Right(xuu5110), bcg, ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt11(xuu4910, xuu5110) new_esEs29(xuu4910, xuu5110, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu4910, xuu5110, ddf, ddg) new_esEs29(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) new_esEs28(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_esEs29(xuu4910, xuu5110, app(ty_Ratio, def)) -> new_esEs16(xuu4910, xuu5110, def) new_esEs23(xuu4910, xuu5110, ty_Integer) -> new_esEs15(xuu4910, xuu5110) new_primEqNat0(Zero, Zero) -> True new_ltEs20(xuu4911, xuu5111, app(ty_Ratio, dfh)) -> new_ltEs16(xuu4911, xuu5111, dfh) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs13(xuu3110001, xuu6001) new_ltEs13(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, cdc), cdd), cde), bch) -> new_ltEs15(xuu4910, xuu5110, cdc, cdd, cde) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs13(xuu3110000, xuu6000) new_asAs(False, xuu59) -> False new_ltEs20(xuu4911, xuu5111, ty_Bool) -> new_ltEs5(xuu4911, xuu5111) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs12(xuu311000, xuu600) new_esEs28(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs10(xuu3110000, xuu6000, dce) new_ltEs7(xuu491, xuu511, ty_Ordering) -> new_ltEs6(xuu491, xuu511) new_esEs27(xuu3110002, xuu6002, app(ty_Maybe, dbb)) -> new_esEs5(xuu3110002, xuu6002, dbb) new_esEs8(xuu3110000, xuu6000, ty_Ordering) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu490, xuu510) -> new_esEs14(new_compare11(xuu490, xuu510), LT) new_compare30(xuu4900, xuu5100, ty_Bool) -> new_compare19(xuu4900, xuu5100) new_compare27(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare7(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) new_ltEs7(xuu491, xuu511, ty_Integer) -> new_ltEs10(xuu491, xuu511) new_esEs6(Right(xuu3110000), Right(xuu6000), ga, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs14(xuu37, xuu39) new_ltEs6(GT, LT) -> False new_esEs20(xuu490, xuu510, ty_Int) -> new_esEs17(xuu490, xuu510) new_ltEs11(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) new_compare31(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat2(xuu4900, xuu5100) The set Q consists of the following terms: new_esEs29(x0, x1, ty_Float) new_esEs14(EQ, EQ) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs5(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_lt4(x0, x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Double) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare31(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_primCmpNat2(Succ(x0), Zero) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(LT, LT) new_lt20(x0, x1, ty_Char) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_@0) new_compare25(x0, x1, True, x2) new_lt8(x0, x1) new_compare7(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Ordering) new_ltEs11(Nothing, Just(x0), x1) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_primCmpNat2(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Bool) new_compare17(x0, x1, x2, x3, x4) new_lt14(x0, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_primCmpNat0(x0, Zero) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_lt21(x0, x1, ty_Char) new_lt5(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Int) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_ltEs16(x0, x1, x2) new_esEs25(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_compare112(x0, x1, True, x2, x3) new_ltEs7(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Char) new_ltEs17(x0, x1, x2) new_esEs25(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False) new_esEs23(x0, x1, ty_Float) new_compare28(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, ty_Bool) new_pePe(False, x0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Double) new_compare30(x0, x1, ty_Ordering) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(:(x0, x1), [], x2) new_esEs8(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_asAs(False, x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_esEs27(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Int) new_lt16(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_compare1([], :(x0, x1), x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare24(x0, x1, True) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Bool) new_compare11(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs14(LT, EQ) new_esEs14(EQ, LT) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs14(GT, GT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare28(x0, x1, False, x2, x3, x4) new_compare1(:(x0, x1), [], x2) new_compare210(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Int) new_compare23(x0, x1, True) new_lt5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), x1) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Float) new_pePe(True, x0) new_esEs8(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_Float) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs6(EQ, GT) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(GT, EQ) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs11(Char(x0), Char(x1)) new_ltEs14(x0, x1) new_esEs29(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs5(True, True) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(LT, LT) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_compare1([], [], x0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(:(x0, x1), :(x2, x3), x4) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat0(x0, Succ(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare14(x0, x1, False) new_esEs23(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare1(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Nothing, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, True, x2) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Char) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Char) new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), x1) new_esEs10([], [], x0) new_compare110(x0, x1, False, x2, x3, x4) new_compare29(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_compare9(@0, @0) new_compare30(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_compare12(x0, x1, False) new_esEs8(x0, x1, ty_Double) new_esEs15(Integer(x0), Integer(x1)) new_primCompAux00(x0, EQ) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, Zero) new_lt19(x0, x1, ty_Integer) new_compare24(x0, x1, False) new_esEs32(x0, x1, ty_Int) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Float) new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt21(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_fsEs(x0) new_primPlusNat0(Zero, Zero) new_ltEs7(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Ordering) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_not(True) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_compare14(x0, x1, True) new_esEs9(x0, x1, ty_Ordering) new_esEs12(False, False) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_@0) new_primCmpNat1(Zero, x0) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, x2) new_esEs5(Nothing, Nothing, x0) new_esEs14(EQ, GT) new_esEs14(GT, EQ) new_ltEs12(x0, x1) new_compare12(x0, x1, True) new_esEs23(x0, x1, ty_Double) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs29(x0, x1, ty_Int) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10([], :(x0, x1), x2) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Int) new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Bool) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_ltEs4(x0, x1) new_esEs27(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare18(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_compare10(x0, x1, False, x2) new_lt15(x0, x1, x2, x3, x4) new_ltEs6(GT, GT) new_sr(x0, x1) new_lt9(x0, x1, x2) new_compare8(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Nothing, Nothing, x0) new_ltEs10(x0, x1) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True, x2, x3, x4) new_compare112(x0, x1, False, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Float) new_compare30(x0, x1, ty_Double) new_asAs(True, x0) new_lt19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(LT, GT) new_esEs14(GT, LT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs12(True, True) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Ordering) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt7(x0, x1, x2, x3) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat0(Zero, Succ(x0)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1) new_primCompAux0(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_Int) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt5(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_primCmpNat2(Zero, Succ(x0)) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_primMulNat0(Succ(x0), Zero) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs13(@0, @0) new_ltEs20(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_Char) new_lt5(x0, x1, ty_Integer) new_lt17(x0, x1, x2) 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_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, 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(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs14(new_compare26(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs8(xuu25, xuu19, h), new_esEs9(xuu26, xuu20, 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(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 *new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 ---------------------------------------- (45) YES