/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 2 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) DependencyGraphProof [EQUIVALENT, 0 ms] (22) AND (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 54 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 16 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addListToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord 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 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 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 = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord 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 vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd' 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord 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 b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_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 :: 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; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = 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 :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];4373[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 28[label="",style="solid", color="burlywood", weight=3]; 4374[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 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"];4375[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 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"];4376[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 36[label="",style="solid", color="burlywood", weight=3]; 4377[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 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"];4378[label="xuu31100/Left xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 48[label="",style="solid", color="burlywood", weight=3]; 4379[label="xuu31100/Right xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 49[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) xuu60 (Left xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4380[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 50[label="",style="solid", color="burlywood", weight=3]; 4381[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 51[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) xuu60 (Right xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4382[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4382[label="",style="solid", color="burlywood", weight=9]; 4382 -> 52[label="",style="solid", color="burlywood", weight=3]; 4383[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4383[label="",style="solid", color="burlywood", weight=9]; 4383 -> 53[label="",style="solid", color="burlywood", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Left xuu600) (Left xuu311000 == Left xuu600) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600) == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600) == LT)",fontsize=16,color="black",shape="box"];52 -> 56[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Right xuu600) (Right xuu311000 == Right xuu600) == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 54 -> 218[label="",style="dashed", color="red", weight=0]; 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];54 -> 219[label="",style="dashed", color="magenta", weight=3]; 54 -> 220[label="",style="dashed", color="magenta", weight=3]; 54 -> 221[label="",style="dashed", color="magenta", weight=3]; 54 -> 222[label="",style="dashed", color="magenta", weight=3]; 54 -> 223[label="",style="dashed", color="magenta", weight=3]; 54 -> 224[label="",style="dashed", color="magenta", weight=3]; 54 -> 225[label="",style="dashed", color="magenta", weight=3]; 54 -> 226[label="",style="dashed", color="magenta", weight=3]; 55 -> 134[label="",style="dashed", color="red", weight=0]; 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Right xuu600) False == LT)",fontsize=16,color="magenta"];55 -> 135[label="",style="dashed", color="magenta", weight=3]; 56 -> 142[label="",style="dashed", color="red", weight=0]; 56[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Left xuu600) False == LT)",fontsize=16,color="magenta"];56 -> 143[label="",style="dashed", color="magenta", weight=3]; 57 -> 272[label="",style="dashed", color="red", weight=0]; 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];57 -> 273[label="",style="dashed", color="magenta", weight=3]; 57 -> 274[label="",style="dashed", color="magenta", weight=3]; 57 -> 275[label="",style="dashed", color="magenta", weight=3]; 57 -> 276[label="",style="dashed", color="magenta", weight=3]; 57 -> 277[label="",style="dashed", color="magenta", weight=3]; 57 -> 278[label="",style="dashed", color="magenta", weight=3]; 57 -> 279[label="",style="dashed", color="magenta", weight=3]; 57 -> 280[label="",style="dashed", color="magenta", weight=3]; 219[label="xuu31101",fontsize=16,color="green",shape="box"];220[label="xuu63",fontsize=16,color="green",shape="box"];221[label="xuu61",fontsize=16,color="green",shape="box"];222[label="xuu64",fontsize=16,color="green",shape="box"];223[label="xuu311000",fontsize=16,color="green",shape="box"];224 -> 83[label="",style="dashed", color="red", weight=0]; 224[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];224 -> 230[label="",style="dashed", color="magenta", weight=3]; 224 -> 231[label="",style="dashed", color="magenta", weight=3]; 225[label="xuu600",fontsize=16,color="green",shape="box"];226[label="xuu62",fontsize=16,color="green",shape="box"];218[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu44",fontsize=16,color="burlywood",shape="triangle"];4384[label="xuu44/False",fontsize=10,color="white",style="solid",shape="box"];218 -> 4384[label="",style="solid", color="burlywood", weight=9]; 4384 -> 232[label="",style="solid", color="burlywood", weight=3]; 4385[label="xuu44/True",fontsize=10,color="white",style="solid",shape="box"];218 -> 4385[label="",style="solid", color="burlywood", weight=9]; 4385 -> 233[label="",style="solid", color="burlywood", weight=3]; 135 -> 83[label="",style="dashed", color="red", weight=0]; 135[label="compare2 (Left xuu311000) (Right xuu600) False == LT",fontsize=16,color="magenta"];135 -> 138[label="",style="dashed", color="magenta", weight=3]; 135 -> 139[label="",style="dashed", color="magenta", weight=3]; 134[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 xuu42",fontsize=16,color="burlywood",shape="triangle"];4386[label="xuu42/False",fontsize=10,color="white",style="solid",shape="box"];134 -> 4386[label="",style="solid", color="burlywood", weight=9]; 4386 -> 140[label="",style="solid", color="burlywood", weight=3]; 4387[label="xuu42/True",fontsize=10,color="white",style="solid",shape="box"];134 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 141[label="",style="solid", color="burlywood", weight=3]; 143 -> 83[label="",style="dashed", color="red", weight=0]; 143[label="compare2 (Right xuu311000) (Left xuu600) False == LT",fontsize=16,color="magenta"];143 -> 146[label="",style="dashed", color="magenta", weight=3]; 143 -> 147[label="",style="dashed", color="magenta", weight=3]; 142[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 xuu43",fontsize=16,color="burlywood",shape="triangle"];4388[label="xuu43/False",fontsize=10,color="white",style="solid",shape="box"];142 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 148[label="",style="solid", color="burlywood", weight=3]; 4389[label="xuu43/True",fontsize=10,color="white",style="solid",shape="box"];142 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 149[label="",style="solid", color="burlywood", weight=3]; 273[label="xuu31101",fontsize=16,color="green",shape="box"];274[label="xuu64",fontsize=16,color="green",shape="box"];275[label="xuu62",fontsize=16,color="green",shape="box"];276 -> 83[label="",style="dashed", color="red", weight=0]; 276[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];276 -> 284[label="",style="dashed", color="magenta", weight=3]; 276 -> 285[label="",style="dashed", color="magenta", weight=3]; 277[label="xuu63",fontsize=16,color="green",shape="box"];278[label="xuu61",fontsize=16,color="green",shape="box"];279[label="xuu311000",fontsize=16,color="green",shape="box"];280[label="xuu600",fontsize=16,color="green",shape="box"];272[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 xuu54",fontsize=16,color="burlywood",shape="triangle"];4390[label="xuu54/False",fontsize=10,color="white",style="solid",shape="box"];272 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 286[label="",style="solid", color="burlywood", weight=3]; 4391[label="xuu54/True",fontsize=10,color="white",style="solid",shape="box"];272 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 287[label="",style="solid", color="burlywood", weight=3]; 230[label="LT",fontsize=16,color="green",shape="box"];231 -> 2167[label="",style="dashed", color="red", weight=0]; 231[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];231 -> 2168[label="",style="dashed", color="magenta", weight=3]; 231 -> 2169[label="",style="dashed", color="magenta", weight=3]; 231 -> 2170[label="",style="dashed", color="magenta", weight=3]; 83[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4392[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];83 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 120[label="",style="solid", color="burlywood", weight=3]; 4393[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];83 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 121[label="",style="solid", color="burlywood", weight=3]; 4394[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];83 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 122[label="",style="solid", color="burlywood", weight=3]; 232[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];232 -> 245[label="",style="solid", color="black", weight=3]; 233[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];233 -> 246[label="",style="solid", color="black", weight=3]; 138[label="LT",fontsize=16,color="green",shape="box"];139 -> 2167[label="",style="dashed", color="red", weight=0]; 139[label="compare2 (Left xuu311000) (Right xuu600) False",fontsize=16,color="magenta"];139 -> 2171[label="",style="dashed", color="magenta", weight=3]; 139 -> 2172[label="",style="dashed", color="magenta", weight=3]; 139 -> 2173[label="",style="dashed", color="magenta", weight=3]; 140[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];140 -> 151[label="",style="solid", color="black", weight=3]; 141[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];141 -> 152[label="",style="solid", color="black", weight=3]; 146[label="LT",fontsize=16,color="green",shape="box"];147 -> 2167[label="",style="dashed", color="red", weight=0]; 147[label="compare2 (Right xuu311000) (Left xuu600) False",fontsize=16,color="magenta"];147 -> 2174[label="",style="dashed", color="magenta", weight=3]; 147 -> 2175[label="",style="dashed", color="magenta", weight=3]; 147 -> 2176[label="",style="dashed", color="magenta", weight=3]; 148[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];148 -> 235[label="",style="solid", color="black", weight=3]; 149[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];149 -> 236[label="",style="solid", color="black", weight=3]; 284[label="LT",fontsize=16,color="green",shape="box"];285 -> 2167[label="",style="dashed", color="red", weight=0]; 285[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];285 -> 2177[label="",style="dashed", color="magenta", weight=3]; 285 -> 2178[label="",style="dashed", color="magenta", weight=3]; 285 -> 2179[label="",style="dashed", color="magenta", weight=3]; 286[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 False",fontsize=16,color="black",shape="box"];286 -> 323[label="",style="solid", color="black", weight=3]; 287[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];287 -> 324[label="",style="solid", color="black", weight=3]; 2168[label="Left xuu600",fontsize=16,color="green",shape="box"];2169[label="Left xuu311000",fontsize=16,color="green",shape="box"];2170[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4395[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 2205[label="",style="solid", color="blue", weight=3]; 4396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 2206[label="",style="solid", color="blue", weight=3]; 4397[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 2207[label="",style="solid", color="blue", weight=3]; 4398[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 2208[label="",style="solid", color="blue", weight=3]; 4399[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 2209[label="",style="solid", color="blue", weight=3]; 4400[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 2210[label="",style="solid", color="blue", weight=3]; 4401[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2211[label="",style="solid", color="blue", weight=3]; 4402[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2212[label="",style="solid", color="blue", weight=3]; 4403[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2213[label="",style="solid", color="blue", weight=3]; 4404[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2214[label="",style="solid", color="blue", weight=3]; 4405[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2215[label="",style="solid", color="blue", weight=3]; 4406[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2216[label="",style="solid", color="blue", weight=3]; 4407[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2217[label="",style="solid", color="blue", weight=3]; 4408[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2218[label="",style="solid", color="blue", weight=3]; 2167[label="compare2 xuu500 xuu510 xuu134",fontsize=16,color="burlywood",shape="triangle"];4409[label="xuu134/False",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4409[label="",style="solid", color="burlywood", weight=9]; 4409 -> 2219[label="",style="solid", color="burlywood", weight=3]; 4410[label="xuu134/True",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4410[label="",style="solid", color="burlywood", weight=9]; 4410 -> 2220[label="",style="solid", color="burlywood", weight=3]; 120[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];4411[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];120 -> 4411[label="",style="solid", color="burlywood", weight=9]; 4411 -> 197[label="",style="solid", color="burlywood", weight=3]; 4412[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];120 -> 4412[label="",style="solid", color="burlywood", weight=9]; 4412 -> 198[label="",style="solid", color="burlywood", weight=3]; 4413[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];120 -> 4413[label="",style="solid", color="burlywood", weight=9]; 4413 -> 199[label="",style="solid", color="burlywood", weight=3]; 121[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];4414[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];121 -> 4414[label="",style="solid", color="burlywood", weight=9]; 4414 -> 200[label="",style="solid", color="burlywood", weight=3]; 4415[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];121 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 201[label="",style="solid", color="burlywood", weight=3]; 4416[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];121 -> 4416[label="",style="solid", color="burlywood", weight=9]; 4416 -> 202[label="",style="solid", color="burlywood", weight=3]; 122[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];4417[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];122 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 203[label="",style="solid", color="burlywood", weight=3]; 4418[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];122 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 204[label="",style="solid", color="burlywood", weight=3]; 4419[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];122 -> 4419[label="",style="solid", color="burlywood", weight=9]; 4419 -> 205[label="",style="solid", color="burlywood", weight=3]; 245 -> 316[label="",style="dashed", color="red", weight=0]; 245[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 (Left xuu22 > Left xuu17)",fontsize=16,color="magenta"];245 -> 317[label="",style="dashed", color="magenta", weight=3]; 246 -> 265[label="",style="dashed", color="red", weight=0]; 246[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Left xuu22) xuu23) xuu21",fontsize=16,color="magenta"];246 -> 266[label="",style="dashed", color="magenta", weight=3]; 246 -> 267[label="",style="dashed", color="magenta", weight=3]; 246 -> 268[label="",style="dashed", color="magenta", weight=3]; 246 -> 269[label="",style="dashed", color="magenta", weight=3]; 2171[label="Right xuu600",fontsize=16,color="green",shape="box"];2172[label="Left xuu311000",fontsize=16,color="green",shape="box"];2173[label="False",fontsize=16,color="green",shape="box"];151 -> 349[label="",style="dashed", color="red", weight=0]; 151[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (Left xuu311000 > Right xuu600)",fontsize=16,color="magenta"];151 -> 350[label="",style="dashed", color="magenta", weight=3]; 152 -> 239[label="",style="dashed", color="red", weight=0]; 152[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Left xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];152 -> 240[label="",style="dashed", color="magenta", weight=3]; 2174[label="Left xuu600",fontsize=16,color="green",shape="box"];2175[label="Right xuu311000",fontsize=16,color="green",shape="box"];2176[label="False",fontsize=16,color="green",shape="box"];235 -> 364[label="",style="dashed", color="red", weight=0]; 235[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (Right xuu311000 > Left xuu600)",fontsize=16,color="magenta"];235 -> 365[label="",style="dashed", color="magenta", weight=3]; 236 -> 265[label="",style="dashed", color="red", weight=0]; 236[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Right xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];236 -> 270[label="",style="dashed", color="magenta", weight=3]; 2177[label="Right xuu600",fontsize=16,color="green",shape="box"];2178[label="Right xuu311000",fontsize=16,color="green",shape="box"];2179[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4420[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2221[label="",style="solid", color="blue", weight=3]; 4421[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2222[label="",style="solid", color="blue", weight=3]; 4422[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2223[label="",style="solid", color="blue", weight=3]; 4423[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2224[label="",style="solid", color="blue", weight=3]; 4424[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2225[label="",style="solid", color="blue", weight=3]; 4425[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2226[label="",style="solid", color="blue", weight=3]; 4426[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2227[label="",style="solid", color="blue", weight=3]; 4427[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2228[label="",style="solid", color="blue", weight=3]; 4428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2229[label="",style="solid", color="blue", weight=3]; 4429[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2230[label="",style="solid", color="blue", weight=3]; 4430[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2231[label="",style="solid", color="blue", weight=3]; 4431[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2232[label="",style="solid", color="blue", weight=3]; 4432[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2233[label="",style="solid", color="blue", weight=3]; 4433[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2234[label="",style="solid", color="blue", weight=3]; 323 -> 402[label="",style="dashed", color="red", weight=0]; 323[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 (Right xuu39 > Right xuu34)",fontsize=16,color="magenta"];323 -> 403[label="",style="dashed", color="magenta", weight=3]; 324 -> 239[label="",style="dashed", color="red", weight=0]; 324[label="FiniteMap.mkBalBranch (Right xuu34) xuu35 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu37 (Right xuu39) xuu40) xuu38",fontsize=16,color="magenta"];324 -> 353[label="",style="dashed", color="magenta", weight=3]; 324 -> 354[label="",style="dashed", color="magenta", weight=3]; 324 -> 355[label="",style="dashed", color="magenta", weight=3]; 324 -> 356[label="",style="dashed", color="magenta", weight=3]; 2205[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4434[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4434[label="",style="solid", color="burlywood", weight=9]; 4434 -> 2275[label="",style="solid", color="burlywood", weight=3]; 4435[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4435[label="",style="solid", color="burlywood", weight=9]; 4435 -> 2276[label="",style="solid", color="burlywood", weight=3]; 2206[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4436[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2206 -> 4436[label="",style="solid", color="burlywood", weight=9]; 4436 -> 2277[label="",style="solid", color="burlywood", weight=3]; 4437[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];2206 -> 4437[label="",style="solid", color="burlywood", weight=9]; 4437 -> 2278[label="",style="solid", color="burlywood", weight=3]; 2207[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2207 -> 2279[label="",style="solid", color="black", weight=3]; 2208[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4438[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];2208 -> 4438[label="",style="solid", color="burlywood", weight=9]; 4438 -> 2280[label="",style="solid", color="burlywood", weight=3]; 4439[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];2208 -> 4439[label="",style="solid", color="burlywood", weight=9]; 4439 -> 2281[label="",style="solid", color="burlywood", weight=3]; 2209[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4440[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4440[label="",style="solid", color="burlywood", weight=9]; 4440 -> 2282[label="",style="solid", color="burlywood", weight=3]; 2210 -> 83[label="",style="dashed", color="red", weight=0]; 2210[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2211[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4441[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];2211 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 2283[label="",style="solid", color="burlywood", weight=3]; 2212[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4442[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 2284[label="",style="solid", color="burlywood", weight=3]; 2213[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4443[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2213 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 2285[label="",style="solid", color="burlywood", weight=3]; 2214[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4444[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 2286[label="",style="solid", color="burlywood", weight=3]; 2215[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2215 -> 2287[label="",style="solid", color="black", weight=3]; 2216[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2216 -> 2288[label="",style="solid", color="black", weight=3]; 2217[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4445[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2217 -> 4445[label="",style="solid", color="burlywood", weight=9]; 4445 -> 2289[label="",style="solid", color="burlywood", weight=3]; 4446[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2217 -> 4446[label="",style="solid", color="burlywood", weight=9]; 4446 -> 2290[label="",style="solid", color="burlywood", weight=3]; 2218[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2218 -> 2291[label="",style="solid", color="black", weight=3]; 2219[label="compare2 xuu500 xuu510 False",fontsize=16,color="black",shape="box"];2219 -> 2292[label="",style="solid", color="black", weight=3]; 2220[label="compare2 xuu500 xuu510 True",fontsize=16,color="black",shape="box"];2220 -> 2293[label="",style="solid", color="black", weight=3]; 197[label="LT == LT",fontsize=16,color="black",shape="box"];197 -> 307[label="",style="solid", color="black", weight=3]; 198[label="LT == EQ",fontsize=16,color="black",shape="box"];198 -> 308[label="",style="solid", color="black", weight=3]; 199[label="LT == GT",fontsize=16,color="black",shape="box"];199 -> 309[label="",style="solid", color="black", weight=3]; 200[label="EQ == LT",fontsize=16,color="black",shape="box"];200 -> 310[label="",style="solid", color="black", weight=3]; 201[label="EQ == EQ",fontsize=16,color="black",shape="box"];201 -> 311[label="",style="solid", color="black", weight=3]; 202[label="EQ == GT",fontsize=16,color="black",shape="box"];202 -> 312[label="",style="solid", color="black", weight=3]; 203[label="GT == LT",fontsize=16,color="black",shape="box"];203 -> 313[label="",style="solid", color="black", weight=3]; 204[label="GT == EQ",fontsize=16,color="black",shape="box"];204 -> 314[label="",style="solid", color="black", weight=3]; 205[label="GT == GT",fontsize=16,color="black",shape="box"];205 -> 315[label="",style="solid", color="black", weight=3]; 317[label="Left xuu22 > Left xuu17",fontsize=16,color="black",shape="box"];317 -> 341[label="",style="solid", color="black", weight=3]; 316[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu55",fontsize=16,color="burlywood",shape="triangle"];4447[label="xuu55/False",fontsize=10,color="white",style="solid",shape="box"];316 -> 4447[label="",style="solid", color="burlywood", weight=9]; 4447 -> 342[label="",style="solid", color="burlywood", weight=3]; 4448[label="xuu55/True",fontsize=10,color="white",style="solid",shape="box"];316 -> 4448[label="",style="solid", color="burlywood", weight=9]; 4448 -> 343[label="",style="solid", color="burlywood", weight=3]; 266[label="xuu18",fontsize=16,color="green",shape="box"];267 -> 35[label="",style="dashed", color="red", weight=0]; 267[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Left xuu22) xuu23",fontsize=16,color="magenta"];267 -> 344[label="",style="dashed", color="magenta", weight=3]; 267 -> 345[label="",style="dashed", color="magenta", weight=3]; 267 -> 346[label="",style="dashed", color="magenta", weight=3]; 268[label="xuu21",fontsize=16,color="green",shape="box"];269[label="xuu17",fontsize=16,color="green",shape="box"];265[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="black",shape="triangle"];265 -> 347[label="",style="solid", color="black", weight=3]; 350[label="Left xuu311000 > Right xuu600",fontsize=16,color="black",shape="box"];350 -> 357[label="",style="solid", color="black", weight=3]; 349[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 xuu63",fontsize=16,color="burlywood",shape="triangle"];4449[label="xuu63/False",fontsize=10,color="white",style="solid",shape="box"];349 -> 4449[label="",style="solid", color="burlywood", weight=9]; 4449 -> 358[label="",style="solid", color="burlywood", weight=3]; 4450[label="xuu63/True",fontsize=10,color="white",style="solid",shape="box"];349 -> 4450[label="",style="solid", color="burlywood", weight=9]; 4450 -> 359[label="",style="solid", color="burlywood", weight=3]; 240 -> 35[label="",style="dashed", color="red", weight=0]; 240[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Left xuu311000) xuu31101",fontsize=16,color="magenta"];240 -> 360[label="",style="dashed", color="magenta", weight=3]; 240 -> 361[label="",style="dashed", color="magenta", weight=3]; 239[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="black",shape="triangle"];239 -> 362[label="",style="solid", color="black", weight=3]; 365[label="Right xuu311000 > Left xuu600",fontsize=16,color="black",shape="box"];365 -> 367[label="",style="solid", color="black", weight=3]; 364[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 xuu64",fontsize=16,color="burlywood",shape="triangle"];4451[label="xuu64/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 4451[label="",style="solid", color="burlywood", weight=9]; 4451 -> 368[label="",style="solid", color="burlywood", weight=3]; 4452[label="xuu64/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 4452[label="",style="solid", color="burlywood", weight=9]; 4452 -> 369[label="",style="solid", color="burlywood", weight=3]; 270 -> 35[label="",style="dashed", color="red", weight=0]; 270[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Right xuu311000) xuu31101",fontsize=16,color="magenta"];270 -> 370[label="",style="dashed", color="magenta", weight=3]; 270 -> 371[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2205[label="",style="dashed", color="red", weight=0]; 2221[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2221 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2206[label="",style="dashed", color="red", weight=0]; 2222[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2222 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2207[label="",style="dashed", color="red", weight=0]; 2223[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2223 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2208[label="",style="dashed", color="red", weight=0]; 2224[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2224 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2209[label="",style="dashed", color="red", weight=0]; 2225[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2225 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2226 -> 83[label="",style="dashed", color="red", weight=0]; 2226[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2226 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2211[label="",style="dashed", color="red", weight=0]; 2227[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2227 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2212[label="",style="dashed", color="red", weight=0]; 2228[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2228 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2213[label="",style="dashed", color="red", weight=0]; 2229[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2229 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2214[label="",style="dashed", color="red", weight=0]; 2230[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2230 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2215[label="",style="dashed", color="red", weight=0]; 2231[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2231 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2216[label="",style="dashed", color="red", weight=0]; 2232[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2232 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2217[label="",style="dashed", color="red", weight=0]; 2233[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2233 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2218[label="",style="dashed", color="red", weight=0]; 2234[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2234 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2321[label="",style="dashed", color="magenta", weight=3]; 403[label="Right xuu39 > Right xuu34",fontsize=16,color="black",shape="box"];403 -> 405[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 xuu65",fontsize=16,color="burlywood",shape="triangle"];4453[label="xuu65/False",fontsize=10,color="white",style="solid",shape="box"];402 -> 4453[label="",style="solid", color="burlywood", weight=9]; 4453 -> 406[label="",style="solid", color="burlywood", weight=3]; 4454[label="xuu65/True",fontsize=10,color="white",style="solid",shape="box"];402 -> 4454[label="",style="solid", color="burlywood", weight=9]; 4454 -> 407[label="",style="solid", color="burlywood", weight=3]; 353[label="xuu35",fontsize=16,color="green",shape="box"];354[label="xuu38",fontsize=16,color="green",shape="box"];355 -> 35[label="",style="dashed", color="red", weight=0]; 355[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu37 (Right xuu39) xuu40",fontsize=16,color="magenta"];355 -> 408[label="",style="dashed", color="magenta", weight=3]; 355 -> 409[label="",style="dashed", color="magenta", weight=3]; 355 -> 410[label="",style="dashed", color="magenta", weight=3]; 356[label="xuu34",fontsize=16,color="green",shape="box"];2275[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];4455[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4455[label="",style="solid", color="burlywood", weight=9]; 4455 -> 2352[label="",style="solid", color="burlywood", weight=3]; 4456[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4456[label="",style="solid", color="burlywood", weight=9]; 4456 -> 2353[label="",style="solid", color="burlywood", weight=3]; 2276[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4457[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2276 -> 4457[label="",style="solid", color="burlywood", weight=9]; 4457 -> 2354[label="",style="solid", color="burlywood", weight=3]; 4458[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2276 -> 4458[label="",style="solid", color="burlywood", weight=9]; 4458 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2277[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4459[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2277 -> 4459[label="",style="solid", color="burlywood", weight=9]; 4459 -> 2356[label="",style="solid", color="burlywood", weight=3]; 4460[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2277 -> 4460[label="",style="solid", color="burlywood", weight=9]; 4460 -> 2357[label="",style="solid", color="burlywood", weight=3]; 2278[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];4461[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 2358[label="",style="solid", color="burlywood", weight=3]; 4462[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4462[label="",style="solid", color="burlywood", weight=9]; 4462 -> 2359[label="",style="solid", color="burlywood", weight=3]; 2279[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4463[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4463[label="",style="solid", color="burlywood", weight=9]; 4463 -> 2360[label="",style="solid", color="burlywood", weight=3]; 2280[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];4464[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4464[label="",style="solid", color="burlywood", weight=9]; 4464 -> 2361[label="",style="solid", color="burlywood", weight=3]; 4465[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 2362[label="",style="solid", color="burlywood", weight=3]; 2281[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];4466[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 2363[label="",style="solid", color="burlywood", weight=3]; 4467[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 2364[label="",style="solid", color="burlywood", weight=3]; 2282[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];4468[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 2365[label="",style="solid", color="burlywood", weight=3]; 2283[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];4469[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 2366[label="",style="solid", color="burlywood", weight=3]; 2284[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4470[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 2367[label="",style="solid", color="burlywood", weight=3]; 2285[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4471[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 2368[label="",style="solid", color="burlywood", weight=3]; 2286[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];4472[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];2286 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2369[label="",style="solid", color="burlywood", weight=3]; 2287[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];4473[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2287 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2370[label="",style="solid", color="burlywood", weight=3]; 4474[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2287 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2371[label="",style="solid", color="burlywood", weight=3]; 2288[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4475[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2288 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2372[label="",style="solid", color="burlywood", weight=3]; 2289[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4476[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2289 -> 4476[label="",style="solid", color="burlywood", weight=9]; 4476 -> 2373[label="",style="solid", color="burlywood", weight=3]; 4477[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2289 -> 4477[label="",style="solid", color="burlywood", weight=9]; 4477 -> 2374[label="",style="solid", color="burlywood", weight=3]; 2290[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4478[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4478[label="",style="solid", color="burlywood", weight=9]; 4478 -> 2375[label="",style="solid", color="burlywood", weight=3]; 4479[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4479[label="",style="solid", color="burlywood", weight=9]; 4479 -> 2376[label="",style="solid", color="burlywood", weight=3]; 2291[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4480[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4480[label="",style="solid", color="burlywood", weight=9]; 4480 -> 2377[label="",style="solid", color="burlywood", weight=3]; 2292[label="compare1 xuu500 xuu510 (xuu500 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4481[label="xuu500/Left xuu5000",fontsize=10,color="white",style="solid",shape="box"];2292 -> 4481[label="",style="solid", color="burlywood", weight=9]; 4481 -> 2378[label="",style="solid", color="burlywood", weight=3]; 4482[label="xuu500/Right xuu5000",fontsize=10,color="white",style="solid",shape="box"];2292 -> 4482[label="",style="solid", color="burlywood", weight=9]; 4482 -> 2379[label="",style="solid", color="burlywood", weight=3]; 2293[label="EQ",fontsize=16,color="green",shape="box"];307[label="True",fontsize=16,color="green",shape="box"];308[label="False",fontsize=16,color="green",shape="box"];309[label="False",fontsize=16,color="green",shape="box"];310[label="False",fontsize=16,color="green",shape="box"];311[label="True",fontsize=16,color="green",shape="box"];312[label="False",fontsize=16,color="green",shape="box"];313[label="False",fontsize=16,color="green",shape="box"];314[label="False",fontsize=16,color="green",shape="box"];315[label="True",fontsize=16,color="green",shape="box"];341 -> 83[label="",style="dashed", color="red", weight=0]; 341[label="compare (Left xuu22) (Left xuu17) == GT",fontsize=16,color="magenta"];341 -> 438[label="",style="dashed", color="magenta", weight=3]; 341 -> 439[label="",style="dashed", color="magenta", weight=3]; 342[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];342 -> 440[label="",style="solid", color="black", weight=3]; 343[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];343 -> 441[label="",style="solid", color="black", weight=3]; 344[label="xuu23",fontsize=16,color="green",shape="box"];345[label="xuu20",fontsize=16,color="green",shape="box"];346[label="Left xuu22",fontsize=16,color="green",shape="box"];347[label="FiniteMap.mkBalBranch6 (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="black",shape="box"];347 -> 442[label="",style="solid", color="black", weight=3]; 357 -> 83[label="",style="dashed", color="red", weight=0]; 357[label="compare (Left xuu311000) (Right xuu600) == GT",fontsize=16,color="magenta"];357 -> 443[label="",style="dashed", color="magenta", weight=3]; 357 -> 444[label="",style="dashed", color="magenta", weight=3]; 358[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];358 -> 445[label="",style="solid", color="black", weight=3]; 359[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];359 -> 446[label="",style="solid", color="black", weight=3]; 360[label="xuu63",fontsize=16,color="green",shape="box"];361[label="Left xuu311000",fontsize=16,color="green",shape="box"];362[label="FiniteMap.mkBalBranch6 (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="black",shape="box"];362 -> 447[label="",style="solid", color="black", weight=3]; 367 -> 83[label="",style="dashed", color="red", weight=0]; 367[label="compare (Right xuu311000) (Left xuu600) == GT",fontsize=16,color="magenta"];367 -> 449[label="",style="dashed", color="magenta", weight=3]; 367 -> 450[label="",style="dashed", color="magenta", weight=3]; 368[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];368 -> 451[label="",style="solid", color="black", weight=3]; 369[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];369 -> 452[label="",style="solid", color="black", weight=3]; 370[label="xuu63",fontsize=16,color="green",shape="box"];371[label="Right xuu311000",fontsize=16,color="green",shape="box"];2294[label="xuu600",fontsize=16,color="green",shape="box"];2295[label="xuu311000",fontsize=16,color="green",shape="box"];2296[label="xuu600",fontsize=16,color="green",shape="box"];2297[label="xuu311000",fontsize=16,color="green",shape="box"];2298[label="xuu600",fontsize=16,color="green",shape="box"];2299[label="xuu311000",fontsize=16,color="green",shape="box"];2300[label="xuu600",fontsize=16,color="green",shape="box"];2301[label="xuu311000",fontsize=16,color="green",shape="box"];2302[label="xuu600",fontsize=16,color="green",shape="box"];2303[label="xuu311000",fontsize=16,color="green",shape="box"];2304[label="xuu600",fontsize=16,color="green",shape="box"];2305[label="xuu311000",fontsize=16,color="green",shape="box"];2306[label="xuu600",fontsize=16,color="green",shape="box"];2307[label="xuu311000",fontsize=16,color="green",shape="box"];2308[label="xuu600",fontsize=16,color="green",shape="box"];2309[label="xuu311000",fontsize=16,color="green",shape="box"];2310[label="xuu600",fontsize=16,color="green",shape="box"];2311[label="xuu311000",fontsize=16,color="green",shape="box"];2312[label="xuu600",fontsize=16,color="green",shape="box"];2313[label="xuu311000",fontsize=16,color="green",shape="box"];2314[label="xuu600",fontsize=16,color="green",shape="box"];2315[label="xuu311000",fontsize=16,color="green",shape="box"];2316[label="xuu600",fontsize=16,color="green",shape="box"];2317[label="xuu311000",fontsize=16,color="green",shape="box"];2318[label="xuu600",fontsize=16,color="green",shape="box"];2319[label="xuu311000",fontsize=16,color="green",shape="box"];2320[label="xuu600",fontsize=16,color="green",shape="box"];2321[label="xuu311000",fontsize=16,color="green",shape="box"];405 -> 83[label="",style="dashed", color="red", weight=0]; 405[label="compare (Right xuu39) (Right xuu34) == GT",fontsize=16,color="magenta"];405 -> 454[label="",style="dashed", color="magenta", weight=3]; 405 -> 455[label="",style="dashed", color="magenta", weight=3]; 406[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 False",fontsize=16,color="black",shape="box"];406 -> 456[label="",style="solid", color="black", weight=3]; 407[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];407 -> 457[label="",style="solid", color="black", weight=3]; 408[label="xuu40",fontsize=16,color="green",shape="box"];409[label="xuu37",fontsize=16,color="green",shape="box"];410[label="Right xuu39",fontsize=16,color="green",shape="box"];2352[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2352 -> 2448[label="",style="solid", color="black", weight=3]; 2353[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];2353 -> 2449[label="",style="solid", color="black", weight=3]; 2354[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];2354 -> 2450[label="",style="solid", color="black", weight=3]; 2355[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];2355 -> 2451[label="",style="solid", color="black", weight=3]; 2356[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2356 -> 2452[label="",style="solid", color="black", weight=3]; 2357[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];2357 -> 2453[label="",style="solid", color="black", weight=3]; 2358[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2358 -> 2454[label="",style="solid", color="black", weight=3]; 2359[label="[] == []",fontsize=16,color="black",shape="box"];2359 -> 2455[label="",style="solid", color="black", weight=3]; 2360[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4483[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4483[label="",style="solid", color="burlywood", weight=9]; 4483 -> 2456[label="",style="solid", color="burlywood", weight=3]; 2361[label="False == False",fontsize=16,color="black",shape="box"];2361 -> 2457[label="",style="solid", color="black", weight=3]; 2362[label="False == True",fontsize=16,color="black",shape="box"];2362 -> 2458[label="",style="solid", color="black", weight=3]; 2363[label="True == False",fontsize=16,color="black",shape="box"];2363 -> 2459[label="",style="solid", color="black", weight=3]; 2364[label="True == True",fontsize=16,color="black",shape="box"];2364 -> 2460[label="",style="solid", color="black", weight=3]; 2365[label="() == ()",fontsize=16,color="black",shape="box"];2365 -> 2461[label="",style="solid", color="black", weight=3]; 2366[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];2366 -> 2462[label="",style="solid", color="black", weight=3]; 2367[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];2367 -> 2463[label="",style="solid", color="black", weight=3]; 2368[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];2368 -> 2464[label="",style="solid", color="black", weight=3]; 2369[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];2369 -> 2465[label="",style="solid", color="black", weight=3]; 2370[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4484[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2370 -> 4484[label="",style="solid", color="burlywood", weight=9]; 4484 -> 2466[label="",style="solid", color="burlywood", weight=3]; 4485[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2370 -> 4485[label="",style="solid", color="burlywood", weight=9]; 4485 -> 2467[label="",style="solid", color="burlywood", weight=3]; 2371[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4486[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2371 -> 4486[label="",style="solid", color="burlywood", weight=9]; 4486 -> 2468[label="",style="solid", color="burlywood", weight=3]; 4487[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2371 -> 4487[label="",style="solid", color="burlywood", weight=9]; 4487 -> 2469[label="",style="solid", color="burlywood", weight=3]; 2372[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4488[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2372 -> 4488[label="",style="solid", color="burlywood", weight=9]; 4488 -> 2470[label="",style="solid", color="burlywood", weight=3]; 2373[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2373 -> 2471[label="",style="solid", color="black", weight=3]; 2374[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2374 -> 2472[label="",style="solid", color="black", weight=3]; 2375[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2375 -> 2473[label="",style="solid", color="black", weight=3]; 2376[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2376 -> 2474[label="",style="solid", color="black", weight=3]; 2377[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4489[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2377 -> 4489[label="",style="solid", color="burlywood", weight=9]; 4489 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2378[label="compare1 (Left xuu5000) xuu510 (Left xuu5000 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4490[label="xuu510/Left xuu5100",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4490[label="",style="solid", color="burlywood", weight=9]; 4490 -> 2476[label="",style="solid", color="burlywood", weight=3]; 4491[label="xuu510/Right xuu5100",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4491[label="",style="solid", color="burlywood", weight=9]; 4491 -> 2477[label="",style="solid", color="burlywood", weight=3]; 2379[label="compare1 (Right xuu5000) xuu510 (Right xuu5000 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4492[label="xuu510/Left xuu5100",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 2478[label="",style="solid", color="burlywood", weight=3]; 4493[label="xuu510/Right xuu5100",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 2479[label="",style="solid", color="burlywood", weight=3]; 438[label="GT",fontsize=16,color="green",shape="box"];439[label="compare (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];439 -> 496[label="",style="solid", color="black", weight=3]; 440[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];440 -> 497[label="",style="solid", color="black", weight=3]; 441 -> 265[label="",style="dashed", color="red", weight=0]; 441[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Left xuu22) xuu23)",fontsize=16,color="magenta"];441 -> 498[label="",style="dashed", color="magenta", weight=3]; 441 -> 499[label="",style="dashed", color="magenta", weight=3]; 441 -> 500[label="",style="dashed", color="magenta", weight=3]; 441 -> 501[label="",style="dashed", color="magenta", weight=3]; 442 -> 616[label="",style="dashed", color="red", weight=0]; 442[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];442 -> 617[label="",style="dashed", color="magenta", weight=3]; 443[label="GT",fontsize=16,color="green",shape="box"];444[label="compare (Left xuu311000) (Right xuu600)",fontsize=16,color="black",shape="box"];444 -> 503[label="",style="solid", color="black", weight=3]; 445[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];445 -> 504[label="",style="solid", color="black", weight=3]; 446 -> 239[label="",style="dashed", color="red", weight=0]; 446[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Left xuu311000) xuu31101)",fontsize=16,color="magenta"];446 -> 505[label="",style="dashed", color="magenta", weight=3]; 446 -> 506[label="",style="dashed", color="magenta", weight=3]; 447 -> 626[label="",style="dashed", color="red", weight=0]; 447[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];447 -> 627[label="",style="dashed", color="magenta", weight=3]; 449[label="GT",fontsize=16,color="green",shape="box"];450[label="compare (Right xuu311000) (Left xuu600)",fontsize=16,color="black",shape="box"];450 -> 509[label="",style="solid", color="black", weight=3]; 451[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];451 -> 510[label="",style="solid", color="black", weight=3]; 452 -> 265[label="",style="dashed", color="red", weight=0]; 452[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Right xuu311000) xuu31101)",fontsize=16,color="magenta"];452 -> 511[label="",style="dashed", color="magenta", weight=3]; 452 -> 512[label="",style="dashed", color="magenta", weight=3]; 454[label="GT",fontsize=16,color="green",shape="box"];455[label="compare (Right xuu39) (Right xuu34)",fontsize=16,color="black",shape="box"];455 -> 523[label="",style="solid", color="black", weight=3]; 456[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 otherwise",fontsize=16,color="black",shape="box"];456 -> 524[label="",style="solid", color="black", weight=3]; 457 -> 239[label="",style="dashed", color="red", weight=0]; 457[label="FiniteMap.mkBalBranch (Right xuu34) xuu35 xuu37 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 (Right xuu39) xuu40)",fontsize=16,color="magenta"];457 -> 525[label="",style="dashed", color="magenta", weight=3]; 457 -> 526[label="",style="dashed", color="magenta", weight=3]; 457 -> 527[label="",style="dashed", color="magenta", weight=3]; 457 -> 528[label="",style="dashed", color="magenta", weight=3]; 2448[label="True",fontsize=16,color="green",shape="box"];2449[label="False",fontsize=16,color="green",shape="box"];2450[label="False",fontsize=16,color="green",shape="box"];2451[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4494[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2512[label="",style="solid", color="blue", weight=3]; 4495[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2513[label="",style="solid", color="blue", weight=3]; 4496[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2514[label="",style="solid", color="blue", weight=3]; 4497[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 2515[label="",style="solid", color="blue", weight=3]; 4498[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 2516[label="",style="solid", color="blue", weight=3]; 4499[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 2517[label="",style="solid", color="blue", weight=3]; 4500[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 2518[label="",style="solid", color="blue", weight=3]; 4501[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 2519[label="",style="solid", color="blue", weight=3]; 4502[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 2520[label="",style="solid", color="blue", weight=3]; 4503[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 2521[label="",style="solid", color="blue", weight=3]; 4504[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 2522[label="",style="solid", color="blue", weight=3]; 4505[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 2523[label="",style="solid", color="blue", weight=3]; 4506[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 2524[label="",style="solid", color="blue", weight=3]; 4507[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 2525[label="",style="solid", color="blue", weight=3]; 2452 -> 2612[label="",style="dashed", color="red", weight=0]; 2452[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2452 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2453[label="False",fontsize=16,color="green",shape="box"];2454[label="False",fontsize=16,color="green",shape="box"];2455[label="True",fontsize=16,color="green",shape="box"];2456[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];2456 -> 2537[label="",style="solid", color="black", weight=3]; 2457[label="True",fontsize=16,color="green",shape="box"];2458[label="False",fontsize=16,color="green",shape="box"];2459[label="False",fontsize=16,color="green",shape="box"];2460[label="True",fontsize=16,color="green",shape="box"];2461[label="True",fontsize=16,color="green",shape="box"];2462 -> 2612[label="",style="dashed", color="red", weight=0]; 2462[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2462 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2287[label="",style="dashed", color="red", weight=0]; 2463[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];2463 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2612[label="",style="dashed", color="red", weight=0]; 2464[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2464 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2612[label="",style="dashed", color="red", weight=0]; 2465[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2465 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2466[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4508[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4508[label="",style="solid", color="burlywood", weight=9]; 4508 -> 2540[label="",style="solid", color="burlywood", weight=3]; 4509[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4509[label="",style="solid", color="burlywood", weight=9]; 4509 -> 2541[label="",style="solid", color="burlywood", weight=3]; 2467[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4510[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 2542[label="",style="solid", color="burlywood", weight=3]; 4511[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 2543[label="",style="solid", color="burlywood", weight=3]; 2468[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4512[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2468 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 2544[label="",style="solid", color="burlywood", weight=3]; 4513[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2468 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 2545[label="",style="solid", color="burlywood", weight=3]; 2469[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4514[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2469 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 2546[label="",style="solid", color="burlywood", weight=3]; 4515[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2469 -> 4515[label="",style="solid", color="burlywood", weight=9]; 4515 -> 2547[label="",style="solid", color="burlywood", weight=3]; 2470[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2470 -> 2548[label="",style="solid", color="black", weight=3]; 2471[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4516[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2549[label="",style="solid", color="blue", weight=3]; 4517[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2550[label="",style="solid", color="blue", weight=3]; 4518[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2551[label="",style="solid", color="blue", weight=3]; 4519[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2552[label="",style="solid", color="blue", weight=3]; 4520[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2553[label="",style="solid", color="blue", weight=3]; 4521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2554[label="",style="solid", color="blue", weight=3]; 4522[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2555[label="",style="solid", color="blue", weight=3]; 4523[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2556[label="",style="solid", color="blue", weight=3]; 4524[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2557[label="",style="solid", color="blue", weight=3]; 4525[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2558[label="",style="solid", color="blue", weight=3]; 4526[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2559[label="",style="solid", color="blue", weight=3]; 4527[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2560[label="",style="solid", color="blue", weight=3]; 4528[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2561[label="",style="solid", color="blue", weight=3]; 4529[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2562[label="",style="solid", color="blue", weight=3]; 2472[label="False",fontsize=16,color="green",shape="box"];2473[label="False",fontsize=16,color="green",shape="box"];2474[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4530[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2563[label="",style="solid", color="blue", weight=3]; 4531[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2564[label="",style="solid", color="blue", weight=3]; 4532[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 2565[label="",style="solid", color="blue", weight=3]; 4533[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2566[label="",style="solid", color="blue", weight=3]; 4534[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2567[label="",style="solid", color="blue", weight=3]; 4535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2568[label="",style="solid", color="blue", weight=3]; 4536[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2569[label="",style="solid", color="blue", weight=3]; 4537[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2570[label="",style="solid", color="blue", weight=3]; 4538[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2571[label="",style="solid", color="blue", weight=3]; 4539[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2572[label="",style="solid", color="blue", weight=3]; 4540[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2573[label="",style="solid", color="blue", weight=3]; 4541[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2574[label="",style="solid", color="blue", weight=3]; 4542[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2575[label="",style="solid", color="blue", weight=3]; 4543[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2474 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2576[label="",style="solid", color="blue", weight=3]; 2475[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2475 -> 2577[label="",style="solid", color="black", weight=3]; 2476[label="compare1 (Left xuu5000) (Left xuu5100) (Left xuu5000 <= Left xuu5100)",fontsize=16,color="black",shape="box"];2476 -> 2578[label="",style="solid", color="black", weight=3]; 2477[label="compare1 (Left xuu5000) (Right xuu5100) (Left xuu5000 <= Right xuu5100)",fontsize=16,color="black",shape="box"];2477 -> 2579[label="",style="solid", color="black", weight=3]; 2478[label="compare1 (Right xuu5000) (Left xuu5100) (Right xuu5000 <= Left xuu5100)",fontsize=16,color="black",shape="box"];2478 -> 2580[label="",style="solid", color="black", weight=3]; 2479[label="compare1 (Right xuu5000) (Right xuu5100) (Right xuu5000 <= Right xuu5100)",fontsize=16,color="black",shape="box"];2479 -> 2581[label="",style="solid", color="black", weight=3]; 496[label="compare3 (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];496 -> 611[label="",style="solid", color="black", weight=3]; 497[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];497 -> 612[label="",style="solid", color="black", weight=3]; 498[label="xuu18",fontsize=16,color="green",shape="box"];499[label="xuu20",fontsize=16,color="green",shape="box"];500 -> 35[label="",style="dashed", color="red", weight=0]; 500[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Left xuu22) xuu23",fontsize=16,color="magenta"];500 -> 613[label="",style="dashed", color="magenta", weight=3]; 500 -> 614[label="",style="dashed", color="magenta", weight=3]; 500 -> 615[label="",style="dashed", color="magenta", weight=3]; 501[label="xuu17",fontsize=16,color="green",shape="box"];617[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];617 -> 619[label="",style="solid", color="black", weight=3]; 616[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu81",fontsize=16,color="burlywood",shape="triangle"];4544[label="xuu81/False",fontsize=10,color="white",style="solid",shape="box"];616 -> 4544[label="",style="solid", color="burlywood", weight=9]; 4544 -> 620[label="",style="solid", color="burlywood", weight=3]; 4545[label="xuu81/True",fontsize=10,color="white",style="solid",shape="box"];616 -> 4545[label="",style="solid", color="burlywood", weight=9]; 4545 -> 621[label="",style="solid", color="burlywood", weight=3]; 503[label="compare3 (Left xuu311000) (Right xuu600)",fontsize=16,color="black",shape="box"];503 -> 622[label="",style="solid", color="black", weight=3]; 504[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];504 -> 623[label="",style="solid", color="black", weight=3]; 505 -> 35[label="",style="dashed", color="red", weight=0]; 505[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Left xuu311000) xuu31101",fontsize=16,color="magenta"];505 -> 624[label="",style="dashed", color="magenta", weight=3]; 505 -> 625[label="",style="dashed", color="magenta", weight=3]; 506[label="xuu63",fontsize=16,color="green",shape="box"];627[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];627 -> 629[label="",style="solid", color="black", weight=3]; 626[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu82",fontsize=16,color="burlywood",shape="triangle"];4546[label="xuu82/False",fontsize=10,color="white",style="solid",shape="box"];626 -> 4546[label="",style="solid", color="burlywood", weight=9]; 4546 -> 630[label="",style="solid", color="burlywood", weight=3]; 4547[label="xuu82/True",fontsize=10,color="white",style="solid",shape="box"];626 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 631[label="",style="solid", color="burlywood", weight=3]; 509[label="compare3 (Right xuu311000) (Left xuu600)",fontsize=16,color="black",shape="box"];509 -> 632[label="",style="solid", color="black", weight=3]; 510[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];510 -> 633[label="",style="solid", color="black", weight=3]; 511[label="xuu63",fontsize=16,color="green",shape="box"];512 -> 35[label="",style="dashed", color="red", weight=0]; 512[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Right xuu311000) xuu31101",fontsize=16,color="magenta"];512 -> 634[label="",style="dashed", color="magenta", weight=3]; 512 -> 635[label="",style="dashed", color="magenta", weight=3]; 523[label="compare3 (Right xuu39) (Right xuu34)",fontsize=16,color="black",shape="box"];523 -> 652[label="",style="solid", color="black", weight=3]; 524[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];524 -> 653[label="",style="solid", color="black", weight=3]; 525[label="xuu35",fontsize=16,color="green",shape="box"];526 -> 35[label="",style="dashed", color="red", weight=0]; 526[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 (Right xuu39) xuu40",fontsize=16,color="magenta"];526 -> 654[label="",style="dashed", color="magenta", weight=3]; 526 -> 655[label="",style="dashed", color="magenta", weight=3]; 526 -> 656[label="",style="dashed", color="magenta", weight=3]; 527[label="xuu37",fontsize=16,color="green",shape="box"];528[label="xuu34",fontsize=16,color="green",shape="box"];2512 -> 2205[label="",style="dashed", color="red", weight=0]; 2512[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2512 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2206[label="",style="dashed", color="red", weight=0]; 2513[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2513 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2207[label="",style="dashed", color="red", weight=0]; 2514[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2514 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2208[label="",style="dashed", color="red", weight=0]; 2515[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2515 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2209[label="",style="dashed", color="red", weight=0]; 2516[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2516 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2517 -> 83[label="",style="dashed", color="red", weight=0]; 2517[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2517 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2211[label="",style="dashed", color="red", weight=0]; 2518[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2518 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2212[label="",style="dashed", color="red", weight=0]; 2519[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2519 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2213[label="",style="dashed", color="red", weight=0]; 2520[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2520 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2214[label="",style="dashed", color="red", weight=0]; 2521[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2521 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2215[label="",style="dashed", color="red", weight=0]; 2522[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2522 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2216[label="",style="dashed", color="red", weight=0]; 2523[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2523 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2217[label="",style="dashed", color="red", weight=0]; 2524[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2524 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2218[label="",style="dashed", color="red", weight=0]; 2525[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2525 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2206[label="",style="dashed", color="red", weight=0]; 2613[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2613 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2614[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4548[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2627[label="",style="solid", color="blue", weight=3]; 4549[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2628[label="",style="solid", color="blue", weight=3]; 4550[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2629[label="",style="solid", color="blue", weight=3]; 4551[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 2630[label="",style="solid", color="blue", weight=3]; 4552[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 2631[label="",style="solid", color="blue", weight=3]; 4553[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 2632[label="",style="solid", color="blue", weight=3]; 4554[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 2633[label="",style="solid", color="blue", weight=3]; 4555[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 2634[label="",style="solid", color="blue", weight=3]; 4556[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 2635[label="",style="solid", color="blue", weight=3]; 4557[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 2636[label="",style="solid", color="blue", weight=3]; 4558[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2637[label="",style="solid", color="blue", weight=3]; 4559[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2638[label="",style="solid", color="blue", weight=3]; 4560[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 2639[label="",style="solid", color="blue", weight=3]; 4561[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 2640[label="",style="solid", color="blue", weight=3]; 2612[label="xuu147 && xuu148",fontsize=16,color="burlywood",shape="triangle"];4562[label="xuu147/False",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 2641[label="",style="solid", color="burlywood", weight=3]; 4563[label="xuu147/True",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 2642[label="",style="solid", color="burlywood", weight=3]; 2537[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4564[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 2643[label="",style="solid", color="burlywood", weight=3]; 4565[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 2644[label="",style="solid", color="burlywood", weight=3]; 2615 -> 2612[label="",style="dashed", color="red", weight=0]; 2615[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2615 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2616[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4566[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 2647[label="",style="solid", color="blue", weight=3]; 4567[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 2648[label="",style="solid", color="blue", weight=3]; 4568[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 2649[label="",style="solid", color="blue", weight=3]; 4569[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 2650[label="",style="solid", color="blue", weight=3]; 4570[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 2651[label="",style="solid", color="blue", weight=3]; 4571[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 2652[label="",style="solid", color="blue", weight=3]; 4572[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 2653[label="",style="solid", color="blue", weight=3]; 4573[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 2654[label="",style="solid", color="blue", weight=3]; 4574[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 2655[label="",style="solid", color="blue", weight=3]; 4575[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 2656[label="",style="solid", color="blue", weight=3]; 4576[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 2657[label="",style="solid", color="blue", weight=3]; 4577[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 2658[label="",style="solid", color="blue", weight=3]; 4578[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 2659[label="",style="solid", color="blue", weight=3]; 4579[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 2660[label="",style="solid", color="blue", weight=3]; 2538[label="xuu6000",fontsize=16,color="green",shape="box"];2539[label="xuu3110000",fontsize=16,color="green",shape="box"];2617[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4580[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 2661[label="",style="solid", color="blue", weight=3]; 4581[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 2662[label="",style="solid", color="blue", weight=3]; 2618[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4582[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 2663[label="",style="solid", color="blue", weight=3]; 4583[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2664[label="",style="solid", color="blue", weight=3]; 2619[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4584[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2665[label="",style="solid", color="blue", weight=3]; 4585[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2666[label="",style="solid", color="blue", weight=3]; 4586[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 2667[label="",style="solid", color="blue", weight=3]; 4587[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 2668[label="",style="solid", color="blue", weight=3]; 4588[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 2669[label="",style="solid", color="blue", weight=3]; 4589[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 2670[label="",style="solid", color="blue", weight=3]; 4590[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2671[label="",style="solid", color="blue", weight=3]; 4591[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2672[label="",style="solid", color="blue", weight=3]; 4592[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2673[label="",style="solid", color="blue", weight=3]; 4593[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2674[label="",style="solid", color="blue", weight=3]; 4594[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2675[label="",style="solid", color="blue", weight=3]; 4595[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2676[label="",style="solid", color="blue", weight=3]; 4596[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2677[label="",style="solid", color="blue", weight=3]; 4597[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2678[label="",style="solid", color="blue", weight=3]; 2620[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4598[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2679[label="",style="solid", color="blue", weight=3]; 4599[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2680[label="",style="solid", color="blue", weight=3]; 4600[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2681[label="",style="solid", color="blue", weight=3]; 4601[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2682[label="",style="solid", color="blue", weight=3]; 4602[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2683[label="",style="solid", color="blue", weight=3]; 4603[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2684[label="",style="solid", color="blue", weight=3]; 4604[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2685[label="",style="solid", color="blue", weight=3]; 4605[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 2686[label="",style="solid", color="blue", weight=3]; 4606[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 2687[label="",style="solid", color="blue", weight=3]; 4607[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 2688[label="",style="solid", color="blue", weight=3]; 4608[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 2689[label="",style="solid", color="blue", weight=3]; 4609[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2690[label="",style="solid", color="blue", weight=3]; 4610[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 2691[label="",style="solid", color="blue", weight=3]; 4611[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 2692[label="",style="solid", color="blue", weight=3]; 2540[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4612[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 2693[label="",style="solid", color="burlywood", weight=3]; 4613[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 2694[label="",style="solid", color="burlywood", weight=3]; 2541[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];2541 -> 2695[label="",style="solid", color="black", weight=3]; 2542[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4614[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2542 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 2696[label="",style="solid", color="burlywood", weight=3]; 4615[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2542 -> 4615[label="",style="solid", color="burlywood", weight=9]; 4615 -> 2697[label="",style="solid", color="burlywood", weight=3]; 2543[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4616[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4616[label="",style="solid", color="burlywood", weight=9]; 4616 -> 2698[label="",style="solid", color="burlywood", weight=3]; 4617[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4617[label="",style="solid", color="burlywood", weight=9]; 4617 -> 2699[label="",style="solid", color="burlywood", weight=3]; 2544[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];2544 -> 2700[label="",style="solid", color="black", weight=3]; 2545[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4618[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2545 -> 4618[label="",style="solid", color="burlywood", weight=9]; 4618 -> 2701[label="",style="solid", color="burlywood", weight=3]; 4619[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2545 -> 4619[label="",style="solid", color="burlywood", weight=9]; 4619 -> 2702[label="",style="solid", color="burlywood", weight=3]; 2546[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4620[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2546 -> 4620[label="",style="solid", color="burlywood", weight=9]; 4620 -> 2703[label="",style="solid", color="burlywood", weight=3]; 4621[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2546 -> 4621[label="",style="solid", color="burlywood", weight=9]; 4621 -> 2704[label="",style="solid", color="burlywood", weight=3]; 2547[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4622[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4622[label="",style="solid", color="burlywood", weight=9]; 4622 -> 2705[label="",style="solid", color="burlywood", weight=3]; 4623[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4623[label="",style="solid", color="burlywood", weight=9]; 4623 -> 2706[label="",style="solid", color="burlywood", weight=3]; 2548 -> 2215[label="",style="dashed", color="red", weight=0]; 2548[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2548 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2205[label="",style="dashed", color="red", weight=0]; 2549[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2549 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2206[label="",style="dashed", color="red", weight=0]; 2550[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2550 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2207[label="",style="dashed", color="red", weight=0]; 2551[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2551 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2208[label="",style="dashed", color="red", weight=0]; 2552[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2552 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2209[label="",style="dashed", color="red", weight=0]; 2553[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2553 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2554 -> 83[label="",style="dashed", color="red", weight=0]; 2554[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2554 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2211[label="",style="dashed", color="red", weight=0]; 2555[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2555 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2212[label="",style="dashed", color="red", weight=0]; 2556[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2556 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2213[label="",style="dashed", color="red", weight=0]; 2557[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2557 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2214[label="",style="dashed", color="red", weight=0]; 2558[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2558 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2215[label="",style="dashed", color="red", weight=0]; 2559[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2559 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2216[label="",style="dashed", color="red", weight=0]; 2560[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2560 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2217[label="",style="dashed", color="red", weight=0]; 2561[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2561 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2218[label="",style="dashed", color="red", weight=0]; 2562[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2562 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2205[label="",style="dashed", color="red", weight=0]; 2563[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2563 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2206[label="",style="dashed", color="red", weight=0]; 2564[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2564 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2207[label="",style="dashed", color="red", weight=0]; 2565[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2565 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2208[label="",style="dashed", color="red", weight=0]; 2566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2566 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2209[label="",style="dashed", color="red", weight=0]; 2567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2567 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2568 -> 83[label="",style="dashed", color="red", weight=0]; 2568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2568 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2211[label="",style="dashed", color="red", weight=0]; 2569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2569 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2212[label="",style="dashed", color="red", weight=0]; 2570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2570 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2213[label="",style="dashed", color="red", weight=0]; 2571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2571 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2214[label="",style="dashed", color="red", weight=0]; 2572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2572 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2215[label="",style="dashed", color="red", weight=0]; 2573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2573 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2216[label="",style="dashed", color="red", weight=0]; 2574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2574 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2217[label="",style="dashed", color="red", weight=0]; 2575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2575 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2218[label="",style="dashed", color="red", weight=0]; 2576[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2576 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2215[label="",style="dashed", color="red", weight=0]; 2577[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2577 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2767[label="",style="dashed", color="red", weight=0]; 2578[label="compare1 (Left xuu5000) (Left xuu5100) (xuu5000 <= xuu5100)",fontsize=16,color="magenta"];2578 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2579[label="compare1 (Left xuu5000) (Right xuu5100) True",fontsize=16,color="black",shape="box"];2579 -> 2771[label="",style="solid", color="black", weight=3]; 2580[label="compare1 (Right xuu5000) (Left xuu5100) False",fontsize=16,color="black",shape="box"];2580 -> 2772[label="",style="solid", color="black", weight=3]; 2581 -> 2773[label="",style="dashed", color="red", weight=0]; 2581[label="compare1 (Right xuu5000) (Right xuu5100) (xuu5000 <= xuu5100)",fontsize=16,color="magenta"];2581 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2776[label="",style="dashed", color="magenta", weight=3]; 611 -> 2167[label="",style="dashed", color="red", weight=0]; 611[label="compare2 (Left xuu22) (Left xuu17) (Left xuu22 == Left xuu17)",fontsize=16,color="magenta"];611 -> 2192[label="",style="dashed", color="magenta", weight=3]; 611 -> 2193[label="",style="dashed", color="magenta", weight=3]; 611 -> 2194[label="",style="dashed", color="magenta", weight=3]; 612[label="FiniteMap.Branch (Left xuu22) (FiniteMap.addListToFM0 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];612 -> 865[label="",style="dashed", color="green", weight=3]; 613[label="xuu23",fontsize=16,color="green",shape="box"];614[label="xuu21",fontsize=16,color="green",shape="box"];615[label="Left xuu22",fontsize=16,color="green",shape="box"];619 -> 83[label="",style="dashed", color="red", weight=0]; 619[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];619 -> 866[label="",style="dashed", color="magenta", weight=3]; 619 -> 867[label="",style="dashed", color="magenta", weight=3]; 620[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];620 -> 868[label="",style="solid", color="black", weight=3]; 621[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];621 -> 869[label="",style="solid", color="black", weight=3]; 622 -> 2167[label="",style="dashed", color="red", weight=0]; 622[label="compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600)",fontsize=16,color="magenta"];622 -> 2195[label="",style="dashed", color="magenta", weight=3]; 622 -> 2196[label="",style="dashed", color="magenta", weight=3]; 622 -> 2197[label="",style="dashed", color="magenta", weight=3]; 623[label="FiniteMap.Branch (Left xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];623 -> 875[label="",style="dashed", color="green", weight=3]; 624[label="xuu64",fontsize=16,color="green",shape="box"];625[label="Left xuu311000",fontsize=16,color="green",shape="box"];629 -> 83[label="",style="dashed", color="red", weight=0]; 629[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];629 -> 876[label="",style="dashed", color="magenta", weight=3]; 629 -> 877[label="",style="dashed", color="magenta", weight=3]; 630[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];630 -> 878[label="",style="solid", color="black", weight=3]; 631[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];631 -> 879[label="",style="solid", color="black", weight=3]; 632 -> 2167[label="",style="dashed", color="red", weight=0]; 632[label="compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600)",fontsize=16,color="magenta"];632 -> 2198[label="",style="dashed", color="magenta", weight=3]; 632 -> 2199[label="",style="dashed", color="magenta", weight=3]; 632 -> 2200[label="",style="dashed", color="magenta", weight=3]; 633[label="FiniteMap.Branch (Right xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];633 -> 887[label="",style="dashed", color="green", weight=3]; 634[label="xuu64",fontsize=16,color="green",shape="box"];635[label="Right xuu311000",fontsize=16,color="green",shape="box"];652 -> 2167[label="",style="dashed", color="red", weight=0]; 652[label="compare2 (Right xuu39) (Right xuu34) (Right xuu39 == Right xuu34)",fontsize=16,color="magenta"];652 -> 2201[label="",style="dashed", color="magenta", weight=3]; 652 -> 2202[label="",style="dashed", color="magenta", weight=3]; 652 -> 2203[label="",style="dashed", color="magenta", weight=3]; 653[label="FiniteMap.Branch (Right xuu39) (FiniteMap.addListToFM0 xuu35 xuu40) xuu36 xuu37 xuu38",fontsize=16,color="green",shape="box"];653 -> 920[label="",style="dashed", color="green", weight=3]; 654[label="xuu40",fontsize=16,color="green",shape="box"];655[label="xuu38",fontsize=16,color="green",shape="box"];656[label="Right xuu39",fontsize=16,color="green",shape="box"];2582[label="xuu6000",fontsize=16,color="green",shape="box"];2583[label="xuu3110000",fontsize=16,color="green",shape="box"];2584[label="xuu6000",fontsize=16,color="green",shape="box"];2585[label="xuu3110000",fontsize=16,color="green",shape="box"];2586[label="xuu6000",fontsize=16,color="green",shape="box"];2587[label="xuu3110000",fontsize=16,color="green",shape="box"];2588[label="xuu6000",fontsize=16,color="green",shape="box"];2589[label="xuu3110000",fontsize=16,color="green",shape="box"];2590[label="xuu6000",fontsize=16,color="green",shape="box"];2591[label="xuu3110000",fontsize=16,color="green",shape="box"];2592[label="xuu6000",fontsize=16,color="green",shape="box"];2593[label="xuu3110000",fontsize=16,color="green",shape="box"];2594[label="xuu6000",fontsize=16,color="green",shape="box"];2595[label="xuu3110000",fontsize=16,color="green",shape="box"];2596[label="xuu6000",fontsize=16,color="green",shape="box"];2597[label="xuu3110000",fontsize=16,color="green",shape="box"];2598[label="xuu6000",fontsize=16,color="green",shape="box"];2599[label="xuu3110000",fontsize=16,color="green",shape="box"];2600[label="xuu6000",fontsize=16,color="green",shape="box"];2601[label="xuu3110000",fontsize=16,color="green",shape="box"];2602[label="xuu6000",fontsize=16,color="green",shape="box"];2603[label="xuu3110000",fontsize=16,color="green",shape="box"];2604[label="xuu6000",fontsize=16,color="green",shape="box"];2605[label="xuu3110000",fontsize=16,color="green",shape="box"];2606[label="xuu6000",fontsize=16,color="green",shape="box"];2607[label="xuu3110000",fontsize=16,color="green",shape="box"];2608[label="xuu6000",fontsize=16,color="green",shape="box"];2609[label="xuu3110000",fontsize=16,color="green",shape="box"];2625[label="xuu6001",fontsize=16,color="green",shape="box"];2626[label="xuu3110001",fontsize=16,color="green",shape="box"];2627 -> 2205[label="",style="dashed", color="red", weight=0]; 2627[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2627 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2206[label="",style="dashed", color="red", weight=0]; 2628[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2628 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2207[label="",style="dashed", color="red", weight=0]; 2629[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2629 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2208[label="",style="dashed", color="red", weight=0]; 2630[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2630 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2209[label="",style="dashed", color="red", weight=0]; 2631[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2631 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2632 -> 83[label="",style="dashed", color="red", weight=0]; 2632[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2632 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2211[label="",style="dashed", color="red", weight=0]; 2633[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2633 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2212[label="",style="dashed", color="red", weight=0]; 2634[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2634 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2213[label="",style="dashed", color="red", weight=0]; 2635[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2635 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2214[label="",style="dashed", color="red", weight=0]; 2636[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2636 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2215[label="",style="dashed", color="red", weight=0]; 2637[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2637 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2216[label="",style="dashed", color="red", weight=0]; 2638[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2638 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2217[label="",style="dashed", color="red", weight=0]; 2639[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2639 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2218[label="",style="dashed", color="red", weight=0]; 2640[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2640 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2641[label="False && xuu148",fontsize=16,color="black",shape="box"];2641 -> 2805[label="",style="solid", color="black", weight=3]; 2642[label="True && xuu148",fontsize=16,color="black",shape="box"];2642 -> 2806[label="",style="solid", color="black", weight=3]; 2643[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4624[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4624[label="",style="solid", color="burlywood", weight=9]; 4624 -> 2807[label="",style="solid", color="burlywood", weight=3]; 4625[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4625[label="",style="solid", color="burlywood", weight=9]; 4625 -> 2808[label="",style="solid", color="burlywood", weight=3]; 2644[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];4626[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2644 -> 4626[label="",style="solid", color="burlywood", weight=9]; 4626 -> 2809[label="",style="solid", color="burlywood", weight=3]; 4627[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2644 -> 4627[label="",style="solid", color="burlywood", weight=9]; 4627 -> 2810[label="",style="solid", color="burlywood", weight=3]; 2645[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4628[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 2811[label="",style="solid", color="blue", weight=3]; 4629[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 2812[label="",style="solid", color="blue", weight=3]; 4630[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 2813[label="",style="solid", color="blue", weight=3]; 4631[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 2814[label="",style="solid", color="blue", weight=3]; 4632[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 2815[label="",style="solid", color="blue", weight=3]; 4633[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 2816[label="",style="solid", color="blue", weight=3]; 4634[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 2817[label="",style="solid", color="blue", weight=3]; 4635[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 2818[label="",style="solid", color="blue", weight=3]; 4636[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 2819[label="",style="solid", color="blue", weight=3]; 4637[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 2820[label="",style="solid", color="blue", weight=3]; 4638[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 2821[label="",style="solid", color="blue", weight=3]; 4639[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 2822[label="",style="solid", color="blue", weight=3]; 4640[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 2823[label="",style="solid", color="blue", weight=3]; 4641[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 2824[label="",style="solid", color="blue", weight=3]; 2646[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4642[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 2825[label="",style="solid", color="blue", weight=3]; 4643[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 2826[label="",style="solid", color="blue", weight=3]; 4644[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 2827[label="",style="solid", color="blue", weight=3]; 4645[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 2828[label="",style="solid", color="blue", weight=3]; 4646[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 2829[label="",style="solid", color="blue", weight=3]; 4647[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 2830[label="",style="solid", color="blue", weight=3]; 4648[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 2831[label="",style="solid", color="blue", weight=3]; 4649[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 2832[label="",style="solid", color="blue", weight=3]; 4650[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 2833[label="",style="solid", color="blue", weight=3]; 4651[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4651[label="",style="solid", color="blue", weight=9]; 4651 -> 2834[label="",style="solid", color="blue", weight=3]; 4652[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4652[label="",style="solid", color="blue", weight=9]; 4652 -> 2835[label="",style="solid", color="blue", weight=3]; 4653[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4653[label="",style="solid", color="blue", weight=9]; 4653 -> 2836[label="",style="solid", color="blue", weight=3]; 4654[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 2837[label="",style="solid", color="blue", weight=3]; 4655[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 2838[label="",style="solid", color="blue", weight=3]; 2647 -> 2205[label="",style="dashed", color="red", weight=0]; 2647[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2647 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2206[label="",style="dashed", color="red", weight=0]; 2648[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2648 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2207[label="",style="dashed", color="red", weight=0]; 2649[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2649 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2208[label="",style="dashed", color="red", weight=0]; 2650[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2650 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2209[label="",style="dashed", color="red", weight=0]; 2651[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2651 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2652 -> 83[label="",style="dashed", color="red", weight=0]; 2652[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2652 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2211[label="",style="dashed", color="red", weight=0]; 2653[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2653 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2212[label="",style="dashed", color="red", weight=0]; 2654[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2654 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2213[label="",style="dashed", color="red", weight=0]; 2655[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2655 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2214[label="",style="dashed", color="red", weight=0]; 2656[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2656 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2215[label="",style="dashed", color="red", weight=0]; 2657[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2657 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2216[label="",style="dashed", color="red", weight=0]; 2658[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2658 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2217[label="",style="dashed", color="red", weight=0]; 2659[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2659 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2218[label="",style="dashed", color="red", weight=0]; 2660[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2660 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2212[label="",style="dashed", color="red", weight=0]; 2661[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2661 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2215[label="",style="dashed", color="red", weight=0]; 2662[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2662 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2212[label="",style="dashed", color="red", weight=0]; 2663[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2663 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2215[label="",style="dashed", color="red", weight=0]; 2664[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2664 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2205[label="",style="dashed", color="red", weight=0]; 2665[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2665 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2206[label="",style="dashed", color="red", weight=0]; 2666[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2666 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2207[label="",style="dashed", color="red", weight=0]; 2667[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2667 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2208[label="",style="dashed", color="red", weight=0]; 2668[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2668 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2209[label="",style="dashed", color="red", weight=0]; 2669[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2669 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2670 -> 83[label="",style="dashed", color="red", weight=0]; 2670[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2670 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2211[label="",style="dashed", color="red", weight=0]; 2671[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2671 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2212[label="",style="dashed", color="red", weight=0]; 2672[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2672 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2213[label="",style="dashed", color="red", weight=0]; 2673[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2673 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2214[label="",style="dashed", color="red", weight=0]; 2674[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2674 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2215[label="",style="dashed", color="red", weight=0]; 2675[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2675 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2216[label="",style="dashed", color="red", weight=0]; 2676[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2676 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2217[label="",style="dashed", color="red", weight=0]; 2677[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2677 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2218[label="",style="dashed", color="red", weight=0]; 2678[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2678 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2205[label="",style="dashed", color="red", weight=0]; 2679[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2679 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2206[label="",style="dashed", color="red", weight=0]; 2680[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2680 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2207[label="",style="dashed", color="red", weight=0]; 2681[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2681 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2208[label="",style="dashed", color="red", weight=0]; 2682[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2682 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2209[label="",style="dashed", color="red", weight=0]; 2683[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2683 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2684 -> 83[label="",style="dashed", color="red", weight=0]; 2684[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2684 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2211[label="",style="dashed", color="red", weight=0]; 2685[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2685 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2212[label="",style="dashed", color="red", weight=0]; 2686[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2686 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2213[label="",style="dashed", color="red", weight=0]; 2687[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2687 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2214[label="",style="dashed", color="red", weight=0]; 2688[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2688 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2215[label="",style="dashed", color="red", weight=0]; 2689[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2689 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2216[label="",style="dashed", color="red", weight=0]; 2690[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2690 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2217[label="",style="dashed", color="red", weight=0]; 2691[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2691 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2218[label="",style="dashed", color="red", weight=0]; 2692[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2692 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2693[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2693 -> 2931[label="",style="solid", color="black", weight=3]; 2694[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2694 -> 2932[label="",style="solid", color="black", weight=3]; 2695[label="False",fontsize=16,color="green",shape="box"];2696[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2696 -> 2933[label="",style="solid", color="black", weight=3]; 2697[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2697 -> 2934[label="",style="solid", color="black", weight=3]; 2698[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2698 -> 2935[label="",style="solid", color="black", weight=3]; 2699[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2699 -> 2936[label="",style="solid", color="black", weight=3]; 2700[label="False",fontsize=16,color="green",shape="box"];2701[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2701 -> 2937[label="",style="solid", color="black", weight=3]; 2702[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2702 -> 2938[label="",style="solid", color="black", weight=3]; 2703[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2703 -> 2939[label="",style="solid", color="black", weight=3]; 2704[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2704 -> 2940[label="",style="solid", color="black", weight=3]; 2705[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2705 -> 2941[label="",style="solid", color="black", weight=3]; 2706[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2706 -> 2942[label="",style="solid", color="black", weight=3]; 2707 -> 782[label="",style="dashed", color="red", weight=0]; 2707[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2708 -> 782[label="",style="dashed", color="red", weight=0]; 2708[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2708 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2709[label="xuu6000",fontsize=16,color="green",shape="box"];2710[label="xuu3110000",fontsize=16,color="green",shape="box"];2711[label="xuu6000",fontsize=16,color="green",shape="box"];2712[label="xuu3110000",fontsize=16,color="green",shape="box"];2713[label="xuu6000",fontsize=16,color="green",shape="box"];2714[label="xuu3110000",fontsize=16,color="green",shape="box"];2715[label="xuu6000",fontsize=16,color="green",shape="box"];2716[label="xuu3110000",fontsize=16,color="green",shape="box"];2717[label="xuu6000",fontsize=16,color="green",shape="box"];2718[label="xuu3110000",fontsize=16,color="green",shape="box"];2719[label="xuu6000",fontsize=16,color="green",shape="box"];2720[label="xuu3110000",fontsize=16,color="green",shape="box"];2721[label="xuu6000",fontsize=16,color="green",shape="box"];2722[label="xuu3110000",fontsize=16,color="green",shape="box"];2723[label="xuu6000",fontsize=16,color="green",shape="box"];2724[label="xuu3110000",fontsize=16,color="green",shape="box"];2725[label="xuu6000",fontsize=16,color="green",shape="box"];2726[label="xuu3110000",fontsize=16,color="green",shape="box"];2727[label="xuu6000",fontsize=16,color="green",shape="box"];2728[label="xuu3110000",fontsize=16,color="green",shape="box"];2729[label="xuu6000",fontsize=16,color="green",shape="box"];2730[label="xuu3110000",fontsize=16,color="green",shape="box"];2731[label="xuu6000",fontsize=16,color="green",shape="box"];2732[label="xuu3110000",fontsize=16,color="green",shape="box"];2733[label="xuu6000",fontsize=16,color="green",shape="box"];2734[label="xuu3110000",fontsize=16,color="green",shape="box"];2735[label="xuu6000",fontsize=16,color="green",shape="box"];2736[label="xuu3110000",fontsize=16,color="green",shape="box"];2737[label="xuu6000",fontsize=16,color="green",shape="box"];2738[label="xuu3110000",fontsize=16,color="green",shape="box"];2739[label="xuu6000",fontsize=16,color="green",shape="box"];2740[label="xuu3110000",fontsize=16,color="green",shape="box"];2741[label="xuu6000",fontsize=16,color="green",shape="box"];2742[label="xuu3110000",fontsize=16,color="green",shape="box"];2743[label="xuu6000",fontsize=16,color="green",shape="box"];2744[label="xuu3110000",fontsize=16,color="green",shape="box"];2745[label="xuu6000",fontsize=16,color="green",shape="box"];2746[label="xuu3110000",fontsize=16,color="green",shape="box"];2747[label="xuu6000",fontsize=16,color="green",shape="box"];2748[label="xuu3110000",fontsize=16,color="green",shape="box"];2749[label="xuu6000",fontsize=16,color="green",shape="box"];2750[label="xuu3110000",fontsize=16,color="green",shape="box"];2751[label="xuu6000",fontsize=16,color="green",shape="box"];2752[label="xuu3110000",fontsize=16,color="green",shape="box"];2753[label="xuu6000",fontsize=16,color="green",shape="box"];2754[label="xuu3110000",fontsize=16,color="green",shape="box"];2755[label="xuu6000",fontsize=16,color="green",shape="box"];2756[label="xuu3110000",fontsize=16,color="green",shape="box"];2757[label="xuu6000",fontsize=16,color="green",shape="box"];2758[label="xuu3110000",fontsize=16,color="green",shape="box"];2759[label="xuu6000",fontsize=16,color="green",shape="box"];2760[label="xuu3110000",fontsize=16,color="green",shape="box"];2761[label="xuu6000",fontsize=16,color="green",shape="box"];2762[label="xuu3110000",fontsize=16,color="green",shape="box"];2763[label="xuu6000",fontsize=16,color="green",shape="box"];2764[label="xuu3110000",fontsize=16,color="green",shape="box"];2765 -> 782[label="",style="dashed", color="red", weight=0]; 2765[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2765 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2766 -> 782[label="",style="dashed", color="red", weight=0]; 2766[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2766 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2768[label="xuu5000 <= xuu5100",fontsize=16,color="blue",shape="box"];4656[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 2949[label="",style="solid", color="blue", weight=3]; 4657[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 2950[label="",style="solid", color="blue", weight=3]; 4658[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 2951[label="",style="solid", color="blue", weight=3]; 4659[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 2952[label="",style="solid", color="blue", weight=3]; 4660[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 2953[label="",style="solid", color="blue", weight=3]; 4661[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 2954[label="",style="solid", color="blue", weight=3]; 4662[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 2955[label="",style="solid", color="blue", weight=3]; 4663[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 2956[label="",style="solid", color="blue", weight=3]; 4664[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 2957[label="",style="solid", color="blue", weight=3]; 4665[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 2958[label="",style="solid", color="blue", weight=3]; 4666[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 2959[label="",style="solid", color="blue", weight=3]; 4667[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 2960[label="",style="solid", color="blue", weight=3]; 4668[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 2961[label="",style="solid", color="blue", weight=3]; 4669[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4669[label="",style="solid", color="blue", weight=9]; 4669 -> 2962[label="",style="solid", color="blue", weight=3]; 2769[label="xuu5000",fontsize=16,color="green",shape="box"];2770[label="xuu5100",fontsize=16,color="green",shape="box"];2767[label="compare1 (Left xuu153) (Left xuu154) xuu155",fontsize=16,color="burlywood",shape="triangle"];4670[label="xuu155/False",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 2963[label="",style="solid", color="burlywood", weight=3]; 4671[label="xuu155/True",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 2964[label="",style="solid", color="burlywood", weight=3]; 2771[label="LT",fontsize=16,color="green",shape="box"];2772[label="compare0 (Right xuu5000) (Left xuu5100) otherwise",fontsize=16,color="black",shape="box"];2772 -> 2965[label="",style="solid", color="black", weight=3]; 2774[label="xuu5000 <= xuu5100",fontsize=16,color="blue",shape="box"];4672[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 2966[label="",style="solid", color="blue", weight=3]; 4673[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 2967[label="",style="solid", color="blue", weight=3]; 4674[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 2968[label="",style="solid", color="blue", weight=3]; 4675[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 2969[label="",style="solid", color="blue", weight=3]; 4676[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 2970[label="",style="solid", color="blue", weight=3]; 4677[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4677[label="",style="solid", color="blue", weight=9]; 4677 -> 2971[label="",style="solid", color="blue", weight=3]; 4678[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4678[label="",style="solid", color="blue", weight=9]; 4678 -> 2972[label="",style="solid", color="blue", weight=3]; 4679[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4679[label="",style="solid", color="blue", weight=9]; 4679 -> 2973[label="",style="solid", color="blue", weight=3]; 4680[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4680[label="",style="solid", color="blue", weight=9]; 4680 -> 2974[label="",style="solid", color="blue", weight=3]; 4681[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4681[label="",style="solid", color="blue", weight=9]; 4681 -> 2975[label="",style="solid", color="blue", weight=3]; 4682[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4682[label="",style="solid", color="blue", weight=9]; 4682 -> 2976[label="",style="solid", color="blue", weight=3]; 4683[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4683[label="",style="solid", color="blue", weight=9]; 4683 -> 2977[label="",style="solid", color="blue", weight=3]; 4684[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4684[label="",style="solid", color="blue", weight=9]; 4684 -> 2978[label="",style="solid", color="blue", weight=3]; 4685[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4685[label="",style="solid", color="blue", weight=9]; 4685 -> 2979[label="",style="solid", color="blue", weight=3]; 2775[label="xuu5000",fontsize=16,color="green",shape="box"];2776[label="xuu5100",fontsize=16,color="green",shape="box"];2773[label="compare1 (Right xuu160) (Right xuu161) xuu162",fontsize=16,color="burlywood",shape="triangle"];4686[label="xuu162/False",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 2980[label="",style="solid", color="burlywood", weight=3]; 4687[label="xuu162/True",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 2981[label="",style="solid", color="burlywood", weight=3]; 2192[label="Left xuu17",fontsize=16,color="green",shape="box"];2193[label="Left xuu22",fontsize=16,color="green",shape="box"];2194[label="Left xuu22 == Left xuu17",fontsize=16,color="black",shape="box"];2194 -> 2235[label="",style="solid", color="black", weight=3]; 865[label="FiniteMap.addListToFM0 xuu18 xuu23",fontsize=16,color="black",shape="triangle"];865 -> 1128[label="",style="solid", color="black", weight=3]; 866[label="LT",fontsize=16,color="green",shape="box"];867[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];867 -> 1129[label="",style="solid", color="black", weight=3]; 868 -> 1354[label="",style="dashed", color="red", weight=0]; 868[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53)",fontsize=16,color="magenta"];868 -> 1355[label="",style="dashed", color="magenta", weight=3]; 869 -> 4155[label="",style="dashed", color="red", weight=0]; 869[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="magenta"];869 -> 4156[label="",style="dashed", color="magenta", weight=3]; 869 -> 4157[label="",style="dashed", color="magenta", weight=3]; 869 -> 4158[label="",style="dashed", color="magenta", weight=3]; 869 -> 4159[label="",style="dashed", color="magenta", weight=3]; 869 -> 4160[label="",style="dashed", color="magenta", weight=3]; 2195[label="Right xuu600",fontsize=16,color="green",shape="box"];2196[label="Left xuu311000",fontsize=16,color="green",shape="box"];2197[label="Left xuu311000 == Right xuu600",fontsize=16,color="black",shape="box"];2197 -> 2236[label="",style="solid", color="black", weight=3]; 875 -> 865[label="",style="dashed", color="red", weight=0]; 875[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];875 -> 1149[label="",style="dashed", color="magenta", weight=3]; 875 -> 1150[label="",style="dashed", color="magenta", weight=3]; 876[label="LT",fontsize=16,color="green",shape="box"];877[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];877 -> 1151[label="",style="solid", color="black", weight=3]; 878 -> 1425[label="",style="dashed", color="red", weight=0]; 878[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45)",fontsize=16,color="magenta"];878 -> 1426[label="",style="dashed", color="magenta", weight=3]; 879 -> 4155[label="",style="dashed", color="red", weight=0]; 879[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="magenta"];879 -> 4161[label="",style="dashed", color="magenta", weight=3]; 879 -> 4162[label="",style="dashed", color="magenta", weight=3]; 879 -> 4163[label="",style="dashed", color="magenta", weight=3]; 879 -> 4164[label="",style="dashed", color="magenta", weight=3]; 879 -> 4165[label="",style="dashed", color="magenta", weight=3]; 2198[label="Left xuu600",fontsize=16,color="green",shape="box"];2199[label="Right xuu311000",fontsize=16,color="green",shape="box"];2200[label="Right xuu311000 == Left xuu600",fontsize=16,color="black",shape="box"];2200 -> 2237[label="",style="solid", color="black", weight=3]; 887 -> 865[label="",style="dashed", color="red", weight=0]; 887[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];887 -> 1165[label="",style="dashed", color="magenta", weight=3]; 887 -> 1166[label="",style="dashed", color="magenta", weight=3]; 2201[label="Right xuu34",fontsize=16,color="green",shape="box"];2202[label="Right xuu39",fontsize=16,color="green",shape="box"];2203[label="Right xuu39 == Right xuu34",fontsize=16,color="black",shape="box"];2203 -> 2238[label="",style="solid", color="black", weight=3]; 920 -> 865[label="",style="dashed", color="red", weight=0]; 920[label="FiniteMap.addListToFM0 xuu35 xuu40",fontsize=16,color="magenta"];920 -> 1170[label="",style="dashed", color="magenta", weight=3]; 920 -> 1171[label="",style="dashed", color="magenta", weight=3]; 2777[label="xuu6000",fontsize=16,color="green",shape="box"];2778[label="xuu3110000",fontsize=16,color="green",shape="box"];2779[label="xuu6000",fontsize=16,color="green",shape="box"];2780[label="xuu3110000",fontsize=16,color="green",shape="box"];2781[label="xuu6000",fontsize=16,color="green",shape="box"];2782[label="xuu3110000",fontsize=16,color="green",shape="box"];2783[label="xuu6000",fontsize=16,color="green",shape="box"];2784[label="xuu3110000",fontsize=16,color="green",shape="box"];2785[label="xuu6000",fontsize=16,color="green",shape="box"];2786[label="xuu3110000",fontsize=16,color="green",shape="box"];2787[label="xuu6000",fontsize=16,color="green",shape="box"];2788[label="xuu3110000",fontsize=16,color="green",shape="box"];2789[label="xuu6000",fontsize=16,color="green",shape="box"];2790[label="xuu3110000",fontsize=16,color="green",shape="box"];2791[label="xuu6000",fontsize=16,color="green",shape="box"];2792[label="xuu3110000",fontsize=16,color="green",shape="box"];2793[label="xuu6000",fontsize=16,color="green",shape="box"];2794[label="xuu3110000",fontsize=16,color="green",shape="box"];2795[label="xuu6000",fontsize=16,color="green",shape="box"];2796[label="xuu3110000",fontsize=16,color="green",shape="box"];2797[label="xuu6000",fontsize=16,color="green",shape="box"];2798[label="xuu3110000",fontsize=16,color="green",shape="box"];2799[label="xuu6000",fontsize=16,color="green",shape="box"];2800[label="xuu3110000",fontsize=16,color="green",shape="box"];2801[label="xuu6000",fontsize=16,color="green",shape="box"];2802[label="xuu3110000",fontsize=16,color="green",shape="box"];2803[label="xuu6000",fontsize=16,color="green",shape="box"];2804[label="xuu3110000",fontsize=16,color="green",shape="box"];2805[label="False",fontsize=16,color="green",shape="box"];2806[label="xuu148",fontsize=16,color="green",shape="box"];2807[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2807 -> 3010[label="",style="solid", color="black", weight=3]; 2808[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2808 -> 3011[label="",style="solid", color="black", weight=3]; 2809[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2809 -> 3012[label="",style="solid", color="black", weight=3]; 2810[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2810 -> 3013[label="",style="solid", color="black", weight=3]; 2811 -> 2205[label="",style="dashed", color="red", weight=0]; 2811[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2811 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2811 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2206[label="",style="dashed", color="red", weight=0]; 2812[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2812 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2812 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2207[label="",style="dashed", color="red", weight=0]; 2813[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2813 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2813 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2208[label="",style="dashed", color="red", weight=0]; 2814[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2814 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2814 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2209[label="",style="dashed", color="red", weight=0]; 2815[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2815 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2815 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2816 -> 83[label="",style="dashed", color="red", weight=0]; 2816[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2816 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2816 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2211[label="",style="dashed", color="red", weight=0]; 2817[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2817 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2817 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2212[label="",style="dashed", color="red", weight=0]; 2818[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2818 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2818 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2213[label="",style="dashed", color="red", weight=0]; 2819[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2819 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2819 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2214[label="",style="dashed", color="red", weight=0]; 2820[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2820 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2820 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2215[label="",style="dashed", color="red", weight=0]; 2821[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2821 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2821 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2216[label="",style="dashed", color="red", weight=0]; 2822[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2822 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2822 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2217[label="",style="dashed", color="red", weight=0]; 2823[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2823 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2823 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2218[label="",style="dashed", color="red", weight=0]; 2824[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2824 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2824 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2205[label="",style="dashed", color="red", weight=0]; 2825[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2825 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2825 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2206[label="",style="dashed", color="red", weight=0]; 2826[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2826 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2826 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2207[label="",style="dashed", color="red", weight=0]; 2827[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2827 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2827 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2208[label="",style="dashed", color="red", weight=0]; 2828[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2828 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2828 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2209[label="",style="dashed", color="red", weight=0]; 2829[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2829 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2829 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2830 -> 83[label="",style="dashed", color="red", weight=0]; 2830[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2830 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2830 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2211[label="",style="dashed", color="red", weight=0]; 2831[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2831 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2831 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2212[label="",style="dashed", color="red", weight=0]; 2832[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2832 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2832 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2213[label="",style="dashed", color="red", weight=0]; 2833[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2833 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2833 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2214[label="",style="dashed", color="red", weight=0]; 2834[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2834 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2834 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2215[label="",style="dashed", color="red", weight=0]; 2835[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2835 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2835 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2216[label="",style="dashed", color="red", weight=0]; 2836[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2836 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2836 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2217[label="",style="dashed", color="red", weight=0]; 2837[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2837 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2837 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2218[label="",style="dashed", color="red", weight=0]; 2838[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2838 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2838 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2839[label="xuu6000",fontsize=16,color="green",shape="box"];2840[label="xuu3110000",fontsize=16,color="green",shape="box"];2841[label="xuu6000",fontsize=16,color="green",shape="box"];2842[label="xuu3110000",fontsize=16,color="green",shape="box"];2843[label="xuu6000",fontsize=16,color="green",shape="box"];2844[label="xuu3110000",fontsize=16,color="green",shape="box"];2845[label="xuu6000",fontsize=16,color="green",shape="box"];2846[label="xuu3110000",fontsize=16,color="green",shape="box"];2847[label="xuu6000",fontsize=16,color="green",shape="box"];2848[label="xuu3110000",fontsize=16,color="green",shape="box"];2849[label="xuu6000",fontsize=16,color="green",shape="box"];2850[label="xuu3110000",fontsize=16,color="green",shape="box"];2851[label="xuu6000",fontsize=16,color="green",shape="box"];2852[label="xuu3110000",fontsize=16,color="green",shape="box"];2853[label="xuu6000",fontsize=16,color="green",shape="box"];2854[label="xuu3110000",fontsize=16,color="green",shape="box"];2855[label="xuu6000",fontsize=16,color="green",shape="box"];2856[label="xuu3110000",fontsize=16,color="green",shape="box"];2857[label="xuu6000",fontsize=16,color="green",shape="box"];2858[label="xuu3110000",fontsize=16,color="green",shape="box"];2859[label="xuu6000",fontsize=16,color="green",shape="box"];2860[label="xuu3110000",fontsize=16,color="green",shape="box"];2861[label="xuu6000",fontsize=16,color="green",shape="box"];2862[label="xuu3110000",fontsize=16,color="green",shape="box"];2863[label="xuu6000",fontsize=16,color="green",shape="box"];2864[label="xuu3110000",fontsize=16,color="green",shape="box"];2865[label="xuu6000",fontsize=16,color="green",shape="box"];2866[label="xuu3110000",fontsize=16,color="green",shape="box"];2867[label="xuu6001",fontsize=16,color="green",shape="box"];2868[label="xuu3110001",fontsize=16,color="green",shape="box"];2869[label="xuu6001",fontsize=16,color="green",shape="box"];2870[label="xuu3110001",fontsize=16,color="green",shape="box"];2871[label="xuu6000",fontsize=16,color="green",shape="box"];2872[label="xuu3110000",fontsize=16,color="green",shape="box"];2873[label="xuu6000",fontsize=16,color="green",shape="box"];2874[label="xuu3110000",fontsize=16,color="green",shape="box"];2875[label="xuu6001",fontsize=16,color="green",shape="box"];2876[label="xuu3110001",fontsize=16,color="green",shape="box"];2877[label="xuu6001",fontsize=16,color="green",shape="box"];2878[label="xuu3110001",fontsize=16,color="green",shape="box"];2879[label="xuu6001",fontsize=16,color="green",shape="box"];2880[label="xuu3110001",fontsize=16,color="green",shape="box"];2881[label="xuu6001",fontsize=16,color="green",shape="box"];2882[label="xuu3110001",fontsize=16,color="green",shape="box"];2883[label="xuu6001",fontsize=16,color="green",shape="box"];2884[label="xuu3110001",fontsize=16,color="green",shape="box"];2885[label="xuu6001",fontsize=16,color="green",shape="box"];2886[label="xuu3110001",fontsize=16,color="green",shape="box"];2887[label="xuu6001",fontsize=16,color="green",shape="box"];2888[label="xuu3110001",fontsize=16,color="green",shape="box"];2889[label="xuu6001",fontsize=16,color="green",shape="box"];2890[label="xuu3110001",fontsize=16,color="green",shape="box"];2891[label="xuu6001",fontsize=16,color="green",shape="box"];2892[label="xuu3110001",fontsize=16,color="green",shape="box"];2893[label="xuu6001",fontsize=16,color="green",shape="box"];2894[label="xuu3110001",fontsize=16,color="green",shape="box"];2895[label="xuu6001",fontsize=16,color="green",shape="box"];2896[label="xuu3110001",fontsize=16,color="green",shape="box"];2897[label="xuu6001",fontsize=16,color="green",shape="box"];2898[label="xuu3110001",fontsize=16,color="green",shape="box"];2899[label="xuu6001",fontsize=16,color="green",shape="box"];2900[label="xuu3110001",fontsize=16,color="green",shape="box"];2901[label="xuu6001",fontsize=16,color="green",shape="box"];2902[label="xuu3110001",fontsize=16,color="green",shape="box"];2903[label="xuu6000",fontsize=16,color="green",shape="box"];2904[label="xuu3110000",fontsize=16,color="green",shape="box"];2905[label="xuu6000",fontsize=16,color="green",shape="box"];2906[label="xuu3110000",fontsize=16,color="green",shape="box"];2907[label="xuu6000",fontsize=16,color="green",shape="box"];2908[label="xuu3110000",fontsize=16,color="green",shape="box"];2909[label="xuu6000",fontsize=16,color="green",shape="box"];2910[label="xuu3110000",fontsize=16,color="green",shape="box"];2911[label="xuu6000",fontsize=16,color="green",shape="box"];2912[label="xuu3110000",fontsize=16,color="green",shape="box"];2913[label="xuu6000",fontsize=16,color="green",shape="box"];2914[label="xuu3110000",fontsize=16,color="green",shape="box"];2915[label="xuu6000",fontsize=16,color="green",shape="box"];2916[label="xuu3110000",fontsize=16,color="green",shape="box"];2917[label="xuu6000",fontsize=16,color="green",shape="box"];2918[label="xuu3110000",fontsize=16,color="green",shape="box"];2919[label="xuu6000",fontsize=16,color="green",shape="box"];2920[label="xuu3110000",fontsize=16,color="green",shape="box"];2921[label="xuu6000",fontsize=16,color="green",shape="box"];2922[label="xuu3110000",fontsize=16,color="green",shape="box"];2923[label="xuu6000",fontsize=16,color="green",shape="box"];2924[label="xuu3110000",fontsize=16,color="green",shape="box"];2925[label="xuu6000",fontsize=16,color="green",shape="box"];2926[label="xuu3110000",fontsize=16,color="green",shape="box"];2927[label="xuu6000",fontsize=16,color="green",shape="box"];2928[label="xuu3110000",fontsize=16,color="green",shape="box"];2929[label="xuu6000",fontsize=16,color="green",shape="box"];2930[label="xuu3110000",fontsize=16,color="green",shape="box"];2931 -> 2537[label="",style="dashed", color="red", weight=0]; 2931[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2931 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2932[label="False",fontsize=16,color="green",shape="box"];2933[label="False",fontsize=16,color="green",shape="box"];2934[label="True",fontsize=16,color="green",shape="box"];2935[label="False",fontsize=16,color="green",shape="box"];2936[label="True",fontsize=16,color="green",shape="box"];2937 -> 2537[label="",style="dashed", color="red", weight=0]; 2937[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2937 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2938[label="False",fontsize=16,color="green",shape="box"];2939[label="False",fontsize=16,color="green",shape="box"];2940[label="True",fontsize=16,color="green",shape="box"];2941[label="False",fontsize=16,color="green",shape="box"];2942[label="True",fontsize=16,color="green",shape="box"];782[label="xuu3110001 * xuu6000",fontsize=16,color="black",shape="triangle"];782 -> 1087[label="",style="solid", color="black", weight=3]; 2943[label="xuu6001",fontsize=16,color="green",shape="box"];2944[label="xuu3110000",fontsize=16,color="green",shape="box"];2945[label="xuu6000",fontsize=16,color="green",shape="box"];2946[label="xuu3110001",fontsize=16,color="green",shape="box"];2947[label="xuu6001",fontsize=16,color="green",shape="box"];2948[label="xuu3110000",fontsize=16,color="green",shape="box"];2949[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2949 -> 3074[label="",style="solid", color="black", weight=3]; 2950[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4688[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];2950 -> 4688[label="",style="solid", color="burlywood", weight=9]; 4688 -> 3075[label="",style="solid", color="burlywood", weight=3]; 2951[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2951 -> 3076[label="",style="solid", color="black", weight=3]; 2952[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4689[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2952 -> 4689[label="",style="solid", color="burlywood", weight=9]; 4689 -> 3077[label="",style="solid", color="burlywood", weight=3]; 4690[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];2952 -> 4690[label="",style="solid", color="burlywood", weight=9]; 4690 -> 3078[label="",style="solid", color="burlywood", weight=3]; 2953[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2953 -> 3079[label="",style="solid", color="black", weight=3]; 2954[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2954 -> 3080[label="",style="solid", color="black", weight=3]; 2955[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4691[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];2955 -> 4691[label="",style="solid", color="burlywood", weight=9]; 4691 -> 3081[label="",style="solid", color="burlywood", weight=3]; 4692[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];2955 -> 4692[label="",style="solid", color="burlywood", weight=9]; 4692 -> 3082[label="",style="solid", color="burlywood", weight=3]; 2956[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4693[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];2956 -> 4693[label="",style="solid", color="burlywood", weight=9]; 4693 -> 3083[label="",style="solid", color="burlywood", weight=3]; 4694[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];2956 -> 4694[label="",style="solid", color="burlywood", weight=9]; 4694 -> 3084[label="",style="solid", color="burlywood", weight=3]; 2957[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4695[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4695[label="",style="solid", color="burlywood", weight=9]; 4695 -> 3085[label="",style="solid", color="burlywood", weight=3]; 4696[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4696[label="",style="solid", color="burlywood", weight=9]; 4696 -> 3086[label="",style="solid", color="burlywood", weight=3]; 4697[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4697[label="",style="solid", color="burlywood", weight=9]; 4697 -> 3087[label="",style="solid", color="burlywood", weight=3]; 2958[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2958 -> 3088[label="",style="solid", color="black", weight=3]; 2959[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4698[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4698[label="",style="solid", color="burlywood", weight=9]; 4698 -> 3089[label="",style="solid", color="burlywood", weight=3]; 2960[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2960 -> 3090[label="",style="solid", color="black", weight=3]; 2961[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2961 -> 3091[label="",style="solid", color="black", weight=3]; 2962[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2962 -> 3092[label="",style="solid", color="black", weight=3]; 2963[label="compare1 (Left xuu153) (Left xuu154) False",fontsize=16,color="black",shape="box"];2963 -> 3093[label="",style="solid", color="black", weight=3]; 2964[label="compare1 (Left xuu153) (Left xuu154) True",fontsize=16,color="black",shape="box"];2964 -> 3094[label="",style="solid", color="black", weight=3]; 2965[label="compare0 (Right xuu5000) (Left xuu5100) True",fontsize=16,color="black",shape="box"];2965 -> 3095[label="",style="solid", color="black", weight=3]; 2966 -> 2949[label="",style="dashed", color="red", weight=0]; 2966[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2966 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2966 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2967 -> 2950[label="",style="dashed", color="red", weight=0]; 2967[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2967 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2967 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2968 -> 2951[label="",style="dashed", color="red", weight=0]; 2968[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2968 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2969 -> 2952[label="",style="dashed", color="red", weight=0]; 2969[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2969 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2969 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2970 -> 2953[label="",style="dashed", color="red", weight=0]; 2970[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2970 -> 3104[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2971 -> 2954[label="",style="dashed", color="red", weight=0]; 2971[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2971 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2971 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2972 -> 2955[label="",style="dashed", color="red", weight=0]; 2972[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2972 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2973 -> 2956[label="",style="dashed", color="red", weight=0]; 2973[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2973 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2974 -> 2957[label="",style="dashed", color="red", weight=0]; 2974[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2974 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2974 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2975 -> 2958[label="",style="dashed", color="red", weight=0]; 2975[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2975 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2976 -> 2959[label="",style="dashed", color="red", weight=0]; 2976[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2976 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2977 -> 2960[label="",style="dashed", color="red", weight=0]; 2977[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2977 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2978 -> 2961[label="",style="dashed", color="red", weight=0]; 2978[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2978 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2979 -> 2962[label="",style="dashed", color="red", weight=0]; 2979[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];2979 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2980[label="compare1 (Right xuu160) (Right xuu161) False",fontsize=16,color="black",shape="box"];2980 -> 3124[label="",style="solid", color="black", weight=3]; 2981[label="compare1 (Right xuu160) (Right xuu161) True",fontsize=16,color="black",shape="box"];2981 -> 3125[label="",style="solid", color="black", weight=3]; 2235[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4699[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4699[label="",style="solid", color="blue", weight=9]; 4699 -> 2322[label="",style="solid", color="blue", weight=3]; 4700[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4700[label="",style="solid", color="blue", weight=9]; 4700 -> 2323[label="",style="solid", color="blue", weight=3]; 4701[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4701[label="",style="solid", color="blue", weight=9]; 4701 -> 2324[label="",style="solid", color="blue", weight=3]; 4702[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4702[label="",style="solid", color="blue", weight=9]; 4702 -> 2325[label="",style="solid", color="blue", weight=3]; 4703[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4703[label="",style="solid", color="blue", weight=9]; 4703 -> 2326[label="",style="solid", color="blue", weight=3]; 4704[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4704[label="",style="solid", color="blue", weight=9]; 4704 -> 2327[label="",style="solid", color="blue", weight=3]; 4705[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4705[label="",style="solid", color="blue", weight=9]; 4705 -> 2328[label="",style="solid", color="blue", weight=3]; 4706[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4706[label="",style="solid", color="blue", weight=9]; 4706 -> 2329[label="",style="solid", color="blue", weight=3]; 4707[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4707[label="",style="solid", color="blue", weight=9]; 4707 -> 2330[label="",style="solid", color="blue", weight=3]; 4708[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 2331[label="",style="solid", color="blue", weight=3]; 4709[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 2332[label="",style="solid", color="blue", weight=3]; 4710[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4710[label="",style="solid", color="blue", weight=9]; 4710 -> 2333[label="",style="solid", color="blue", weight=3]; 4711[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4711[label="",style="solid", color="blue", weight=9]; 4711 -> 2334[label="",style="solid", color="blue", weight=3]; 4712[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4712[label="",style="solid", color="blue", weight=9]; 4712 -> 2335[label="",style="solid", color="blue", weight=3]; 1128[label="xuu23",fontsize=16,color="green",shape="box"];1129[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1129 -> 1268[label="",style="solid", color="black", weight=3]; 1355 -> 1838[label="",style="dashed", color="red", weight=0]; 1355[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1355 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1354[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu96",fontsize=16,color="burlywood",shape="triangle"];4713[label="xuu96/False",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4713[label="",style="solid", color="burlywood", weight=9]; 4713 -> 1360[label="",style="solid", color="burlywood", weight=3]; 4714[label="xuu96/True",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4714[label="",style="solid", color="burlywood", weight=9]; 4714 -> 1361[label="",style="solid", color="burlywood", weight=3]; 4156[label="Zero",fontsize=16,color="green",shape="box"];4157[label="xuu61",fontsize=16,color="green",shape="box"];4158[label="xuu53",fontsize=16,color="green",shape="box"];4159[label="xuu64",fontsize=16,color="green",shape="box"];4160[label="Left xuu600",fontsize=16,color="green",shape="box"];4155[label="FiniteMap.mkBranch (Pos (Succ xuu232)) xuu233 xuu234 xuu235 xuu236",fontsize=16,color="black",shape="triangle"];4155 -> 4286[label="",style="solid", color="black", weight=3]; 2236[label="False",fontsize=16,color="green",shape="box"];1149[label="xuu31101",fontsize=16,color="green",shape="box"];1150[label="xuu61",fontsize=16,color="green",shape="box"];1151[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1151 -> 1301[label="",style="solid", color="black", weight=3]; 1426 -> 1838[label="",style="dashed", color="red", weight=0]; 1426[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1426 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1425[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu98",fontsize=16,color="burlywood",shape="triangle"];4715[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];1425 -> 4715[label="",style="solid", color="burlywood", weight=9]; 4715 -> 1431[label="",style="solid", color="burlywood", weight=3]; 4716[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];1425 -> 4716[label="",style="solid", color="burlywood", weight=9]; 4716 -> 1432[label="",style="solid", color="burlywood", weight=3]; 4161[label="Zero",fontsize=16,color="green",shape="box"];4162[label="xuu61",fontsize=16,color="green",shape="box"];4163[label="xuu45",fontsize=16,color="green",shape="box"];4164[label="xuu64",fontsize=16,color="green",shape="box"];4165[label="Right xuu600",fontsize=16,color="green",shape="box"];2237[label="False",fontsize=16,color="green",shape="box"];1165[label="xuu31101",fontsize=16,color="green",shape="box"];1166[label="xuu61",fontsize=16,color="green",shape="box"];2238[label="xuu39 == xuu34",fontsize=16,color="blue",shape="box"];4717[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4717[label="",style="solid", color="blue", weight=9]; 4717 -> 2336[label="",style="solid", color="blue", weight=3]; 4718[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4718[label="",style="solid", color="blue", weight=9]; 4718 -> 2337[label="",style="solid", color="blue", weight=3]; 4719[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4719[label="",style="solid", color="blue", weight=9]; 4719 -> 2338[label="",style="solid", color="blue", weight=3]; 4720[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4720[label="",style="solid", color="blue", weight=9]; 4720 -> 2339[label="",style="solid", color="blue", weight=3]; 4721[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4721[label="",style="solid", color="blue", weight=9]; 4721 -> 2340[label="",style="solid", color="blue", weight=3]; 4722[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4722[label="",style="solid", color="blue", weight=9]; 4722 -> 2341[label="",style="solid", color="blue", weight=3]; 4723[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4723[label="",style="solid", color="blue", weight=9]; 4723 -> 2342[label="",style="solid", color="blue", weight=3]; 4724[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4724[label="",style="solid", color="blue", weight=9]; 4724 -> 2343[label="",style="solid", color="blue", weight=3]; 4725[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4725[label="",style="solid", color="blue", weight=9]; 4725 -> 2344[label="",style="solid", color="blue", weight=3]; 4726[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4726[label="",style="solid", color="blue", weight=9]; 4726 -> 2345[label="",style="solid", color="blue", weight=3]; 4727[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4727[label="",style="solid", color="blue", weight=9]; 4727 -> 2346[label="",style="solid", color="blue", weight=3]; 4728[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4728[label="",style="solid", color="blue", weight=9]; 4728 -> 2347[label="",style="solid", color="blue", weight=3]; 4729[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4729[label="",style="solid", color="blue", weight=9]; 4729 -> 2348[label="",style="solid", color="blue", weight=3]; 4730[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2349[label="",style="solid", color="blue", weight=3]; 1170[label="xuu40",fontsize=16,color="green",shape="box"];1171[label="xuu35",fontsize=16,color="green",shape="box"];3010 -> 2537[label="",style="dashed", color="red", weight=0]; 3010[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];3010 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3011[label="False",fontsize=16,color="green",shape="box"];3012[label="False",fontsize=16,color="green",shape="box"];3013[label="True",fontsize=16,color="green",shape="box"];3014[label="xuu6002",fontsize=16,color="green",shape="box"];3015[label="xuu3110002",fontsize=16,color="green",shape="box"];3016[label="xuu6002",fontsize=16,color="green",shape="box"];3017[label="xuu3110002",fontsize=16,color="green",shape="box"];3018[label="xuu6002",fontsize=16,color="green",shape="box"];3019[label="xuu3110002",fontsize=16,color="green",shape="box"];3020[label="xuu6002",fontsize=16,color="green",shape="box"];3021[label="xuu3110002",fontsize=16,color="green",shape="box"];3022[label="xuu6002",fontsize=16,color="green",shape="box"];3023[label="xuu3110002",fontsize=16,color="green",shape="box"];3024[label="xuu6002",fontsize=16,color="green",shape="box"];3025[label="xuu3110002",fontsize=16,color="green",shape="box"];3026[label="xuu6002",fontsize=16,color="green",shape="box"];3027[label="xuu3110002",fontsize=16,color="green",shape="box"];3028[label="xuu6002",fontsize=16,color="green",shape="box"];3029[label="xuu3110002",fontsize=16,color="green",shape="box"];3030[label="xuu6002",fontsize=16,color="green",shape="box"];3031[label="xuu3110002",fontsize=16,color="green",shape="box"];3032[label="xuu6002",fontsize=16,color="green",shape="box"];3033[label="xuu3110002",fontsize=16,color="green",shape="box"];3034[label="xuu6002",fontsize=16,color="green",shape="box"];3035[label="xuu3110002",fontsize=16,color="green",shape="box"];3036[label="xuu6002",fontsize=16,color="green",shape="box"];3037[label="xuu3110002",fontsize=16,color="green",shape="box"];3038[label="xuu6002",fontsize=16,color="green",shape="box"];3039[label="xuu3110002",fontsize=16,color="green",shape="box"];3040[label="xuu6002",fontsize=16,color="green",shape="box"];3041[label="xuu3110002",fontsize=16,color="green",shape="box"];3042[label="xuu6001",fontsize=16,color="green",shape="box"];3043[label="xuu3110001",fontsize=16,color="green",shape="box"];3044[label="xuu6001",fontsize=16,color="green",shape="box"];3045[label="xuu3110001",fontsize=16,color="green",shape="box"];3046[label="xuu6001",fontsize=16,color="green",shape="box"];3047[label="xuu3110001",fontsize=16,color="green",shape="box"];3048[label="xuu6001",fontsize=16,color="green",shape="box"];3049[label="xuu3110001",fontsize=16,color="green",shape="box"];3050[label="xuu6001",fontsize=16,color="green",shape="box"];3051[label="xuu3110001",fontsize=16,color="green",shape="box"];3052[label="xuu6001",fontsize=16,color="green",shape="box"];3053[label="xuu3110001",fontsize=16,color="green",shape="box"];3054[label="xuu6001",fontsize=16,color="green",shape="box"];3055[label="xuu3110001",fontsize=16,color="green",shape="box"];3056[label="xuu6001",fontsize=16,color="green",shape="box"];3057[label="xuu3110001",fontsize=16,color="green",shape="box"];3058[label="xuu6001",fontsize=16,color="green",shape="box"];3059[label="xuu3110001",fontsize=16,color="green",shape="box"];3060[label="xuu6001",fontsize=16,color="green",shape="box"];3061[label="xuu3110001",fontsize=16,color="green",shape="box"];3062[label="xuu6001",fontsize=16,color="green",shape="box"];3063[label="xuu3110001",fontsize=16,color="green",shape="box"];3064[label="xuu6001",fontsize=16,color="green",shape="box"];3065[label="xuu3110001",fontsize=16,color="green",shape="box"];3066[label="xuu6001",fontsize=16,color="green",shape="box"];3067[label="xuu3110001",fontsize=16,color="green",shape="box"];3068[label="xuu6001",fontsize=16,color="green",shape="box"];3069[label="xuu3110001",fontsize=16,color="green",shape="box"];3070[label="xuu60000",fontsize=16,color="green",shape="box"];3071[label="xuu31100000",fontsize=16,color="green",shape="box"];3072[label="xuu60000",fontsize=16,color="green",shape="box"];3073[label="xuu31100000",fontsize=16,color="green",shape="box"];1087[label="primMulInt xuu3110001 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4731[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];1087 -> 4731[label="",style="solid", color="burlywood", weight=9]; 4731 -> 1236[label="",style="solid", color="burlywood", weight=3]; 4732[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];1087 -> 4732[label="",style="solid", color="burlywood", weight=9]; 4732 -> 1237[label="",style="solid", color="burlywood", weight=3]; 3074 -> 3183[label="",style="dashed", color="red", weight=0]; 3074[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3074 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3075[label="(xuu50000,xuu50001) <= xuu5100",fontsize=16,color="burlywood",shape="box"];4733[label="xuu5100/(xuu51000,xuu51001)",fontsize=10,color="white",style="solid",shape="box"];3075 -> 4733[label="",style="solid", color="burlywood", weight=9]; 4733 -> 3154[label="",style="solid", color="burlywood", weight=3]; 3076 -> 3183[label="",style="dashed", color="red", weight=0]; 3076[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3076 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3077[label="Nothing <= xuu5100",fontsize=16,color="burlywood",shape="box"];4734[label="xuu5100/Nothing",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4734[label="",style="solid", color="burlywood", weight=9]; 4734 -> 3156[label="",style="solid", color="burlywood", weight=3]; 4735[label="xuu5100/Just xuu51000",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4735[label="",style="solid", color="burlywood", weight=9]; 4735 -> 3157[label="",style="solid", color="burlywood", weight=3]; 3078[label="Just xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4736[label="xuu5100/Nothing",fontsize=10,color="white",style="solid",shape="box"];3078 -> 4736[label="",style="solid", color="burlywood", weight=9]; 4736 -> 3158[label="",style="solid", color="burlywood", weight=3]; 4737[label="xuu5100/Just xuu51000",fontsize=10,color="white",style="solid",shape="box"];3078 -> 4737[label="",style="solid", color="burlywood", weight=9]; 4737 -> 3159[label="",style="solid", color="burlywood", weight=3]; 3079 -> 3183[label="",style="dashed", color="red", weight=0]; 3079[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3079 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3183[label="",style="dashed", color="red", weight=0]; 3080[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3080 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3081[label="False <= xuu5100",fontsize=16,color="burlywood",shape="box"];4738[label="xuu5100/False",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4738[label="",style="solid", color="burlywood", weight=9]; 4738 -> 3162[label="",style="solid", color="burlywood", weight=3]; 4739[label="xuu5100/True",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4739[label="",style="solid", color="burlywood", weight=9]; 4739 -> 3163[label="",style="solid", color="burlywood", weight=3]; 3082[label="True <= xuu5100",fontsize=16,color="burlywood",shape="box"];4740[label="xuu5100/False",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4740[label="",style="solid", color="burlywood", weight=9]; 4740 -> 3164[label="",style="solid", color="burlywood", weight=3]; 4741[label="xuu5100/True",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4741[label="",style="solid", color="burlywood", weight=9]; 4741 -> 3165[label="",style="solid", color="burlywood", weight=3]; 3083[label="Left xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4742[label="xuu5100/Left xuu51000",fontsize=10,color="white",style="solid",shape="box"];3083 -> 4742[label="",style="solid", color="burlywood", weight=9]; 4742 -> 3166[label="",style="solid", color="burlywood", weight=3]; 4743[label="xuu5100/Right xuu51000",fontsize=10,color="white",style="solid",shape="box"];3083 -> 4743[label="",style="solid", color="burlywood", weight=9]; 4743 -> 3167[label="",style="solid", color="burlywood", weight=3]; 3084[label="Right xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4744[label="xuu5100/Left xuu51000",fontsize=10,color="white",style="solid",shape="box"];3084 -> 4744[label="",style="solid", color="burlywood", weight=9]; 4744 -> 3168[label="",style="solid", color="burlywood", weight=3]; 4745[label="xuu5100/Right xuu51000",fontsize=10,color="white",style="solid",shape="box"];3084 -> 4745[label="",style="solid", color="burlywood", weight=9]; 4745 -> 3169[label="",style="solid", color="burlywood", weight=3]; 3085[label="LT <= xuu5100",fontsize=16,color="burlywood",shape="box"];4746[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4746[label="",style="solid", color="burlywood", weight=9]; 4746 -> 3170[label="",style="solid", color="burlywood", weight=3]; 4747[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4747[label="",style="solid", color="burlywood", weight=9]; 4747 -> 3171[label="",style="solid", color="burlywood", weight=3]; 4748[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4748[label="",style="solid", color="burlywood", weight=9]; 4748 -> 3172[label="",style="solid", color="burlywood", weight=3]; 3086[label="EQ <= xuu5100",fontsize=16,color="burlywood",shape="box"];4749[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4749[label="",style="solid", color="burlywood", weight=9]; 4749 -> 3173[label="",style="solid", color="burlywood", weight=3]; 4750[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4750[label="",style="solid", color="burlywood", weight=9]; 4750 -> 3174[label="",style="solid", color="burlywood", weight=3]; 4751[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3086 -> 4751[label="",style="solid", color="burlywood", weight=9]; 4751 -> 3175[label="",style="solid", color="burlywood", weight=3]; 3087[label="GT <= xuu5100",fontsize=16,color="burlywood",shape="box"];4752[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4752[label="",style="solid", color="burlywood", weight=9]; 4752 -> 3176[label="",style="solid", color="burlywood", weight=3]; 4753[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4753[label="",style="solid", color="burlywood", weight=9]; 4753 -> 3177[label="",style="solid", color="burlywood", weight=3]; 4754[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4754[label="",style="solid", color="burlywood", weight=9]; 4754 -> 3178[label="",style="solid", color="burlywood", weight=3]; 3088 -> 3183[label="",style="dashed", color="red", weight=0]; 3088[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3088 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3089[label="(xuu50000,xuu50001,xuu50002) <= xuu5100",fontsize=16,color="burlywood",shape="box"];4755[label="xuu5100/(xuu51000,xuu51001,xuu51002)",fontsize=10,color="white",style="solid",shape="box"];3089 -> 4755[label="",style="solid", color="burlywood", weight=9]; 4755 -> 3180[label="",style="solid", color="burlywood", weight=3]; 3090 -> 3183[label="",style="dashed", color="red", weight=0]; 3090[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3090 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3183[label="",style="dashed", color="red", weight=0]; 3091[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3091 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3183[label="",style="dashed", color="red", weight=0]; 3092[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3092 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3093[label="compare0 (Left xuu153) (Left xuu154) otherwise",fontsize=16,color="black",shape="box"];3093 -> 3192[label="",style="solid", color="black", weight=3]; 3094[label="LT",fontsize=16,color="green",shape="box"];3095[label="GT",fontsize=16,color="green",shape="box"];3096[label="xuu5100",fontsize=16,color="green",shape="box"];3097[label="xuu5000",fontsize=16,color="green",shape="box"];3098[label="xuu5100",fontsize=16,color="green",shape="box"];3099[label="xuu5000",fontsize=16,color="green",shape="box"];3100[label="xuu5100",fontsize=16,color="green",shape="box"];3101[label="xuu5000",fontsize=16,color="green",shape="box"];3102[label="xuu5100",fontsize=16,color="green",shape="box"];3103[label="xuu5000",fontsize=16,color="green",shape="box"];3104[label="xuu5100",fontsize=16,color="green",shape="box"];3105[label="xuu5000",fontsize=16,color="green",shape="box"];3106[label="xuu5100",fontsize=16,color="green",shape="box"];3107[label="xuu5000",fontsize=16,color="green",shape="box"];3108[label="xuu5100",fontsize=16,color="green",shape="box"];3109[label="xuu5000",fontsize=16,color="green",shape="box"];3110[label="xuu5100",fontsize=16,color="green",shape="box"];3111[label="xuu5000",fontsize=16,color="green",shape="box"];3112[label="xuu5100",fontsize=16,color="green",shape="box"];3113[label="xuu5000",fontsize=16,color="green",shape="box"];3114[label="xuu5100",fontsize=16,color="green",shape="box"];3115[label="xuu5000",fontsize=16,color="green",shape="box"];3116[label="xuu5100",fontsize=16,color="green",shape="box"];3117[label="xuu5000",fontsize=16,color="green",shape="box"];3118[label="xuu5100",fontsize=16,color="green",shape="box"];3119[label="xuu5000",fontsize=16,color="green",shape="box"];3120[label="xuu5100",fontsize=16,color="green",shape="box"];3121[label="xuu5000",fontsize=16,color="green",shape="box"];3122[label="xuu5100",fontsize=16,color="green",shape="box"];3123[label="xuu5000",fontsize=16,color="green",shape="box"];3124[label="compare0 (Right xuu160) (Right xuu161) otherwise",fontsize=16,color="black",shape="box"];3124 -> 3193[label="",style="solid", color="black", weight=3]; 3125[label="LT",fontsize=16,color="green",shape="box"];2322 -> 2205[label="",style="dashed", color="red", weight=0]; 2322[label="xuu22 == xuu17",fontsize=16,color="magenta"];2322 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2206[label="",style="dashed", color="red", weight=0]; 2323[label="xuu22 == xuu17",fontsize=16,color="magenta"];2323 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2207[label="",style="dashed", color="red", weight=0]; 2324[label="xuu22 == xuu17",fontsize=16,color="magenta"];2324 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2208[label="",style="dashed", color="red", weight=0]; 2325[label="xuu22 == xuu17",fontsize=16,color="magenta"];2325 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2209[label="",style="dashed", color="red", weight=0]; 2326[label="xuu22 == xuu17",fontsize=16,color="magenta"];2326 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2327 -> 83[label="",style="dashed", color="red", weight=0]; 2327[label="xuu22 == xuu17",fontsize=16,color="magenta"];2327 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2211[label="",style="dashed", color="red", weight=0]; 2328[label="xuu22 == xuu17",fontsize=16,color="magenta"];2328 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2212[label="",style="dashed", color="red", weight=0]; 2329[label="xuu22 == xuu17",fontsize=16,color="magenta"];2329 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2213[label="",style="dashed", color="red", weight=0]; 2330[label="xuu22 == xuu17",fontsize=16,color="magenta"];2330 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2214[label="",style="dashed", color="red", weight=0]; 2331[label="xuu22 == xuu17",fontsize=16,color="magenta"];2331 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2215[label="",style="dashed", color="red", weight=0]; 2332[label="xuu22 == xuu17",fontsize=16,color="magenta"];2332 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2216[label="",style="dashed", color="red", weight=0]; 2333[label="xuu22 == xuu17",fontsize=16,color="magenta"];2333 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2217[label="",style="dashed", color="red", weight=0]; 2334[label="xuu22 == xuu17",fontsize=16,color="magenta"];2334 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2218[label="",style="dashed", color="red", weight=0]; 2335[label="xuu22 == xuu17",fontsize=16,color="magenta"];2335 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2407[label="",style="dashed", color="magenta", weight=3]; 1268[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1268 -> 1351[label="",style="solid", color="black", weight=3]; 1839 -> 782[label="",style="dashed", color="red", weight=0]; 1839[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1839 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1839 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1840[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="black",shape="triangle"];1840 -> 1851[label="",style="solid", color="black", weight=3]; 1838[label="xuu114 > xuu113",fontsize=16,color="black",shape="triangle"];1838 -> 1852[label="",style="solid", color="black", weight=3]; 1360[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];1360 -> 1433[label="",style="solid", color="black", weight=3]; 1361[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];1361 -> 1434[label="",style="solid", color="black", weight=3]; 4286[label="FiniteMap.mkBranchResult xuu233 xuu234 xuu236 xuu235",fontsize=16,color="black",shape="box"];4286 -> 4352[label="",style="solid", color="black", weight=3]; 1301[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1301 -> 1422[label="",style="solid", color="black", weight=3]; 1841 -> 782[label="",style="dashed", color="red", weight=0]; 1841[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1841 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1841 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1842[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="black",shape="triangle"];1842 -> 1855[label="",style="solid", color="black", weight=3]; 1431[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];1431 -> 1455[label="",style="solid", color="black", weight=3]; 1432[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];1432 -> 1456[label="",style="solid", color="black", weight=3]; 2336 -> 2205[label="",style="dashed", color="red", weight=0]; 2336[label="xuu39 == xuu34",fontsize=16,color="magenta"];2336 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2206[label="",style="dashed", color="red", weight=0]; 2337[label="xuu39 == xuu34",fontsize=16,color="magenta"];2337 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2207[label="",style="dashed", color="red", weight=0]; 2338[label="xuu39 == xuu34",fontsize=16,color="magenta"];2338 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2208[label="",style="dashed", color="red", weight=0]; 2339[label="xuu39 == xuu34",fontsize=16,color="magenta"];2339 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2209[label="",style="dashed", color="red", weight=0]; 2340[label="xuu39 == xuu34",fontsize=16,color="magenta"];2340 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2341 -> 83[label="",style="dashed", color="red", weight=0]; 2341[label="xuu39 == xuu34",fontsize=16,color="magenta"];2341 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2211[label="",style="dashed", color="red", weight=0]; 2342[label="xuu39 == xuu34",fontsize=16,color="magenta"];2342 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2212[label="",style="dashed", color="red", weight=0]; 2343[label="xuu39 == xuu34",fontsize=16,color="magenta"];2343 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2213[label="",style="dashed", color="red", weight=0]; 2344[label="xuu39 == xuu34",fontsize=16,color="magenta"];2344 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2214[label="",style="dashed", color="red", weight=0]; 2345[label="xuu39 == xuu34",fontsize=16,color="magenta"];2345 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2215[label="",style="dashed", color="red", weight=0]; 2346[label="xuu39 == xuu34",fontsize=16,color="magenta"];2346 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2216[label="",style="dashed", color="red", weight=0]; 2347[label="xuu39 == xuu34",fontsize=16,color="magenta"];2347 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2217[label="",style="dashed", color="red", weight=0]; 2348[label="xuu39 == xuu34",fontsize=16,color="magenta"];2348 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2218[label="",style="dashed", color="red", weight=0]; 2349[label="xuu39 == xuu34",fontsize=16,color="magenta"];2349 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2435[label="",style="dashed", color="magenta", weight=3]; 3151[label="xuu60000",fontsize=16,color="green",shape="box"];3152[label="xuu31100000",fontsize=16,color="green",shape="box"];1236[label="primMulInt (Pos xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];4756[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1236 -> 4756[label="",style="solid", color="burlywood", weight=9]; 4756 -> 1308[label="",style="solid", color="burlywood", weight=3]; 4757[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1236 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1237[label="primMulInt (Neg xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];4758[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1237 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 1310[label="",style="solid", color="burlywood", weight=3]; 4759[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1237 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 1311[label="",style="solid", color="burlywood", weight=3]; 3184[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3184 -> 3194[label="",style="solid", color="black", weight=3]; 3183[label="xuu163 /= GT",fontsize=16,color="black",shape="triangle"];3183 -> 3195[label="",style="solid", color="black", weight=3]; 3154[label="(xuu50000,xuu50001) <= (xuu51000,xuu51001)",fontsize=16,color="black",shape="box"];3154 -> 3196[label="",style="solid", color="black", weight=3]; 3185[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4760[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 3197[label="",style="solid", color="burlywood", weight=3]; 3156[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3156 -> 3198[label="",style="solid", color="black", weight=3]; 3157[label="Nothing <= Just xuu51000",fontsize=16,color="black",shape="box"];3157 -> 3199[label="",style="solid", color="black", weight=3]; 3158[label="Just xuu50000 <= Nothing",fontsize=16,color="black",shape="box"];3158 -> 3200[label="",style="solid", color="black", weight=3]; 3159[label="Just xuu50000 <= Just xuu51000",fontsize=16,color="black",shape="box"];3159 -> 3201[label="",style="solid", color="black", weight=3]; 3186[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4761[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 3202[label="",style="solid", color="burlywood", weight=3]; 3187[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3187 -> 3203[label="",style="solid", color="black", weight=3]; 3162[label="False <= False",fontsize=16,color="black",shape="box"];3162 -> 3204[label="",style="solid", color="black", weight=3]; 3163[label="False <= True",fontsize=16,color="black",shape="box"];3163 -> 3205[label="",style="solid", color="black", weight=3]; 3164[label="True <= False",fontsize=16,color="black",shape="box"];3164 -> 3206[label="",style="solid", color="black", weight=3]; 3165[label="True <= True",fontsize=16,color="black",shape="box"];3165 -> 3207[label="",style="solid", color="black", weight=3]; 3166[label="Left xuu50000 <= Left xuu51000",fontsize=16,color="black",shape="box"];3166 -> 3208[label="",style="solid", color="black", weight=3]; 3167[label="Left xuu50000 <= Right xuu51000",fontsize=16,color="black",shape="box"];3167 -> 3209[label="",style="solid", color="black", weight=3]; 3168[label="Right xuu50000 <= Left xuu51000",fontsize=16,color="black",shape="box"];3168 -> 3210[label="",style="solid", color="black", weight=3]; 3169[label="Right xuu50000 <= Right xuu51000",fontsize=16,color="black",shape="box"];3169 -> 3211[label="",style="solid", color="black", weight=3]; 3170[label="LT <= LT",fontsize=16,color="black",shape="box"];3170 -> 3212[label="",style="solid", color="black", weight=3]; 3171[label="LT <= EQ",fontsize=16,color="black",shape="box"];3171 -> 3213[label="",style="solid", color="black", weight=3]; 3172[label="LT <= GT",fontsize=16,color="black",shape="box"];3172 -> 3214[label="",style="solid", color="black", weight=3]; 3173[label="EQ <= LT",fontsize=16,color="black",shape="box"];3173 -> 3215[label="",style="solid", color="black", weight=3]; 3174[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3174 -> 3216[label="",style="solid", color="black", weight=3]; 3175[label="EQ <= GT",fontsize=16,color="black",shape="box"];3175 -> 3217[label="",style="solid", color="black", weight=3]; 3176[label="GT <= LT",fontsize=16,color="black",shape="box"];3176 -> 3218[label="",style="solid", color="black", weight=3]; 3177[label="GT <= EQ",fontsize=16,color="black",shape="box"];3177 -> 3219[label="",style="solid", color="black", weight=3]; 3178[label="GT <= GT",fontsize=16,color="black",shape="box"];3178 -> 3220[label="",style="solid", color="black", weight=3]; 3188[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3188 -> 3221[label="",style="solid", color="black", weight=3]; 3180[label="(xuu50000,xuu50001,xuu50002) <= (xuu51000,xuu51001,xuu51002)",fontsize=16,color="black",shape="box"];3180 -> 3222[label="",style="solid", color="black", weight=3]; 3189[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4762[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];3189 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 3223[label="",style="solid", color="burlywood", weight=3]; 3190[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4763[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 3224[label="",style="solid", color="burlywood", weight=3]; 4764[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4764[label="",style="solid", color="burlywood", weight=9]; 4764 -> 3225[label="",style="solid", color="burlywood", weight=3]; 3191 -> 1329[label="",style="dashed", color="red", weight=0]; 3191[label="compare xuu5000 xuu5100",fontsize=16,color="magenta"];3191 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3191 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3192[label="compare0 (Left xuu153) (Left xuu154) True",fontsize=16,color="black",shape="box"];3192 -> 3242[label="",style="solid", color="black", weight=3]; 3193[label="compare0 (Right xuu160) (Right xuu161) True",fontsize=16,color="black",shape="box"];3193 -> 3243[label="",style="solid", color="black", weight=3]; 2380[label="xuu17",fontsize=16,color="green",shape="box"];2381[label="xuu22",fontsize=16,color="green",shape="box"];2382[label="xuu17",fontsize=16,color="green",shape="box"];2383[label="xuu22",fontsize=16,color="green",shape="box"];2384[label="xuu17",fontsize=16,color="green",shape="box"];2385[label="xuu22",fontsize=16,color="green",shape="box"];2386[label="xuu17",fontsize=16,color="green",shape="box"];2387[label="xuu22",fontsize=16,color="green",shape="box"];2388[label="xuu17",fontsize=16,color="green",shape="box"];2389[label="xuu22",fontsize=16,color="green",shape="box"];2390[label="xuu17",fontsize=16,color="green",shape="box"];2391[label="xuu22",fontsize=16,color="green",shape="box"];2392[label="xuu17",fontsize=16,color="green",shape="box"];2393[label="xuu22",fontsize=16,color="green",shape="box"];2394[label="xuu17",fontsize=16,color="green",shape="box"];2395[label="xuu22",fontsize=16,color="green",shape="box"];2396[label="xuu17",fontsize=16,color="green",shape="box"];2397[label="xuu22",fontsize=16,color="green",shape="box"];2398[label="xuu17",fontsize=16,color="green",shape="box"];2399[label="xuu22",fontsize=16,color="green",shape="box"];2400[label="xuu17",fontsize=16,color="green",shape="box"];2401[label="xuu22",fontsize=16,color="green",shape="box"];2402[label="xuu17",fontsize=16,color="green",shape="box"];2403[label="xuu22",fontsize=16,color="green",shape="box"];2404[label="xuu17",fontsize=16,color="green",shape="box"];2405[label="xuu22",fontsize=16,color="green",shape="box"];2406[label="xuu17",fontsize=16,color="green",shape="box"];2407[label="xuu22",fontsize=16,color="green",shape="box"];1351[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu53) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4765[label="xuu53/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1351 -> 4765[label="",style="solid", color="burlywood", weight=9]; 4765 -> 1527[label="",style="solid", color="burlywood", weight=3]; 4766[label="xuu53/FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=10,color="white",style="solid",shape="box"];1351 -> 4766[label="",style="solid", color="burlywood", weight=9]; 4766 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1849 -> 1848[label="",style="dashed", color="red", weight=0]; 1849[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1850[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1850 -> 1872[label="",style="solid", color="black", weight=3]; 1851[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4767[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1851 -> 4767[label="",style="solid", color="burlywood", weight=9]; 4767 -> 1873[label="",style="solid", color="burlywood", weight=3]; 4768[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1851 -> 4768[label="",style="solid", color="burlywood", weight=9]; 4768 -> 1874[label="",style="solid", color="burlywood", weight=3]; 1852 -> 83[label="",style="dashed", color="red", weight=0]; 1852[label="compare xuu114 xuu113 == GT",fontsize=16,color="magenta"];1852 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1834[label="",style="dashed", color="red", weight=0]; 1433[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)",fontsize=16,color="magenta"];1433 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1434[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 xuu64 xuu53 xuu53 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4769[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1434 -> 4769[label="",style="solid", color="burlywood", weight=9]; 4769 -> 1536[label="",style="solid", color="burlywood", weight=3]; 4770[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1434 -> 4770[label="",style="solid", color="burlywood", weight=9]; 4770 -> 1537[label="",style="solid", color="burlywood", weight=3]; 4352[label="FiniteMap.Branch xuu233 xuu234 (FiniteMap.mkBranchUnbox xuu236 xuu233 xuu235 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235 + FiniteMap.mkBranchRight_size xuu236 xuu233 xuu235)) xuu235 xuu236",fontsize=16,color="green",shape="box"];4352 -> 4358[label="",style="dashed", color="green", weight=3]; 1422[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu45) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4771[label="xuu45/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1422 -> 4771[label="",style="solid", color="burlywood", weight=9]; 4771 -> 1539[label="",style="solid", color="burlywood", weight=3]; 4772[label="xuu45/FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=10,color="white",style="solid",shape="box"];1422 -> 4772[label="",style="solid", color="burlywood", weight=9]; 4772 -> 1540[label="",style="solid", color="burlywood", weight=3]; 1853[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="black",shape="triangle"];1853 -> 1877[label="",style="solid", color="black", weight=3]; 1854 -> 1850[label="",style="dashed", color="red", weight=0]; 1854[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1855 -> 1851[label="",style="dashed", color="red", weight=0]; 1855[label="FiniteMap.sizeFM xuu64",fontsize=16,color="magenta"];1455 -> 1868[label="",style="dashed", color="red", weight=0]; 1455[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)",fontsize=16,color="magenta"];1455 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1456[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 xuu64 xuu45 xuu45 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4773[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1456 -> 4773[label="",style="solid", color="burlywood", weight=9]; 4773 -> 1547[label="",style="solid", color="burlywood", weight=3]; 4774[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1456 -> 4774[label="",style="solid", color="burlywood", weight=9]; 4774 -> 1548[label="",style="solid", color="burlywood", weight=3]; 2408[label="xuu34",fontsize=16,color="green",shape="box"];2409[label="xuu39",fontsize=16,color="green",shape="box"];2410[label="xuu34",fontsize=16,color="green",shape="box"];2411[label="xuu39",fontsize=16,color="green",shape="box"];2412[label="xuu34",fontsize=16,color="green",shape="box"];2413[label="xuu39",fontsize=16,color="green",shape="box"];2414[label="xuu34",fontsize=16,color="green",shape="box"];2415[label="xuu39",fontsize=16,color="green",shape="box"];2416[label="xuu34",fontsize=16,color="green",shape="box"];2417[label="xuu39",fontsize=16,color="green",shape="box"];2418[label="xuu34",fontsize=16,color="green",shape="box"];2419[label="xuu39",fontsize=16,color="green",shape="box"];2420[label="xuu34",fontsize=16,color="green",shape="box"];2421[label="xuu39",fontsize=16,color="green",shape="box"];2422[label="xuu34",fontsize=16,color="green",shape="box"];2423[label="xuu39",fontsize=16,color="green",shape="box"];2424[label="xuu34",fontsize=16,color="green",shape="box"];2425[label="xuu39",fontsize=16,color="green",shape="box"];2426[label="xuu34",fontsize=16,color="green",shape="box"];2427[label="xuu39",fontsize=16,color="green",shape="box"];2428[label="xuu34",fontsize=16,color="green",shape="box"];2429[label="xuu39",fontsize=16,color="green",shape="box"];2430[label="xuu34",fontsize=16,color="green",shape="box"];2431[label="xuu39",fontsize=16,color="green",shape="box"];2432[label="xuu34",fontsize=16,color="green",shape="box"];2433[label="xuu39",fontsize=16,color="green",shape="box"];2434[label="xuu34",fontsize=16,color="green",shape="box"];2435[label="xuu39",fontsize=16,color="green",shape="box"];1308[label="primMulInt (Pos xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1308 -> 1439[label="",style="solid", color="black", weight=3]; 1309[label="primMulInt (Pos xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1309 -> 1440[label="",style="solid", color="black", weight=3]; 1310[label="primMulInt (Neg xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1310 -> 1441[label="",style="solid", color="black", weight=3]; 1311[label="primMulInt (Neg xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1311 -> 1442[label="",style="solid", color="black", weight=3]; 3194[label="primCmpDouble xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4775[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];3194 -> 4775[label="",style="solid", color="burlywood", weight=9]; 4775 -> 3244[label="",style="solid", color="burlywood", weight=3]; 3195 -> 3245[label="",style="dashed", color="red", weight=0]; 3195[label="not (xuu163 == GT)",fontsize=16,color="magenta"];3195 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3311[label="",style="dashed", color="red", weight=0]; 3196[label="xuu50000 < xuu51000 || xuu50000 == xuu51000 && xuu50001 <= xuu51001",fontsize=16,color="magenta"];3196 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3197[label="compare (Integer xuu50000) xuu5100",fontsize=16,color="burlywood",shape="box"];4776[label="xuu5100/Integer xuu51000",fontsize=10,color="white",style="solid",shape="box"];3197 -> 4776[label="",style="solid", color="burlywood", weight=9]; 4776 -> 3252[label="",style="solid", color="burlywood", weight=3]; 3198[label="True",fontsize=16,color="green",shape="box"];3199[label="True",fontsize=16,color="green",shape="box"];3200[label="False",fontsize=16,color="green",shape="box"];3201[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4777[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4777[label="",style="solid", color="blue", weight=9]; 4777 -> 3253[label="",style="solid", color="blue", weight=3]; 4778[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4778[label="",style="solid", color="blue", weight=9]; 4778 -> 3254[label="",style="solid", color="blue", weight=3]; 4779[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4779[label="",style="solid", color="blue", weight=9]; 4779 -> 3255[label="",style="solid", color="blue", weight=3]; 4780[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4780[label="",style="solid", color="blue", weight=9]; 4780 -> 3256[label="",style="solid", color="blue", weight=3]; 4781[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4781[label="",style="solid", color="blue", weight=9]; 4781 -> 3257[label="",style="solid", color="blue", weight=3]; 4782[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4782[label="",style="solid", color="blue", weight=9]; 4782 -> 3258[label="",style="solid", color="blue", weight=3]; 4783[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4783[label="",style="solid", color="blue", weight=9]; 4783 -> 3259[label="",style="solid", color="blue", weight=3]; 4784[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4784[label="",style="solid", color="blue", weight=9]; 4784 -> 3260[label="",style="solid", color="blue", weight=3]; 4785[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4785[label="",style="solid", color="blue", weight=9]; 4785 -> 3261[label="",style="solid", color="blue", weight=3]; 4786[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4786[label="",style="solid", color="blue", weight=9]; 4786 -> 3262[label="",style="solid", color="blue", weight=3]; 4787[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4787[label="",style="solid", color="blue", weight=9]; 4787 -> 3263[label="",style="solid", color="blue", weight=3]; 4788[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4788[label="",style="solid", color="blue", weight=9]; 4788 -> 3264[label="",style="solid", color="blue", weight=3]; 4789[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4789[label="",style="solid", color="blue", weight=9]; 4789 -> 3265[label="",style="solid", color="blue", weight=3]; 4790[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 4790[label="",style="solid", color="blue", weight=9]; 4790 -> 3266[label="",style="solid", color="blue", weight=3]; 3202[label="compare () xuu5100",fontsize=16,color="burlywood",shape="box"];4791[label="xuu5100/()",fontsize=10,color="white",style="solid",shape="box"];3202 -> 4791[label="",style="solid", color="burlywood", weight=9]; 4791 -> 3267[label="",style="solid", color="burlywood", weight=3]; 3203[label="primCmpFloat xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4792[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];3203 -> 4792[label="",style="solid", color="burlywood", weight=9]; 4792 -> 3268[label="",style="solid", color="burlywood", weight=3]; 3204[label="True",fontsize=16,color="green",shape="box"];3205[label="True",fontsize=16,color="green",shape="box"];3206[label="False",fontsize=16,color="green",shape="box"];3207[label="True",fontsize=16,color="green",shape="box"];3208[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4793[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4793[label="",style="solid", color="blue", weight=9]; 4793 -> 3269[label="",style="solid", color="blue", weight=3]; 4794[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4794[label="",style="solid", color="blue", weight=9]; 4794 -> 3270[label="",style="solid", color="blue", weight=3]; 4795[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4795[label="",style="solid", color="blue", weight=9]; 4795 -> 3271[label="",style="solid", color="blue", weight=3]; 4796[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4796[label="",style="solid", color="blue", weight=9]; 4796 -> 3272[label="",style="solid", color="blue", weight=3]; 4797[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4797[label="",style="solid", color="blue", weight=9]; 4797 -> 3273[label="",style="solid", color="blue", weight=3]; 4798[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4798[label="",style="solid", color="blue", weight=9]; 4798 -> 3274[label="",style="solid", color="blue", weight=3]; 4799[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4799[label="",style="solid", color="blue", weight=9]; 4799 -> 3275[label="",style="solid", color="blue", weight=3]; 4800[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4800[label="",style="solid", color="blue", weight=9]; 4800 -> 3276[label="",style="solid", color="blue", weight=3]; 4801[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4801[label="",style="solid", color="blue", weight=9]; 4801 -> 3277[label="",style="solid", color="blue", weight=3]; 4802[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4802[label="",style="solid", color="blue", weight=9]; 4802 -> 3278[label="",style="solid", color="blue", weight=3]; 4803[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4803[label="",style="solid", color="blue", weight=9]; 4803 -> 3279[label="",style="solid", color="blue", weight=3]; 4804[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 3280[label="",style="solid", color="blue", weight=3]; 4805[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 3281[label="",style="solid", color="blue", weight=3]; 4806[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 3282[label="",style="solid", color="blue", weight=3]; 3209[label="True",fontsize=16,color="green",shape="box"];3210[label="False",fontsize=16,color="green",shape="box"];3211[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4807[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 3283[label="",style="solid", color="blue", weight=3]; 4808[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 3284[label="",style="solid", color="blue", weight=3]; 4809[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 3285[label="",style="solid", color="blue", weight=3]; 4810[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 3286[label="",style="solid", color="blue", weight=3]; 4811[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 3287[label="",style="solid", color="blue", weight=3]; 4812[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 3288[label="",style="solid", color="blue", weight=3]; 4813[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 3289[label="",style="solid", color="blue", weight=3]; 4814[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 3290[label="",style="solid", color="blue", weight=3]; 4815[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 3291[label="",style="solid", color="blue", weight=3]; 4816[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 3292[label="",style="solid", color="blue", weight=3]; 4817[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 3293[label="",style="solid", color="blue", weight=3]; 4818[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 3294[label="",style="solid", color="blue", weight=3]; 4819[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 3295[label="",style="solid", color="blue", weight=3]; 4820[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 3296[label="",style="solid", color="blue", weight=3]; 3212[label="True",fontsize=16,color="green",shape="box"];3213[label="True",fontsize=16,color="green",shape="box"];3214[label="True",fontsize=16,color="green",shape="box"];3215[label="False",fontsize=16,color="green",shape="box"];3216[label="True",fontsize=16,color="green",shape="box"];3217[label="True",fontsize=16,color="green",shape="box"];3218[label="False",fontsize=16,color="green",shape="box"];3219[label="False",fontsize=16,color="green",shape="box"];3220[label="True",fontsize=16,color="green",shape="box"];3221[label="primCmpChar xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4821[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4821[label="",style="solid", color="burlywood", weight=9]; 4821 -> 3297[label="",style="solid", color="burlywood", weight=3]; 3222 -> 3311[label="",style="dashed", color="red", weight=0]; 3222[label="xuu50000 < xuu51000 || xuu50000 == xuu51000 && (xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002)",fontsize=16,color="magenta"];3222 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3223[label="compare (xuu50000 :% xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4822[label="xuu5100/xuu51000 :% xuu51001",fontsize=10,color="white",style="solid",shape="box"];3223 -> 4822[label="",style="solid", color="burlywood", weight=9]; 4822 -> 3298[label="",style="solid", color="burlywood", weight=3]; 3224[label="compare (xuu50000 : xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4823[label="xuu5100/xuu51000 : xuu51001",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4823[label="",style="solid", color="burlywood", weight=9]; 4823 -> 3299[label="",style="solid", color="burlywood", weight=3]; 4824[label="xuu5100/[]",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4824[label="",style="solid", color="burlywood", weight=9]; 4824 -> 3300[label="",style="solid", color="burlywood", weight=3]; 3225[label="compare [] xuu5100",fontsize=16,color="burlywood",shape="box"];4825[label="xuu5100/xuu51000 : xuu51001",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4825[label="",style="solid", color="burlywood", weight=9]; 4825 -> 3301[label="",style="solid", color="burlywood", weight=3]; 4826[label="xuu5100/[]",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4826[label="",style="solid", color="burlywood", weight=9]; 4826 -> 3302[label="",style="solid", color="burlywood", weight=3]; 3226[label="xuu5000",fontsize=16,color="green",shape="box"];3227[label="xuu5100",fontsize=16,color="green",shape="box"];1329[label="compare xuu50 xuu51",fontsize=16,color="black",shape="triangle"];1329 -> 1526[label="",style="solid", color="black", weight=3]; 3242[label="GT",fontsize=16,color="green",shape="box"];3243[label="GT",fontsize=16,color="green",shape="box"];1527[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1527 -> 1654[label="",style="solid", color="black", weight=3]; 1528[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1528 -> 1655[label="",style="solid", color="black", weight=3]; 1848[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="black",shape="triangle"];1848 -> 1860[label="",style="solid", color="black", weight=3]; 1872[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1873[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1873 -> 1979[label="",style="solid", color="black", weight=3]; 1874[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1874 -> 1980[label="",style="solid", color="black", weight=3]; 1875[label="GT",fontsize=16,color="green",shape="box"];1876 -> 1329[label="",style="dashed", color="red", weight=0]; 1876[label="compare xuu114 xuu113",fontsize=16,color="magenta"];1876 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1838[label="",style="dashed", color="red", weight=0]; 1835[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1835 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1834[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu111",fontsize=16,color="burlywood",shape="triangle"];4827[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];1834 -> 4827[label="",style="solid", color="burlywood", weight=9]; 4827 -> 1856[label="",style="solid", color="burlywood", weight=3]; 4828[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];1834 -> 4828[label="",style="solid", color="burlywood", weight=9]; 4828 -> 1857[label="",style="solid", color="burlywood", weight=3]; 1536[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 FiniteMap.EmptyFM xuu53 xuu53 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1536 -> 1663[label="",style="solid", color="black", weight=3]; 1537[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1537 -> 1664[label="",style="solid", color="black", weight=3]; 4358[label="FiniteMap.mkBranchUnbox xuu236 xuu233 xuu235 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235 + FiniteMap.mkBranchRight_size xuu236 xuu233 xuu235)",fontsize=16,color="black",shape="box"];4358 -> 4359[label="",style="solid", color="black", weight=3]; 1539[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1539 -> 1666[label="",style="solid", color="black", weight=3]; 1540[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1540 -> 1667[label="",style="solid", color="black", weight=3]; 1877 -> 1851[label="",style="dashed", color="red", weight=0]; 1877[label="FiniteMap.sizeFM xuu45",fontsize=16,color="magenta"];1877 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1838[label="",style="dashed", color="red", weight=0]; 1869[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1869 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1868[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu117",fontsize=16,color="burlywood",shape="triangle"];4829[label="xuu117/False",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4829[label="",style="solid", color="burlywood", weight=9]; 4829 -> 1880[label="",style="solid", color="burlywood", weight=3]; 4830[label="xuu117/True",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4830[label="",style="solid", color="burlywood", weight=9]; 4830 -> 1881[label="",style="solid", color="burlywood", weight=3]; 1547[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 FiniteMap.EmptyFM xuu45 xuu45 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1547 -> 1674[label="",style="solid", color="black", weight=3]; 1548[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1548 -> 1675[label="",style="solid", color="black", weight=3]; 1439[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1439 -> 1550[label="",style="dashed", color="green", weight=3]; 1440[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1440 -> 1551[label="",style="dashed", color="green", weight=3]; 1441[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1441 -> 1552[label="",style="dashed", color="green", weight=3]; 1442[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1442 -> 1553[label="",style="dashed", color="green", weight=3]; 3244[label="primCmpDouble (Double xuu50000 xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4831[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4831[label="",style="solid", color="burlywood", weight=9]; 4831 -> 3303[label="",style="solid", color="burlywood", weight=3]; 4832[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4832[label="",style="solid", color="burlywood", weight=9]; 4832 -> 3304[label="",style="solid", color="burlywood", weight=3]; 3246 -> 83[label="",style="dashed", color="red", weight=0]; 3246[label="xuu163 == GT",fontsize=16,color="magenta"];3246 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3245[label="not xuu173",fontsize=16,color="burlywood",shape="triangle"];4833[label="xuu173/False",fontsize=10,color="white",style="solid",shape="box"];3245 -> 4833[label="",style="solid", color="burlywood", weight=9]; 4833 -> 3307[label="",style="solid", color="burlywood", weight=3]; 4834[label="xuu173/True",fontsize=10,color="white",style="solid",shape="box"];3245 -> 4834[label="",style="solid", color="burlywood", weight=9]; 4834 -> 3308[label="",style="solid", color="burlywood", weight=3]; 3312[label="xuu50000 < xuu51000",fontsize=16,color="blue",shape="box"];4835[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 3318[label="",style="solid", color="blue", weight=3]; 4836[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 3319[label="",style="solid", color="blue", weight=3]; 4837[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4837[label="",style="solid", color="blue", weight=9]; 4837 -> 3320[label="",style="solid", color="blue", weight=3]; 4838[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4838[label="",style="solid", color="blue", weight=9]; 4838 -> 3321[label="",style="solid", color="blue", weight=3]; 4839[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4839[label="",style="solid", color="blue", weight=9]; 4839 -> 3322[label="",style="solid", color="blue", weight=3]; 4840[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4840[label="",style="solid", color="blue", weight=9]; 4840 -> 3323[label="",style="solid", color="blue", weight=3]; 4841[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4841[label="",style="solid", color="blue", weight=9]; 4841 -> 3324[label="",style="solid", color="blue", weight=3]; 4842[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4842[label="",style="solid", color="blue", weight=9]; 4842 -> 3325[label="",style="solid", color="blue", weight=3]; 4843[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4843[label="",style="solid", color="blue", weight=9]; 4843 -> 3326[label="",style="solid", color="blue", weight=3]; 4844[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4844[label="",style="solid", color="blue", weight=9]; 4844 -> 3327[label="",style="solid", color="blue", weight=3]; 4845[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4845[label="",style="solid", color="blue", weight=9]; 4845 -> 3328[label="",style="solid", color="blue", weight=3]; 4846[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4846[label="",style="solid", color="blue", weight=9]; 4846 -> 3329[label="",style="solid", color="blue", weight=3]; 4847[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4847[label="",style="solid", color="blue", weight=9]; 4847 -> 3330[label="",style="solid", color="blue", weight=3]; 4848[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3312 -> 4848[label="",style="solid", color="blue", weight=9]; 4848 -> 3331[label="",style="solid", color="blue", weight=3]; 3313 -> 2612[label="",style="dashed", color="red", weight=0]; 3313[label="xuu50000 == xuu51000 && xuu50001 <= xuu51001",fontsize=16,color="magenta"];3313 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3311[label="xuu178 || xuu179",fontsize=16,color="burlywood",shape="triangle"];4849[label="xuu178/False",fontsize=10,color="white",style="solid",shape="box"];3311 -> 4849[label="",style="solid", color="burlywood", weight=9]; 4849 -> 3334[label="",style="solid", color="burlywood", weight=3]; 4850[label="xuu178/True",fontsize=10,color="white",style="solid",shape="box"];3311 -> 4850[label="",style="solid", color="burlywood", weight=9]; 4850 -> 3335[label="",style="solid", color="burlywood", weight=3]; 3252[label="compare (Integer xuu50000) (Integer xuu51000)",fontsize=16,color="black",shape="box"];3252 -> 3336[label="",style="solid", color="black", weight=3]; 3253 -> 2949[label="",style="dashed", color="red", weight=0]; 3253[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3253 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3253 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3254 -> 2950[label="",style="dashed", color="red", weight=0]; 3254[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3254 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3254 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3255 -> 2951[label="",style="dashed", color="red", weight=0]; 3255[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3255 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3255 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3256 -> 2952[label="",style="dashed", color="red", weight=0]; 3256[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3256 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3256 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3257 -> 2953[label="",style="dashed", color="red", weight=0]; 3257[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3257 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3257 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3258 -> 2954[label="",style="dashed", color="red", weight=0]; 3258[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3258 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3258 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3259 -> 2955[label="",style="dashed", color="red", weight=0]; 3259[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3259 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3259 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3260 -> 2956[label="",style="dashed", color="red", weight=0]; 3260[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3260 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3260 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3261 -> 2957[label="",style="dashed", color="red", weight=0]; 3261[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3261 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3261 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3262 -> 2958[label="",style="dashed", color="red", weight=0]; 3262[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3262 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3262 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3263 -> 2959[label="",style="dashed", color="red", weight=0]; 3263[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3263 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3263 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3264 -> 2960[label="",style="dashed", color="red", weight=0]; 3264[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3264 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3264 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3265 -> 2961[label="",style="dashed", color="red", weight=0]; 3265[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3265 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3265 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3266 -> 2962[label="",style="dashed", color="red", weight=0]; 3266[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3266 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3266 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3267[label="compare () ()",fontsize=16,color="black",shape="box"];3267 -> 3365[label="",style="solid", color="black", weight=3]; 3268[label="primCmpFloat (Float xuu50000 xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4851[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];3268 -> 4851[label="",style="solid", color="burlywood", weight=9]; 4851 -> 3366[label="",style="solid", color="burlywood", weight=3]; 4852[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];3268 -> 4852[label="",style="solid", color="burlywood", weight=9]; 4852 -> 3367[label="",style="solid", color="burlywood", weight=3]; 3269 -> 2949[label="",style="dashed", color="red", weight=0]; 3269[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3269 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3269 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3270 -> 2950[label="",style="dashed", color="red", weight=0]; 3270[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3270 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3270 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3271 -> 2951[label="",style="dashed", color="red", weight=0]; 3271[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3271 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3271 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3272 -> 2952[label="",style="dashed", color="red", weight=0]; 3272[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3272 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3272 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3273 -> 2953[label="",style="dashed", color="red", weight=0]; 3273[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3273 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3274 -> 2954[label="",style="dashed", color="red", weight=0]; 3274[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3274 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3275 -> 2955[label="",style="dashed", color="red", weight=0]; 3275[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3275 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3275 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3276 -> 2956[label="",style="dashed", color="red", weight=0]; 3276[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3276 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3276 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3277 -> 2957[label="",style="dashed", color="red", weight=0]; 3277[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3277 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3277 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3278 -> 2958[label="",style="dashed", color="red", weight=0]; 3278[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3278 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3279 -> 2959[label="",style="dashed", color="red", weight=0]; 3279[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3279 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3280 -> 2960[label="",style="dashed", color="red", weight=0]; 3280[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3280 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3281 -> 2961[label="",style="dashed", color="red", weight=0]; 3281[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3281 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3281 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3282 -> 2962[label="",style="dashed", color="red", weight=0]; 3282[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3282 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3283 -> 2949[label="",style="dashed", color="red", weight=0]; 3283[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3283 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3284 -> 2950[label="",style="dashed", color="red", weight=0]; 3284[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3284 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3285 -> 2951[label="",style="dashed", color="red", weight=0]; 3285[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3285 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3286 -> 2952[label="",style="dashed", color="red", weight=0]; 3286[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3286 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3287 -> 2953[label="",style="dashed", color="red", weight=0]; 3287[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3287 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3288 -> 2954[label="",style="dashed", color="red", weight=0]; 3288[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3288 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3289 -> 2955[label="",style="dashed", color="red", weight=0]; 3289[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3289 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3290 -> 2956[label="",style="dashed", color="red", weight=0]; 3290[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3290 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3291 -> 2957[label="",style="dashed", color="red", weight=0]; 3291[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3291 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3292 -> 2958[label="",style="dashed", color="red", weight=0]; 3292[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3292 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3293 -> 2959[label="",style="dashed", color="red", weight=0]; 3293[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3293 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3294 -> 2960[label="",style="dashed", color="red", weight=0]; 3294[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3294 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3295 -> 2961[label="",style="dashed", color="red", weight=0]; 3295[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3295 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3296 -> 2962[label="",style="dashed", color="red", weight=0]; 3296[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3296 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3297[label="primCmpChar (Char xuu50000) xuu5100",fontsize=16,color="burlywood",shape="box"];4853[label="xuu5100/Char xuu51000",fontsize=10,color="white",style="solid",shape="box"];3297 -> 4853[label="",style="solid", color="burlywood", weight=9]; 4853 -> 3424[label="",style="solid", color="burlywood", weight=3]; 3314[label="xuu50000 < xuu51000",fontsize=16,color="blue",shape="box"];4854[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 3425[label="",style="solid", color="blue", weight=3]; 4855[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4855[label="",style="solid", color="blue", weight=9]; 4855 -> 3426[label="",style="solid", color="blue", weight=3]; 4856[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4856[label="",style="solid", color="blue", weight=9]; 4856 -> 3427[label="",style="solid", color="blue", weight=3]; 4857[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4857[label="",style="solid", color="blue", weight=9]; 4857 -> 3428[label="",style="solid", color="blue", weight=3]; 4858[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4858[label="",style="solid", color="blue", weight=9]; 4858 -> 3429[label="",style="solid", color="blue", weight=3]; 4859[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4859[label="",style="solid", color="blue", weight=9]; 4859 -> 3430[label="",style="solid", color="blue", weight=3]; 4860[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 3431[label="",style="solid", color="blue", weight=3]; 4861[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 3432[label="",style="solid", color="blue", weight=3]; 4862[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 3433[label="",style="solid", color="blue", weight=3]; 4863[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 3434[label="",style="solid", color="blue", weight=3]; 4864[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4864[label="",style="solid", color="blue", weight=9]; 4864 -> 3435[label="",style="solid", color="blue", weight=3]; 4865[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4865[label="",style="solid", color="blue", weight=9]; 4865 -> 3436[label="",style="solid", color="blue", weight=3]; 4866[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4866[label="",style="solid", color="blue", weight=9]; 4866 -> 3437[label="",style="solid", color="blue", weight=3]; 4867[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4867[label="",style="solid", color="blue", weight=9]; 4867 -> 3438[label="",style="solid", color="blue", weight=3]; 3315 -> 2612[label="",style="dashed", color="red", weight=0]; 3315[label="xuu50000 == xuu51000 && (xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002)",fontsize=16,color="magenta"];3315 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3298[label="compare (xuu50000 :% xuu50001) (xuu51000 :% xuu51001)",fontsize=16,color="black",shape="box"];3298 -> 3441[label="",style="solid", color="black", weight=3]; 3299[label="compare (xuu50000 : xuu50001) (xuu51000 : xuu51001)",fontsize=16,color="black",shape="box"];3299 -> 3442[label="",style="solid", color="black", weight=3]; 3300[label="compare (xuu50000 : xuu50001) []",fontsize=16,color="black",shape="box"];3300 -> 3443[label="",style="solid", color="black", weight=3]; 3301[label="compare [] (xuu51000 : xuu51001)",fontsize=16,color="black",shape="box"];3301 -> 3444[label="",style="solid", color="black", weight=3]; 3302[label="compare [] []",fontsize=16,color="black",shape="box"];3302 -> 3445[label="",style="solid", color="black", weight=3]; 1526[label="primCmpInt xuu50 xuu51",fontsize=16,color="burlywood",shape="triangle"];4868[label="xuu50/Pos xuu500",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4868[label="",style="solid", color="burlywood", weight=9]; 4868 -> 1652[label="",style="solid", color="burlywood", weight=3]; 4869[label="xuu50/Neg xuu500",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4869[label="",style="solid", color="burlywood", weight=9]; 4869 -> 1653[label="",style="solid", color="burlywood", weight=3]; 1654 -> 1526[label="",style="dashed", color="red", weight=0]; 1654[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1654 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1526[label="",style="dashed", color="red", weight=0]; 1655[label="primCmpInt (primPlusInt xuu532 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1655 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1860 -> 1851[label="",style="dashed", color="red", weight=0]; 1860[label="FiniteMap.sizeFM xuu53",fontsize=16,color="magenta"];1860 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1979[label="Pos Zero",fontsize=16,color="green",shape="box"];1980[label="xuu642",fontsize=16,color="green",shape="box"];1981[label="xuu114",fontsize=16,color="green",shape="box"];1982[label="xuu113",fontsize=16,color="green",shape="box"];1847 -> 782[label="",style="dashed", color="red", weight=0]; 1847[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1847 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1847 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1856[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];1856 -> 1882[label="",style="solid", color="black", weight=3]; 1857[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];1857 -> 1883[label="",style="solid", color="black", weight=3]; 1663[label="error []",fontsize=16,color="red",shape="box"];1664[label="FiniteMap.mkBalBranch6MkBalBranch02 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1664 -> 1861[label="",style="solid", color="black", weight=3]; 4359[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235 + FiniteMap.mkBranchRight_size xuu236 xuu233 xuu235",fontsize=16,color="black",shape="box"];4359 -> 4360[label="",style="solid", color="black", weight=3]; 1666 -> 1526[label="",style="dashed", color="red", weight=0]; 1666[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1666 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1526[label="",style="dashed", color="red", weight=0]; 1667[label="primCmpInt (primPlusInt xuu452 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1667 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1983[label="xuu45",fontsize=16,color="green",shape="box"];1878 -> 782[label="",style="dashed", color="red", weight=0]; 1878[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1878 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1853[label="",style="dashed", color="red", weight=0]; 1879[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1880[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];1880 -> 1987[label="",style="solid", color="black", weight=3]; 1881[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];1881 -> 1988[label="",style="solid", color="black", weight=3]; 1674[label="error []",fontsize=16,color="red",shape="box"];1675[label="FiniteMap.mkBalBranch6MkBalBranch02 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1675 -> 1884[label="",style="solid", color="black", weight=3]; 1550[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="burlywood",shape="triangle"];4870[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4870[label="",style="solid", color="burlywood", weight=9]; 4870 -> 1677[label="",style="solid", color="burlywood", weight=3]; 4871[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4871[label="",style="solid", color="burlywood", weight=9]; 4871 -> 1678[label="",style="solid", color="burlywood", weight=3]; 1551 -> 1550[label="",style="dashed", color="red", weight=0]; 1551[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1551 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1550[label="",style="dashed", color="red", weight=0]; 1552[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1552 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1550[label="",style="dashed", color="red", weight=0]; 1553[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1553 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1682[label="",style="dashed", color="magenta", weight=3]; 3303[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4872[label="xuu5100/Double xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4872[label="",style="solid", color="burlywood", weight=9]; 4872 -> 3446[label="",style="solid", color="burlywood", weight=3]; 3304[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4873[label="xuu5100/Double xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3304 -> 4873[label="",style="solid", color="burlywood", weight=9]; 4873 -> 3447[label="",style="solid", color="burlywood", weight=3]; 3305[label="GT",fontsize=16,color="green",shape="box"];3306[label="xuu163",fontsize=16,color="green",shape="box"];3307[label="not False",fontsize=16,color="black",shape="box"];3307 -> 3448[label="",style="solid", color="black", weight=3]; 3308[label="not True",fontsize=16,color="black",shape="box"];3308 -> 3449[label="",style="solid", color="black", weight=3]; 3318[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3318 -> 3468[label="",style="solid", color="black", weight=3]; 3319[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3319 -> 3469[label="",style="solid", color="black", weight=3]; 3320[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3320 -> 3470[label="",style="solid", color="black", weight=3]; 3321[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3321 -> 3471[label="",style="solid", color="black", weight=3]; 3322[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3322 -> 3472[label="",style="solid", color="black", weight=3]; 3323[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3323 -> 3473[label="",style="solid", color="black", weight=3]; 3324[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3324 -> 3474[label="",style="solid", color="black", weight=3]; 3325[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3325 -> 3475[label="",style="solid", color="black", weight=3]; 3326[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3326 -> 3476[label="",style="solid", color="black", weight=3]; 3327[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3327 -> 3477[label="",style="solid", color="black", weight=3]; 3328[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3328 -> 3478[label="",style="solid", color="black", weight=3]; 3329[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3329 -> 3479[label="",style="solid", color="black", weight=3]; 3330[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3330 -> 3480[label="",style="solid", color="black", weight=3]; 3331 -> 1470[label="",style="dashed", color="red", weight=0]; 3331[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3331 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3332[label="xuu50001 <= xuu51001",fontsize=16,color="blue",shape="box"];4874[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4874[label="",style="solid", color="blue", weight=9]; 4874 -> 3483[label="",style="solid", color="blue", weight=3]; 4875[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4875[label="",style="solid", color="blue", weight=9]; 4875 -> 3484[label="",style="solid", color="blue", weight=3]; 4876[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4876[label="",style="solid", color="blue", weight=9]; 4876 -> 3485[label="",style="solid", color="blue", weight=3]; 4877[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4877[label="",style="solid", color="blue", weight=9]; 4877 -> 3486[label="",style="solid", color="blue", weight=3]; 4878[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4878[label="",style="solid", color="blue", weight=9]; 4878 -> 3487[label="",style="solid", color="blue", weight=3]; 4879[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4879[label="",style="solid", color="blue", weight=9]; 4879 -> 3488[label="",style="solid", color="blue", weight=3]; 4880[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 3489[label="",style="solid", color="blue", weight=3]; 4881[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 3490[label="",style="solid", color="blue", weight=3]; 4882[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 3491[label="",style="solid", color="blue", weight=3]; 4883[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 3492[label="",style="solid", color="blue", weight=3]; 4884[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 3493[label="",style="solid", color="blue", weight=3]; 4885[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 3494[label="",style="solid", color="blue", weight=3]; 4886[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 3495[label="",style="solid", color="blue", weight=3]; 4887[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 3496[label="",style="solid", color="blue", weight=3]; 3333[label="xuu50000 == xuu51000",fontsize=16,color="blue",shape="box"];4888[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 3497[label="",style="solid", color="blue", weight=3]; 4889[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 3498[label="",style="solid", color="blue", weight=3]; 4890[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 3499[label="",style="solid", color="blue", weight=3]; 4891[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 3500[label="",style="solid", color="blue", weight=3]; 4892[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 3501[label="",style="solid", color="blue", weight=3]; 4893[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 3502[label="",style="solid", color="blue", weight=3]; 4894[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 3503[label="",style="solid", color="blue", weight=3]; 4895[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 3504[label="",style="solid", color="blue", weight=3]; 4896[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 3505[label="",style="solid", color="blue", weight=3]; 4897[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 3506[label="",style="solid", color="blue", weight=3]; 4898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 3507[label="",style="solid", color="blue", weight=3]; 4899[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 3508[label="",style="solid", color="blue", weight=3]; 4900[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 3509[label="",style="solid", color="blue", weight=3]; 4901[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 3510[label="",style="solid", color="blue", weight=3]; 3334[label="False || xuu179",fontsize=16,color="black",shape="box"];3334 -> 3511[label="",style="solid", color="black", weight=3]; 3335[label="True || xuu179",fontsize=16,color="black",shape="box"];3335 -> 3512[label="",style="solid", color="black", weight=3]; 3336 -> 1526[label="",style="dashed", color="red", weight=0]; 3336[label="primCmpInt xuu50000 xuu51000",fontsize=16,color="magenta"];3336 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3337[label="xuu51000",fontsize=16,color="green",shape="box"];3338[label="xuu50000",fontsize=16,color="green",shape="box"];3339[label="xuu51000",fontsize=16,color="green",shape="box"];3340[label="xuu50000",fontsize=16,color="green",shape="box"];3341[label="xuu51000",fontsize=16,color="green",shape="box"];3342[label="xuu50000",fontsize=16,color="green",shape="box"];3343[label="xuu51000",fontsize=16,color="green",shape="box"];3344[label="xuu50000",fontsize=16,color="green",shape="box"];3345[label="xuu51000",fontsize=16,color="green",shape="box"];3346[label="xuu50000",fontsize=16,color="green",shape="box"];3347[label="xuu51000",fontsize=16,color="green",shape="box"];3348[label="xuu50000",fontsize=16,color="green",shape="box"];3349[label="xuu51000",fontsize=16,color="green",shape="box"];3350[label="xuu50000",fontsize=16,color="green",shape="box"];3351[label="xuu51000",fontsize=16,color="green",shape="box"];3352[label="xuu50000",fontsize=16,color="green",shape="box"];3353[label="xuu51000",fontsize=16,color="green",shape="box"];3354[label="xuu50000",fontsize=16,color="green",shape="box"];3355[label="xuu51000",fontsize=16,color="green",shape="box"];3356[label="xuu50000",fontsize=16,color="green",shape="box"];3357[label="xuu51000",fontsize=16,color="green",shape="box"];3358[label="xuu50000",fontsize=16,color="green",shape="box"];3359[label="xuu51000",fontsize=16,color="green",shape="box"];3360[label="xuu50000",fontsize=16,color="green",shape="box"];3361[label="xuu51000",fontsize=16,color="green",shape="box"];3362[label="xuu50000",fontsize=16,color="green",shape="box"];3363[label="xuu51000",fontsize=16,color="green",shape="box"];3364[label="xuu50000",fontsize=16,color="green",shape="box"];3365[label="EQ",fontsize=16,color="green",shape="box"];3366[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4902[label="xuu5100/Float xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3366 -> 4902[label="",style="solid", color="burlywood", weight=9]; 4902 -> 3515[label="",style="solid", color="burlywood", weight=3]; 3367[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4903[label="xuu5100/Float xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3367 -> 4903[label="",style="solid", color="burlywood", weight=9]; 4903 -> 3516[label="",style="solid", color="burlywood", weight=3]; 3368[label="xuu51000",fontsize=16,color="green",shape="box"];3369[label="xuu50000",fontsize=16,color="green",shape="box"];3370[label="xuu51000",fontsize=16,color="green",shape="box"];3371[label="xuu50000",fontsize=16,color="green",shape="box"];3372[label="xuu51000",fontsize=16,color="green",shape="box"];3373[label="xuu50000",fontsize=16,color="green",shape="box"];3374[label="xuu51000",fontsize=16,color="green",shape="box"];3375[label="xuu50000",fontsize=16,color="green",shape="box"];3376[label="xuu51000",fontsize=16,color="green",shape="box"];3377[label="xuu50000",fontsize=16,color="green",shape="box"];3378[label="xuu51000",fontsize=16,color="green",shape="box"];3379[label="xuu50000",fontsize=16,color="green",shape="box"];3380[label="xuu51000",fontsize=16,color="green",shape="box"];3381[label="xuu50000",fontsize=16,color="green",shape="box"];3382[label="xuu51000",fontsize=16,color="green",shape="box"];3383[label="xuu50000",fontsize=16,color="green",shape="box"];3384[label="xuu51000",fontsize=16,color="green",shape="box"];3385[label="xuu50000",fontsize=16,color="green",shape="box"];3386[label="xuu51000",fontsize=16,color="green",shape="box"];3387[label="xuu50000",fontsize=16,color="green",shape="box"];3388[label="xuu51000",fontsize=16,color="green",shape="box"];3389[label="xuu50000",fontsize=16,color="green",shape="box"];3390[label="xuu51000",fontsize=16,color="green",shape="box"];3391[label="xuu50000",fontsize=16,color="green",shape="box"];3392[label="xuu51000",fontsize=16,color="green",shape="box"];3393[label="xuu50000",fontsize=16,color="green",shape="box"];3394[label="xuu51000",fontsize=16,color="green",shape="box"];3395[label="xuu50000",fontsize=16,color="green",shape="box"];3396[label="xuu51000",fontsize=16,color="green",shape="box"];3397[label="xuu50000",fontsize=16,color="green",shape="box"];3398[label="xuu51000",fontsize=16,color="green",shape="box"];3399[label="xuu50000",fontsize=16,color="green",shape="box"];3400[label="xuu51000",fontsize=16,color="green",shape="box"];3401[label="xuu50000",fontsize=16,color="green",shape="box"];3402[label="xuu51000",fontsize=16,color="green",shape="box"];3403[label="xuu50000",fontsize=16,color="green",shape="box"];3404[label="xuu51000",fontsize=16,color="green",shape="box"];3405[label="xuu50000",fontsize=16,color="green",shape="box"];3406[label="xuu51000",fontsize=16,color="green",shape="box"];3407[label="xuu50000",fontsize=16,color="green",shape="box"];3408[label="xuu51000",fontsize=16,color="green",shape="box"];3409[label="xuu50000",fontsize=16,color="green",shape="box"];3410[label="xuu51000",fontsize=16,color="green",shape="box"];3411[label="xuu50000",fontsize=16,color="green",shape="box"];3412[label="xuu51000",fontsize=16,color="green",shape="box"];3413[label="xuu50000",fontsize=16,color="green",shape="box"];3414[label="xuu51000",fontsize=16,color="green",shape="box"];3415[label="xuu50000",fontsize=16,color="green",shape="box"];3416[label="xuu51000",fontsize=16,color="green",shape="box"];3417[label="xuu50000",fontsize=16,color="green",shape="box"];3418[label="xuu51000",fontsize=16,color="green",shape="box"];3419[label="xuu50000",fontsize=16,color="green",shape="box"];3420[label="xuu51000",fontsize=16,color="green",shape="box"];3421[label="xuu50000",fontsize=16,color="green",shape="box"];3422[label="xuu51000",fontsize=16,color="green",shape="box"];3423[label="xuu50000",fontsize=16,color="green",shape="box"];3424[label="primCmpChar (Char xuu50000) (Char xuu51000)",fontsize=16,color="black",shape="box"];3424 -> 3517[label="",style="solid", color="black", weight=3]; 3425 -> 3318[label="",style="dashed", color="red", weight=0]; 3425[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3425 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3425 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3319[label="",style="dashed", color="red", weight=0]; 3426[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3426 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3320[label="",style="dashed", color="red", weight=0]; 3427[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3427 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3321[label="",style="dashed", color="red", weight=0]; 3428[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3428 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3322[label="",style="dashed", color="red", weight=0]; 3429[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3429 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3323[label="",style="dashed", color="red", weight=0]; 3430[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3430 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3324[label="",style="dashed", color="red", weight=0]; 3431[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3431 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3325[label="",style="dashed", color="red", weight=0]; 3432[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3432 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3326[label="",style="dashed", color="red", weight=0]; 3433[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3433 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3327[label="",style="dashed", color="red", weight=0]; 3434[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3434 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3328[label="",style="dashed", color="red", weight=0]; 3435[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3435 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3436 -> 3329[label="",style="dashed", color="red", weight=0]; 3436[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3436 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3436 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3330[label="",style="dashed", color="red", weight=0]; 3437[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3437 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3438 -> 1470[label="",style="dashed", color="red", weight=0]; 3438[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3438 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3438 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3311[label="",style="dashed", color="red", weight=0]; 3439[label="xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002",fontsize=16,color="magenta"];3439 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3440[label="xuu50000 == xuu51000",fontsize=16,color="blue",shape="box"];4904[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 3548[label="",style="solid", color="blue", weight=3]; 4905[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 3549[label="",style="solid", color="blue", weight=3]; 4906[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 3550[label="",style="solid", color="blue", weight=3]; 4907[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 3551[label="",style="solid", color="blue", weight=3]; 4908[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 3552[label="",style="solid", color="blue", weight=3]; 4909[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4909[label="",style="solid", color="blue", weight=9]; 4909 -> 3553[label="",style="solid", color="blue", weight=3]; 4910[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4910[label="",style="solid", color="blue", weight=9]; 4910 -> 3554[label="",style="solid", color="blue", weight=3]; 4911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4911[label="",style="solid", color="blue", weight=9]; 4911 -> 3555[label="",style="solid", color="blue", weight=3]; 4912[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4912[label="",style="solid", color="blue", weight=9]; 4912 -> 3556[label="",style="solid", color="blue", weight=3]; 4913[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4913[label="",style="solid", color="blue", weight=9]; 4913 -> 3557[label="",style="solid", color="blue", weight=3]; 4914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4914[label="",style="solid", color="blue", weight=9]; 4914 -> 3558[label="",style="solid", color="blue", weight=3]; 4915[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4915[label="",style="solid", color="blue", weight=9]; 4915 -> 3559[label="",style="solid", color="blue", weight=3]; 4916[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4916[label="",style="solid", color="blue", weight=9]; 4916 -> 3560[label="",style="solid", color="blue", weight=3]; 4917[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4917[label="",style="solid", color="blue", weight=9]; 4917 -> 3561[label="",style="solid", color="blue", weight=3]; 3441[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="blue",shape="box"];4918[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4918[label="",style="solid", color="blue", weight=9]; 4918 -> 3562[label="",style="solid", color="blue", weight=3]; 4919[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4919[label="",style="solid", color="blue", weight=9]; 4919 -> 3563[label="",style="solid", color="blue", weight=3]; 3442 -> 3564[label="",style="dashed", color="red", weight=0]; 3442[label="primCompAux xuu50000 xuu51000 (compare xuu50001 xuu51001)",fontsize=16,color="magenta"];3442 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3443[label="GT",fontsize=16,color="green",shape="box"];3444[label="LT",fontsize=16,color="green",shape="box"];3445[label="EQ",fontsize=16,color="green",shape="box"];1652[label="primCmpInt (Pos xuu500) xuu51",fontsize=16,color="burlywood",shape="box"];4920[label="xuu500/Succ xuu5000",fontsize=10,color="white",style="solid",shape="box"];1652 -> 4920[label="",style="solid", color="burlywood", weight=9]; 4920 -> 1823[label="",style="solid", color="burlywood", weight=3]; 4921[label="xuu500/Zero",fontsize=10,color="white",style="solid",shape="box"];1652 -> 4921[label="",style="solid", color="burlywood", weight=9]; 4921 -> 1824[label="",style="solid", color="burlywood", weight=3]; 1653[label="primCmpInt (Neg xuu500) xuu51",fontsize=16,color="burlywood",shape="box"];4922[label="xuu500/Succ xuu5000",fontsize=10,color="white",style="solid",shape="box"];1653 -> 4922[label="",style="solid", color="burlywood", weight=9]; 4922 -> 1825[label="",style="solid", color="burlywood", weight=3]; 4923[label="xuu500/Zero",fontsize=10,color="white",style="solid",shape="box"];1653 -> 4923[label="",style="solid", color="burlywood", weight=9]; 4923 -> 1826[label="",style="solid", color="burlywood", weight=3]; 1827 -> 2000[label="",style="dashed", color="red", weight=0]; 1827[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1827 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1827 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1828[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1829 -> 2000[label="",style="dashed", color="red", weight=0]; 1829[label="primPlusInt xuu532 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))",fontsize=16,color="magenta"];1829 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1830[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1984[label="xuu53",fontsize=16,color="green",shape="box"];1858 -> 1840[label="",style="dashed", color="red", weight=0]; 1858[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1859 -> 1850[label="",style="dashed", color="red", weight=0]; 1859[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1882[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 otherwise",fontsize=16,color="black",shape="box"];1882 -> 2018[label="",style="solid", color="black", weight=3]; 1883[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 xuu53 xuu53 xuu64 xuu53",fontsize=16,color="burlywood",shape="box"];4924[label="xuu53/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1883 -> 4924[label="",style="solid", color="burlywood", weight=9]; 4924 -> 2019[label="",style="solid", color="burlywood", weight=3]; 4925[label="xuu53/FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=10,color="white",style="solid",shape="box"];1883 -> 4925[label="",style="solid", color="burlywood", weight=9]; 4925 -> 2020[label="",style="solid", color="burlywood", weight=3]; 1861 -> 2021[label="",style="dashed", color="red", weight=0]; 1861[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1861 -> 2022[label="",style="dashed", color="magenta", weight=3]; 4360 -> 2000[label="",style="dashed", color="red", weight=0]; 4360[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235) (FiniteMap.mkBranchRight_size xuu236 xuu233 xuu235)",fontsize=16,color="magenta"];4360 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4360 -> 4362[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2000[label="",style="dashed", color="red", weight=0]; 1863[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1863 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1864[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1865 -> 2000[label="",style="dashed", color="red", weight=0]; 1865[label="primPlusInt xuu452 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))",fontsize=16,color="magenta"];1865 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1866[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1985 -> 1842[label="",style="dashed", color="red", weight=0]; 1985[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1986 -> 1850[label="",style="dashed", color="red", weight=0]; 1986[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1987[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 otherwise",fontsize=16,color="black",shape="box"];1987 -> 2027[label="",style="solid", color="black", weight=3]; 1988[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 xuu45 xuu45 xuu64 xuu45",fontsize=16,color="burlywood",shape="box"];4926[label="xuu45/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1988 -> 4926[label="",style="solid", color="burlywood", weight=9]; 4926 -> 2028[label="",style="solid", color="burlywood", weight=3]; 4927[label="xuu45/FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=10,color="white",style="solid",shape="box"];1988 -> 4927[label="",style="solid", color="burlywood", weight=9]; 4927 -> 2029[label="",style="solid", color="burlywood", weight=3]; 1884 -> 2030[label="",style="dashed", color="red", weight=0]; 1884[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1884 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1677[label="primMulNat (Succ xuu311000100) xuu60000",fontsize=16,color="burlywood",shape="box"];4928[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4928[label="",style="solid", color="burlywood", weight=9]; 4928 -> 1886[label="",style="solid", color="burlywood", weight=3]; 4929[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4929[label="",style="solid", color="burlywood", weight=9]; 4929 -> 1887[label="",style="solid", color="burlywood", weight=3]; 1678[label="primMulNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];4930[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4930[label="",style="solid", color="burlywood", weight=9]; 4930 -> 1888[label="",style="solid", color="burlywood", weight=3]; 4931[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 1889[label="",style="solid", color="burlywood", weight=3]; 1679[label="xuu60000",fontsize=16,color="green",shape="box"];1680[label="xuu31100010",fontsize=16,color="green",shape="box"];1681[label="xuu60000",fontsize=16,color="green",shape="box"];1682[label="xuu31100010",fontsize=16,color="green",shape="box"];3446[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4932[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4932[label="",style="solid", color="burlywood", weight=9]; 4932 -> 3566[label="",style="solid", color="burlywood", weight=3]; 4933[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 3567[label="",style="solid", color="burlywood", weight=3]; 3447[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4934[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3447 -> 4934[label="",style="solid", color="burlywood", weight=9]; 4934 -> 3568[label="",style="solid", color="burlywood", weight=3]; 4935[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3447 -> 4935[label="",style="solid", color="burlywood", weight=9]; 4935 -> 3569[label="",style="solid", color="burlywood", weight=3]; 3448[label="True",fontsize=16,color="green",shape="box"];3449[label="False",fontsize=16,color="green",shape="box"];3468 -> 83[label="",style="dashed", color="red", weight=0]; 3468[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3468 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3469 -> 83[label="",style="dashed", color="red", weight=0]; 3469[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3469 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3470 -> 83[label="",style="dashed", color="red", weight=0]; 3470[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3470 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3471 -> 83[label="",style="dashed", color="red", weight=0]; 3471[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3471 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3472 -> 83[label="",style="dashed", color="red", weight=0]; 3472[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3472 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3473 -> 83[label="",style="dashed", color="red", weight=0]; 3473[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3473 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3474 -> 83[label="",style="dashed", color="red", weight=0]; 3474[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3474 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3475 -> 83[label="",style="dashed", color="red", weight=0]; 3475[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3475 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3476 -> 83[label="",style="dashed", color="red", weight=0]; 3476[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3476 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3477 -> 83[label="",style="dashed", color="red", weight=0]; 3477[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3477 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3478 -> 83[label="",style="dashed", color="red", weight=0]; 3478[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3478 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3479 -> 83[label="",style="dashed", color="red", weight=0]; 3479[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3479 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3480 -> 83[label="",style="dashed", color="red", weight=0]; 3480[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3480 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3481[label="xuu51000",fontsize=16,color="green",shape="box"];3482[label="xuu50000",fontsize=16,color="green",shape="box"];1470[label="xuu500 < xuu510",fontsize=16,color="black",shape="triangle"];1470 -> 1568[label="",style="solid", color="black", weight=3]; 3483 -> 2949[label="",style="dashed", color="red", weight=0]; 3483[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3483 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3484 -> 2950[label="",style="dashed", color="red", weight=0]; 3484[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3484 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3485 -> 2951[label="",style="dashed", color="red", weight=0]; 3485[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3485 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3486 -> 2952[label="",style="dashed", color="red", weight=0]; 3486[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3486 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3487 -> 2953[label="",style="dashed", color="red", weight=0]; 3487[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3487 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3488 -> 2954[label="",style="dashed", color="red", weight=0]; 3488[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3488 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3489 -> 2955[label="",style="dashed", color="red", weight=0]; 3489[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3489 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3490 -> 2956[label="",style="dashed", color="red", weight=0]; 3490[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3490 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3490 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3491 -> 2957[label="",style="dashed", color="red", weight=0]; 3491[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3491 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3491 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3492 -> 2958[label="",style="dashed", color="red", weight=0]; 3492[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3492 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3492 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3493 -> 2959[label="",style="dashed", color="red", weight=0]; 3493[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3493 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3494 -> 2960[label="",style="dashed", color="red", weight=0]; 3494[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3494 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3494 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3495 -> 2961[label="",style="dashed", color="red", weight=0]; 3495[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3495 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3495 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3496 -> 2962[label="",style="dashed", color="red", weight=0]; 3496[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3496 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3496 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3497 -> 2216[label="",style="dashed", color="red", weight=0]; 3497[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3497 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3498 -> 2214[label="",style="dashed", color="red", weight=0]; 3498[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3498 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3499 -> 2212[label="",style="dashed", color="red", weight=0]; 3499[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3499 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3499 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3500 -> 2205[label="",style="dashed", color="red", weight=0]; 3500[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3500 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3500 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3501 -> 2209[label="",style="dashed", color="red", weight=0]; 3501[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3501 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3501 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3502 -> 2218[label="",style="dashed", color="red", weight=0]; 3502[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3502 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3503 -> 2208[label="",style="dashed", color="red", weight=0]; 3503[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3503 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3504 -> 2217[label="",style="dashed", color="red", weight=0]; 3504[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3504 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3505 -> 83[label="",style="dashed", color="red", weight=0]; 3505[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3505 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3505 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3506 -> 2207[label="",style="dashed", color="red", weight=0]; 3506[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3506 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3507 -> 2211[label="",style="dashed", color="red", weight=0]; 3507[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3507 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3507 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3508 -> 2213[label="",style="dashed", color="red", weight=0]; 3508[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3508 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3509 -> 2206[label="",style="dashed", color="red", weight=0]; 3509[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3509 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3510 -> 2215[label="",style="dashed", color="red", weight=0]; 3510[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3510 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3511[label="xuu179",fontsize=16,color="green",shape="box"];3512[label="True",fontsize=16,color="green",shape="box"];3513[label="xuu50000",fontsize=16,color="green",shape="box"];3514[label="xuu51000",fontsize=16,color="green",shape="box"];3515[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4936[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3515 -> 4936[label="",style="solid", color="burlywood", weight=9]; 4936 -> 3652[label="",style="solid", color="burlywood", weight=3]; 4937[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3515 -> 4937[label="",style="solid", color="burlywood", weight=9]; 4937 -> 3653[label="",style="solid", color="burlywood", weight=3]; 3516[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4938[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3516 -> 4938[label="",style="solid", color="burlywood", weight=9]; 4938 -> 3654[label="",style="solid", color="burlywood", weight=3]; 4939[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3516 -> 4939[label="",style="solid", color="burlywood", weight=9]; 4939 -> 3655[label="",style="solid", color="burlywood", weight=3]; 3517 -> 2502[label="",style="dashed", color="red", weight=0]; 3517[label="primCmpNat xuu50000 xuu51000",fontsize=16,color="magenta"];3517 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3518[label="xuu51000",fontsize=16,color="green",shape="box"];3519[label="xuu50000",fontsize=16,color="green",shape="box"];3520[label="xuu51000",fontsize=16,color="green",shape="box"];3521[label="xuu50000",fontsize=16,color="green",shape="box"];3522[label="xuu51000",fontsize=16,color="green",shape="box"];3523[label="xuu50000",fontsize=16,color="green",shape="box"];3524[label="xuu51000",fontsize=16,color="green",shape="box"];3525[label="xuu50000",fontsize=16,color="green",shape="box"];3526[label="xuu51000",fontsize=16,color="green",shape="box"];3527[label="xuu50000",fontsize=16,color="green",shape="box"];3528[label="xuu51000",fontsize=16,color="green",shape="box"];3529[label="xuu50000",fontsize=16,color="green",shape="box"];3530[label="xuu51000",fontsize=16,color="green",shape="box"];3531[label="xuu50000",fontsize=16,color="green",shape="box"];3532[label="xuu51000",fontsize=16,color="green",shape="box"];3533[label="xuu50000",fontsize=16,color="green",shape="box"];3534[label="xuu51000",fontsize=16,color="green",shape="box"];3535[label="xuu50000",fontsize=16,color="green",shape="box"];3536[label="xuu51000",fontsize=16,color="green",shape="box"];3537[label="xuu50000",fontsize=16,color="green",shape="box"];3538[label="xuu51000",fontsize=16,color="green",shape="box"];3539[label="xuu50000",fontsize=16,color="green",shape="box"];3540[label="xuu51000",fontsize=16,color="green",shape="box"];3541[label="xuu50000",fontsize=16,color="green",shape="box"];3542[label="xuu51000",fontsize=16,color="green",shape="box"];3543[label="xuu50000",fontsize=16,color="green",shape="box"];3544[label="xuu51000",fontsize=16,color="green",shape="box"];3545[label="xuu50000",fontsize=16,color="green",shape="box"];3546[label="xuu50001 < xuu51001",fontsize=16,color="blue",shape="box"];4940[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4940[label="",style="solid", color="blue", weight=9]; 4940 -> 3658[label="",style="solid", color="blue", weight=3]; 4941[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 3659[label="",style="solid", color="blue", weight=3]; 4942[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4942[label="",style="solid", color="blue", weight=9]; 4942 -> 3660[label="",style="solid", color="blue", weight=3]; 4943[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 3661[label="",style="solid", color="blue", weight=3]; 4944[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 3662[label="",style="solid", color="blue", weight=3]; 4945[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 3663[label="",style="solid", color="blue", weight=3]; 4946[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 3664[label="",style="solid", color="blue", weight=3]; 4947[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 3665[label="",style="solid", color="blue", weight=3]; 4948[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 3666[label="",style="solid", color="blue", weight=3]; 4949[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 3667[label="",style="solid", color="blue", weight=3]; 4950[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 3668[label="",style="solid", color="blue", weight=3]; 4951[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 3669[label="",style="solid", color="blue", weight=3]; 4952[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 3670[label="",style="solid", color="blue", weight=3]; 4953[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3546 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 3671[label="",style="solid", color="blue", weight=3]; 3547 -> 2612[label="",style="dashed", color="red", weight=0]; 3547[label="xuu50001 == xuu51001 && xuu50002 <= xuu51002",fontsize=16,color="magenta"];3547 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3548 -> 2216[label="",style="dashed", color="red", weight=0]; 3548[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3548 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3549 -> 2214[label="",style="dashed", color="red", weight=0]; 3549[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3549 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3550 -> 2212[label="",style="dashed", color="red", weight=0]; 3550[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3550 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3551 -> 2205[label="",style="dashed", color="red", weight=0]; 3551[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3551 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3552 -> 2209[label="",style="dashed", color="red", weight=0]; 3552[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3552 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3553 -> 2218[label="",style="dashed", color="red", weight=0]; 3553[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3553 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3554 -> 2208[label="",style="dashed", color="red", weight=0]; 3554[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3554 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3555 -> 2217[label="",style="dashed", color="red", weight=0]; 3555[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3555 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3556 -> 83[label="",style="dashed", color="red", weight=0]; 3556[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3556 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3557 -> 2207[label="",style="dashed", color="red", weight=0]; 3557[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3557 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3558 -> 2211[label="",style="dashed", color="red", weight=0]; 3558[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3558 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3559 -> 2213[label="",style="dashed", color="red", weight=0]; 3559[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3559 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3560 -> 2206[label="",style="dashed", color="red", weight=0]; 3560[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3560 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3561 -> 2215[label="",style="dashed", color="red", weight=0]; 3561[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3561 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3185[label="",style="dashed", color="red", weight=0]; 3562[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="magenta"];3562 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3563 -> 1329[label="",style="dashed", color="red", weight=0]; 3563[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="magenta"];3563 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3190[label="",style="dashed", color="red", weight=0]; 3565[label="compare xuu50001 xuu51001",fontsize=16,color="magenta"];3565 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3564[label="primCompAux xuu50000 xuu51000 xuu189",fontsize=16,color="black",shape="triangle"];3564 -> 3708[label="",style="solid", color="black", weight=3]; 1823[label="primCmpInt (Pos (Succ xuu5000)) xuu51",fontsize=16,color="burlywood",shape="box"];4954[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1823 -> 4954[label="",style="solid", color="burlywood", weight=9]; 4954 -> 1989[label="",style="solid", color="burlywood", weight=3]; 4955[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1823 -> 4955[label="",style="solid", color="burlywood", weight=9]; 4955 -> 1990[label="",style="solid", color="burlywood", weight=3]; 1824[label="primCmpInt (Pos Zero) xuu51",fontsize=16,color="burlywood",shape="box"];4956[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4956[label="",style="solid", color="burlywood", weight=9]; 4956 -> 1991[label="",style="solid", color="burlywood", weight=3]; 4957[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4957[label="",style="solid", color="burlywood", weight=9]; 4957 -> 1992[label="",style="solid", color="burlywood", weight=3]; 1825[label="primCmpInt (Neg (Succ xuu5000)) xuu51",fontsize=16,color="burlywood",shape="box"];4958[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4958[label="",style="solid", color="burlywood", weight=9]; 4958 -> 1993[label="",style="solid", color="burlywood", weight=3]; 4959[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4959[label="",style="solid", color="burlywood", weight=9]; 4959 -> 1994[label="",style="solid", color="burlywood", weight=3]; 1826[label="primCmpInt (Neg Zero) xuu51",fontsize=16,color="burlywood",shape="box"];4960[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4960[label="",style="solid", color="burlywood", weight=9]; 4960 -> 1995[label="",style="solid", color="burlywood", weight=3]; 4961[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4961[label="",style="solid", color="burlywood", weight=9]; 4961 -> 1996[label="",style="solid", color="burlywood", weight=3]; 2005[label="Pos Zero",fontsize=16,color="green",shape="box"];2006 -> 1840[label="",style="dashed", color="red", weight=0]; 2006[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM",fontsize=16,color="magenta"];2006 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2000[label="primPlusInt xuu532 xuu121",fontsize=16,color="burlywood",shape="triangle"];4962[label="xuu532/Pos xuu5320",fontsize=10,color="white",style="solid",shape="box"];2000 -> 4962[label="",style="solid", color="burlywood", weight=9]; 4962 -> 2025[label="",style="solid", color="burlywood", weight=3]; 4963[label="xuu532/Neg xuu5320",fontsize=10,color="white",style="solid",shape="box"];2000 -> 4963[label="",style="solid", color="burlywood", weight=9]; 4963 -> 2026[label="",style="solid", color="burlywood", weight=3]; 2007 -> 1840[label="",style="dashed", color="red", weight=0]; 2007[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="magenta"];2007 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2018[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];2018 -> 2131[label="",style="solid", color="black", weight=3]; 2019[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2019 -> 2132[label="",style="solid", color="black", weight=3]; 2020[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="black",shape="box"];2020 -> 2133[label="",style="solid", color="black", weight=3]; 2022 -> 1470[label="",style="dashed", color="red", weight=0]; 2022[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2022 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2021[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu122",fontsize=16,color="burlywood",shape="triangle"];4964[label="xuu122/False",fontsize=10,color="white",style="solid",shape="box"];2021 -> 4964[label="",style="solid", color="burlywood", weight=9]; 4964 -> 2136[label="",style="solid", color="burlywood", weight=3]; 4965[label="xuu122/True",fontsize=10,color="white",style="solid",shape="box"];2021 -> 4965[label="",style="solid", color="burlywood", weight=9]; 4965 -> 2137[label="",style="solid", color="burlywood", weight=3]; 4361[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235",fontsize=16,color="black",shape="box"];4361 -> 4363[label="",style="solid", color="black", weight=3]; 4362[label="FiniteMap.mkBranchRight_size xuu236 xuu233 xuu235",fontsize=16,color="black",shape="box"];4362 -> 4364[label="",style="solid", color="black", weight=3]; 2010[label="Pos Zero",fontsize=16,color="green",shape="box"];2011 -> 1842[label="",style="dashed", color="red", weight=0]; 2011[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM",fontsize=16,color="magenta"];2011 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2012[label="xuu452",fontsize=16,color="green",shape="box"];2013 -> 1842[label="",style="dashed", color="red", weight=0]; 2013[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="magenta"];2013 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2027[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];2027 -> 2146[label="",style="solid", color="black", weight=3]; 2028[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2028 -> 2147[label="",style="solid", color="black", weight=3]; 2029[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="black",shape="box"];2029 -> 2148[label="",style="solid", color="black", weight=3]; 2031 -> 1470[label="",style="dashed", color="red", weight=0]; 2031[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2031 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2030[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu126",fontsize=16,color="burlywood",shape="triangle"];4966[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4966[label="",style="solid", color="burlywood", weight=9]; 4966 -> 2151[label="",style="solid", color="burlywood", weight=3]; 4967[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4967[label="",style="solid", color="burlywood", weight=9]; 4967 -> 2152[label="",style="solid", color="burlywood", weight=3]; 1886[label="primMulNat (Succ xuu311000100) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1886 -> 2034[label="",style="solid", color="black", weight=3]; 1887[label="primMulNat (Succ xuu311000100) Zero",fontsize=16,color="black",shape="box"];1887 -> 2035[label="",style="solid", color="black", weight=3]; 1888[label="primMulNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1888 -> 2036[label="",style="solid", color="black", weight=3]; 1889[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1889 -> 2037[label="",style="solid", color="black", weight=3]; 3566[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3566 -> 3735[label="",style="solid", color="black", weight=3]; 3567[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3567 -> 3736[label="",style="solid", color="black", weight=3]; 3568[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3568 -> 3737[label="",style="solid", color="black", weight=3]; 3569[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3569 -> 3738[label="",style="solid", color="black", weight=3]; 3570[label="LT",fontsize=16,color="green",shape="box"];3571 -> 3184[label="",style="dashed", color="red", weight=0]; 3571[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3571 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3572[label="LT",fontsize=16,color="green",shape="box"];3573[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3573 -> 3741[label="",style="solid", color="black", weight=3]; 3574[label="LT",fontsize=16,color="green",shape="box"];3575 -> 3185[label="",style="dashed", color="red", weight=0]; 3575[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3575 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3576[label="LT",fontsize=16,color="green",shape="box"];3577[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3577 -> 3744[label="",style="solid", color="black", weight=3]; 3578[label="LT",fontsize=16,color="green",shape="box"];3579 -> 3186[label="",style="dashed", color="red", weight=0]; 3579[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3579 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3580[label="LT",fontsize=16,color="green",shape="box"];3581 -> 3187[label="",style="dashed", color="red", weight=0]; 3581[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3581 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3582[label="LT",fontsize=16,color="green",shape="box"];3583[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3583 -> 3749[label="",style="solid", color="black", weight=3]; 3584[label="LT",fontsize=16,color="green",shape="box"];3585[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3585 -> 3750[label="",style="solid", color="black", weight=3]; 3586[label="LT",fontsize=16,color="green",shape="box"];3587[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3587 -> 3751[label="",style="solid", color="black", weight=3]; 3588[label="LT",fontsize=16,color="green",shape="box"];3589 -> 3188[label="",style="dashed", color="red", weight=0]; 3589[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3589 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3589 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3590[label="LT",fontsize=16,color="green",shape="box"];3591[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3591 -> 3754[label="",style="solid", color="black", weight=3]; 3592[label="LT",fontsize=16,color="green",shape="box"];3593 -> 3189[label="",style="dashed", color="red", weight=0]; 3593[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3593 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3593 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3594[label="LT",fontsize=16,color="green",shape="box"];3595 -> 3190[label="",style="dashed", color="red", weight=0]; 3595[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3595 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3758[label="",style="dashed", color="magenta", weight=3]; 1568 -> 83[label="",style="dashed", color="red", weight=0]; 1568[label="compare xuu500 xuu510 == LT",fontsize=16,color="magenta"];1568 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1712[label="",style="dashed", color="magenta", weight=3]; 3596[label="xuu51001",fontsize=16,color="green",shape="box"];3597[label="xuu50001",fontsize=16,color="green",shape="box"];3598[label="xuu51001",fontsize=16,color="green",shape="box"];3599[label="xuu50001",fontsize=16,color="green",shape="box"];3600[label="xuu51001",fontsize=16,color="green",shape="box"];3601[label="xuu50001",fontsize=16,color="green",shape="box"];3602[label="xuu51001",fontsize=16,color="green",shape="box"];3603[label="xuu50001",fontsize=16,color="green",shape="box"];3604[label="xuu51001",fontsize=16,color="green",shape="box"];3605[label="xuu50001",fontsize=16,color="green",shape="box"];3606[label="xuu51001",fontsize=16,color="green",shape="box"];3607[label="xuu50001",fontsize=16,color="green",shape="box"];3608[label="xuu51001",fontsize=16,color="green",shape="box"];3609[label="xuu50001",fontsize=16,color="green",shape="box"];3610[label="xuu51001",fontsize=16,color="green",shape="box"];3611[label="xuu50001",fontsize=16,color="green",shape="box"];3612[label="xuu51001",fontsize=16,color="green",shape="box"];3613[label="xuu50001",fontsize=16,color="green",shape="box"];3614[label="xuu51001",fontsize=16,color="green",shape="box"];3615[label="xuu50001",fontsize=16,color="green",shape="box"];3616[label="xuu51001",fontsize=16,color="green",shape="box"];3617[label="xuu50001",fontsize=16,color="green",shape="box"];3618[label="xuu51001",fontsize=16,color="green",shape="box"];3619[label="xuu50001",fontsize=16,color="green",shape="box"];3620[label="xuu51001",fontsize=16,color="green",shape="box"];3621[label="xuu50001",fontsize=16,color="green",shape="box"];3622[label="xuu51001",fontsize=16,color="green",shape="box"];3623[label="xuu50001",fontsize=16,color="green",shape="box"];3624[label="xuu51000",fontsize=16,color="green",shape="box"];3625[label="xuu50000",fontsize=16,color="green",shape="box"];3626[label="xuu51000",fontsize=16,color="green",shape="box"];3627[label="xuu50000",fontsize=16,color="green",shape="box"];3628[label="xuu51000",fontsize=16,color="green",shape="box"];3629[label="xuu50000",fontsize=16,color="green",shape="box"];3630[label="xuu51000",fontsize=16,color="green",shape="box"];3631[label="xuu50000",fontsize=16,color="green",shape="box"];3632[label="xuu51000",fontsize=16,color="green",shape="box"];3633[label="xuu50000",fontsize=16,color="green",shape="box"];3634[label="xuu51000",fontsize=16,color="green",shape="box"];3635[label="xuu50000",fontsize=16,color="green",shape="box"];3636[label="xuu51000",fontsize=16,color="green",shape="box"];3637[label="xuu50000",fontsize=16,color="green",shape="box"];3638[label="xuu51000",fontsize=16,color="green",shape="box"];3639[label="xuu50000",fontsize=16,color="green",shape="box"];3640[label="xuu51000",fontsize=16,color="green",shape="box"];3641[label="xuu50000",fontsize=16,color="green",shape="box"];3642[label="xuu51000",fontsize=16,color="green",shape="box"];3643[label="xuu50000",fontsize=16,color="green",shape="box"];3644[label="xuu51000",fontsize=16,color="green",shape="box"];3645[label="xuu50000",fontsize=16,color="green",shape="box"];3646[label="xuu51000",fontsize=16,color="green",shape="box"];3647[label="xuu50000",fontsize=16,color="green",shape="box"];3648[label="xuu51000",fontsize=16,color="green",shape="box"];3649[label="xuu50000",fontsize=16,color="green",shape="box"];3650[label="xuu51000",fontsize=16,color="green",shape="box"];3651[label="xuu50000",fontsize=16,color="green",shape="box"];3652[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3652 -> 3759[label="",style="solid", color="black", weight=3]; 3653[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3653 -> 3760[label="",style="solid", color="black", weight=3]; 3654[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3654 -> 3761[label="",style="solid", color="black", weight=3]; 3655[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3655 -> 3762[label="",style="solid", color="black", weight=3]; 3656[label="xuu51000",fontsize=16,color="green",shape="box"];3657[label="xuu50000",fontsize=16,color="green",shape="box"];2502[label="primCmpNat xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4968[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4968[label="",style="solid", color="burlywood", weight=9]; 4968 -> 3005[label="",style="solid", color="burlywood", weight=3]; 4969[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4969[label="",style="solid", color="burlywood", weight=9]; 4969 -> 3006[label="",style="solid", color="burlywood", weight=3]; 3658 -> 3318[label="",style="dashed", color="red", weight=0]; 3658[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3658 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3658 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3659 -> 3319[label="",style="dashed", color="red", weight=0]; 3659[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3659 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3659 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3660 -> 3320[label="",style="dashed", color="red", weight=0]; 3660[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3660 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3660 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3661 -> 3321[label="",style="dashed", color="red", weight=0]; 3661[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3661 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3661 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3662 -> 3322[label="",style="dashed", color="red", weight=0]; 3662[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3662 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3662 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3323[label="",style="dashed", color="red", weight=0]; 3663[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3663 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3664 -> 3324[label="",style="dashed", color="red", weight=0]; 3664[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3664 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3664 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3325[label="",style="dashed", color="red", weight=0]; 3665[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3665 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3666 -> 3326[label="",style="dashed", color="red", weight=0]; 3666[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3666 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3666 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3667 -> 3327[label="",style="dashed", color="red", weight=0]; 3667[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3667 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3667 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3328[label="",style="dashed", color="red", weight=0]; 3668[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3668 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3669 -> 3329[label="",style="dashed", color="red", weight=0]; 3669[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3669 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3669 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3330[label="",style="dashed", color="red", weight=0]; 3670[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3670 -> 3787[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3671 -> 1470[label="",style="dashed", color="red", weight=0]; 3671[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3671 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3671 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3672[label="xuu50002 <= xuu51002",fontsize=16,color="blue",shape="box"];4970[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 3791[label="",style="solid", color="blue", weight=3]; 4971[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 3792[label="",style="solid", color="blue", weight=3]; 4972[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 3793[label="",style="solid", color="blue", weight=3]; 4973[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4973[label="",style="solid", color="blue", weight=9]; 4973 -> 3794[label="",style="solid", color="blue", weight=3]; 4974[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4974[label="",style="solid", color="blue", weight=9]; 4974 -> 3795[label="",style="solid", color="blue", weight=3]; 4975[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 3796[label="",style="solid", color="blue", weight=3]; 4976[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 3797[label="",style="solid", color="blue", weight=3]; 4977[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 3798[label="",style="solid", color="blue", weight=3]; 4978[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 3799[label="",style="solid", color="blue", weight=3]; 4979[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 3800[label="",style="solid", color="blue", weight=3]; 4980[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 3801[label="",style="solid", color="blue", weight=3]; 4981[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3802[label="",style="solid", color="blue", weight=3]; 4982[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3803[label="",style="solid", color="blue", weight=3]; 4983[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3672 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3804[label="",style="solid", color="blue", weight=3]; 3673[label="xuu50001 == xuu51001",fontsize=16,color="blue",shape="box"];4984[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3805[label="",style="solid", color="blue", weight=3]; 4985[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3806[label="",style="solid", color="blue", weight=3]; 4986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3807[label="",style="solid", color="blue", weight=3]; 4987[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3808[label="",style="solid", color="blue", weight=3]; 4988[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3809[label="",style="solid", color="blue", weight=3]; 4989[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3810[label="",style="solid", color="blue", weight=3]; 4990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 3811[label="",style="solid", color="blue", weight=3]; 4991[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 3812[label="",style="solid", color="blue", weight=3]; 4992[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 3813[label="",style="solid", color="blue", weight=3]; 4993[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 3814[label="",style="solid", color="blue", weight=3]; 4994[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 3815[label="",style="solid", color="blue", weight=3]; 4995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 3816[label="",style="solid", color="blue", weight=3]; 4996[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 3817[label="",style="solid", color="blue", weight=3]; 4997[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3673 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 3818[label="",style="solid", color="blue", weight=3]; 3674[label="xuu51000",fontsize=16,color="green",shape="box"];3675[label="xuu50000",fontsize=16,color="green",shape="box"];3676[label="xuu51000",fontsize=16,color="green",shape="box"];3677[label="xuu50000",fontsize=16,color="green",shape="box"];3678[label="xuu51000",fontsize=16,color="green",shape="box"];3679[label="xuu50000",fontsize=16,color="green",shape="box"];3680[label="xuu51000",fontsize=16,color="green",shape="box"];3681[label="xuu50000",fontsize=16,color="green",shape="box"];3682[label="xuu51000",fontsize=16,color="green",shape="box"];3683[label="xuu50000",fontsize=16,color="green",shape="box"];3684[label="xuu51000",fontsize=16,color="green",shape="box"];3685[label="xuu50000",fontsize=16,color="green",shape="box"];3686[label="xuu51000",fontsize=16,color="green",shape="box"];3687[label="xuu50000",fontsize=16,color="green",shape="box"];3688[label="xuu51000",fontsize=16,color="green",shape="box"];3689[label="xuu50000",fontsize=16,color="green",shape="box"];3690[label="xuu51000",fontsize=16,color="green",shape="box"];3691[label="xuu50000",fontsize=16,color="green",shape="box"];3692[label="xuu51000",fontsize=16,color="green",shape="box"];3693[label="xuu50000",fontsize=16,color="green",shape="box"];3694[label="xuu51000",fontsize=16,color="green",shape="box"];3695[label="xuu50000",fontsize=16,color="green",shape="box"];3696[label="xuu51000",fontsize=16,color="green",shape="box"];3697[label="xuu50000",fontsize=16,color="green",shape="box"];3698[label="xuu51000",fontsize=16,color="green",shape="box"];3699[label="xuu50000",fontsize=16,color="green",shape="box"];3700[label="xuu51000",fontsize=16,color="green",shape="box"];3701[label="xuu50000",fontsize=16,color="green",shape="box"];3702[label="xuu51000 * xuu50001",fontsize=16,color="burlywood",shape="triangle"];4998[label="xuu51000/Integer xuu510000",fontsize=10,color="white",style="solid",shape="box"];3702 -> 4998[label="",style="solid", color="burlywood", weight=9]; 4998 -> 3819[label="",style="solid", color="burlywood", weight=3]; 3703 -> 3702[label="",style="dashed", color="red", weight=0]; 3703[label="xuu50000 * xuu51001",fontsize=16,color="magenta"];3703 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3704 -> 782[label="",style="dashed", color="red", weight=0]; 3704[label="xuu50000 * xuu51001",fontsize=16,color="magenta"];3704 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3705 -> 782[label="",style="dashed", color="red", weight=0]; 3705[label="xuu51000 * xuu50001",fontsize=16,color="magenta"];3705 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3825[label="",style="dashed", color="magenta", weight=3]; 3706[label="xuu51001",fontsize=16,color="green",shape="box"];3707[label="xuu50001",fontsize=16,color="green",shape="box"];3708 -> 3826[label="",style="dashed", color="red", weight=0]; 3708[label="primCompAux0 xuu189 (compare xuu50000 xuu51000)",fontsize=16,color="magenta"];3708 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3708 -> 3828[label="",style="dashed", color="magenta", weight=3]; 1989[label="primCmpInt (Pos (Succ xuu5000)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1989 -> 2117[label="",style="solid", color="black", weight=3]; 1990[label="primCmpInt (Pos (Succ xuu5000)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1990 -> 2118[label="",style="solid", color="black", weight=3]; 1991[label="primCmpInt (Pos Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];4999[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1991 -> 4999[label="",style="solid", color="burlywood", weight=9]; 4999 -> 2119[label="",style="solid", color="burlywood", weight=3]; 5000[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1991 -> 5000[label="",style="solid", color="burlywood", weight=9]; 5000 -> 2120[label="",style="solid", color="burlywood", weight=3]; 1992[label="primCmpInt (Pos Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];5001[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1992 -> 5001[label="",style="solid", color="burlywood", weight=9]; 5001 -> 2121[label="",style="solid", color="burlywood", weight=3]; 5002[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1992 -> 5002[label="",style="solid", color="burlywood", weight=9]; 5002 -> 2122[label="",style="solid", color="burlywood", weight=3]; 1993[label="primCmpInt (Neg (Succ xuu5000)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1993 -> 2123[label="",style="solid", color="black", weight=3]; 1994[label="primCmpInt (Neg (Succ xuu5000)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1994 -> 2124[label="",style="solid", color="black", weight=3]; 1995[label="primCmpInt (Neg Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];5003[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5003[label="",style="solid", color="burlywood", weight=9]; 5003 -> 2125[label="",style="solid", color="burlywood", weight=3]; 5004[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5004[label="",style="solid", color="burlywood", weight=9]; 5004 -> 2126[label="",style="solid", color="burlywood", weight=3]; 1996[label="primCmpInt (Neg Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];5005[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1996 -> 5005[label="",style="solid", color="burlywood", weight=9]; 5005 -> 2127[label="",style="solid", color="burlywood", weight=3]; 5006[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1996 -> 5006[label="",style="solid", color="burlywood", weight=9]; 5006 -> 2128[label="",style="solid", color="burlywood", weight=3]; 2129[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2025[label="primPlusInt (Pos xuu5320) xuu121",fontsize=16,color="burlywood",shape="box"];5007[label="xuu121/Pos xuu1210",fontsize=10,color="white",style="solid",shape="box"];2025 -> 5007[label="",style="solid", color="burlywood", weight=9]; 5007 -> 2140[label="",style="solid", color="burlywood", weight=3]; 5008[label="xuu121/Neg xuu1210",fontsize=10,color="white",style="solid",shape="box"];2025 -> 5008[label="",style="solid", color="burlywood", weight=9]; 5008 -> 2141[label="",style="solid", color="burlywood", weight=3]; 2026[label="primPlusInt (Neg xuu5320) xuu121",fontsize=16,color="burlywood",shape="box"];5009[label="xuu121/Pos xuu1210",fontsize=10,color="white",style="solid",shape="box"];2026 -> 5009[label="",style="solid", color="burlywood", weight=9]; 5009 -> 2142[label="",style="solid", color="burlywood", weight=3]; 5010[label="xuu121/Neg xuu1210",fontsize=10,color="white",style="solid",shape="box"];2026 -> 5010[label="",style="solid", color="burlywood", weight=9]; 5010 -> 2143[label="",style="solid", color="burlywood", weight=3]; 2130[label="FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=16,color="green",shape="box"];2131 -> 4155[label="",style="dashed", color="red", weight=0]; 2131[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="magenta"];2131 -> 4166[label="",style="dashed", color="magenta", weight=3]; 2131 -> 4167[label="",style="dashed", color="magenta", weight=3]; 2131 -> 4168[label="",style="dashed", color="magenta", weight=3]; 2131 -> 4169[label="",style="dashed", color="magenta", weight=3]; 2131 -> 4170[label="",style="dashed", color="magenta", weight=3]; 2132[label="error []",fontsize=16,color="red",shape="box"];2133[label="FiniteMap.mkBalBranch6MkBalBranch12 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="black",shape="box"];2133 -> 2240[label="",style="solid", color="black", weight=3]; 2134 -> 782[label="",style="dashed", color="red", weight=0]; 2134[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2134 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2135 -> 1851[label="",style="dashed", color="red", weight=0]; 2135[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2135 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2136[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2136 -> 2244[label="",style="solid", color="black", weight=3]; 2137[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2137 -> 2245[label="",style="solid", color="black", weight=3]; 4363 -> 2000[label="",style="dashed", color="red", weight=0]; 4363[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235)",fontsize=16,color="magenta"];4363 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4363 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4364[label="FiniteMap.sizeFM xuu236",fontsize=16,color="burlywood",shape="triangle"];5011[label="xuu236/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4364 -> 5011[label="",style="solid", color="burlywood", weight=9]; 5011 -> 4367[label="",style="solid", color="burlywood", weight=3]; 5012[label="xuu236/FiniteMap.Branch xuu2360 xuu2361 xuu2362 xuu2363 xuu2364",fontsize=10,color="white",style="solid",shape="box"];4364 -> 5012[label="",style="solid", color="burlywood", weight=9]; 5012 -> 4368[label="",style="solid", color="burlywood", weight=3]; 2144[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2145[label="FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=16,color="green",shape="box"];2146 -> 4155[label="",style="dashed", color="red", weight=0]; 2146[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="magenta"];2146 -> 4171[label="",style="dashed", color="magenta", weight=3]; 2146 -> 4172[label="",style="dashed", color="magenta", weight=3]; 2146 -> 4173[label="",style="dashed", color="magenta", weight=3]; 2146 -> 4174[label="",style="dashed", color="magenta", weight=3]; 2146 -> 4175[label="",style="dashed", color="magenta", weight=3]; 2147[label="error []",fontsize=16,color="red",shape="box"];2148[label="FiniteMap.mkBalBranch6MkBalBranch12 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="black",shape="box"];2148 -> 2252[label="",style="solid", color="black", weight=3]; 2149 -> 782[label="",style="dashed", color="red", weight=0]; 2149[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2149 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2150 -> 1851[label="",style="dashed", color="red", weight=0]; 2150[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2150 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2151[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2151 -> 2256[label="",style="solid", color="black", weight=3]; 2152[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2152 -> 2257[label="",style="solid", color="black", weight=3]; 2034 -> 2155[label="",style="dashed", color="red", weight=0]; 2034[label="primPlusNat (primMulNat xuu311000100 (Succ xuu600000)) (Succ xuu600000)",fontsize=16,color="magenta"];2034 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2035[label="Zero",fontsize=16,color="green",shape="box"];2036[label="Zero",fontsize=16,color="green",shape="box"];2037[label="Zero",fontsize=16,color="green",shape="box"];3735 -> 1329[label="",style="dashed", color="red", weight=0]; 3735[label="compare (xuu50000 * Pos xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3735 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3735 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3736 -> 1329[label="",style="dashed", color="red", weight=0]; 3736[label="compare (xuu50000 * Pos xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3736 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3736 -> 3832[label="",style="dashed", color="magenta", weight=3]; 3737 -> 1329[label="",style="dashed", color="red", weight=0]; 3737[label="compare (xuu50000 * Neg xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3737 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3737 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3738 -> 1329[label="",style="dashed", color="red", weight=0]; 3738[label="compare (xuu50000 * Neg xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3738 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3738 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3739[label="xuu51000",fontsize=16,color="green",shape="box"];3740[label="xuu50000",fontsize=16,color="green",shape="box"];3741[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3741 -> 3837[label="",style="solid", color="black", weight=3]; 3742[label="xuu51000",fontsize=16,color="green",shape="box"];3743[label="xuu50000",fontsize=16,color="green",shape="box"];3744[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3744 -> 3838[label="",style="solid", color="black", weight=3]; 3745[label="xuu51000",fontsize=16,color="green",shape="box"];3746[label="xuu50000",fontsize=16,color="green",shape="box"];3747[label="xuu51000",fontsize=16,color="green",shape="box"];3748[label="xuu50000",fontsize=16,color="green",shape="box"];3749[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3749 -> 3839[label="",style="solid", color="black", weight=3]; 3750[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3750 -> 3840[label="",style="solid", color="black", weight=3]; 3751[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3751 -> 3841[label="",style="solid", color="black", weight=3]; 3752[label="xuu51000",fontsize=16,color="green",shape="box"];3753[label="xuu50000",fontsize=16,color="green",shape="box"];3754[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3754 -> 3842[label="",style="solid", color="black", weight=3]; 3755[label="xuu51000",fontsize=16,color="green",shape="box"];3756[label="xuu50000",fontsize=16,color="green",shape="box"];3757[label="xuu51000",fontsize=16,color="green",shape="box"];3758[label="xuu50000",fontsize=16,color="green",shape="box"];1711[label="LT",fontsize=16,color="green",shape="box"];1712 -> 1329[label="",style="dashed", color="red", weight=0]; 1712[label="compare xuu500 xuu510",fontsize=16,color="magenta"];1712 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1913[label="",style="dashed", color="magenta", weight=3]; 3759 -> 1329[label="",style="dashed", color="red", weight=0]; 3759[label="compare (xuu50000 * Pos xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3759 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3760 -> 1329[label="",style="dashed", color="red", weight=0]; 3760[label="compare (xuu50000 * Pos xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3760 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3760 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3761 -> 1329[label="",style="dashed", color="red", weight=0]; 3761[label="compare (xuu50000 * Neg xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3761 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3762 -> 1329[label="",style="dashed", color="red", weight=0]; 3762[label="compare (xuu50000 * Neg xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3762 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3762 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3005[label="primCmpNat (Succ xuu50000) xuu5100",fontsize=16,color="burlywood",shape="box"];5013[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];3005 -> 5013[label="",style="solid", color="burlywood", weight=9]; 5013 -> 3145[label="",style="solid", color="burlywood", weight=3]; 5014[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];3005 -> 5014[label="",style="solid", color="burlywood", weight=9]; 5014 -> 3146[label="",style="solid", color="burlywood", weight=3]; 3006[label="primCmpNat Zero xuu5100",fontsize=16,color="burlywood",shape="box"];5015[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5015[label="",style="solid", color="burlywood", weight=9]; 5015 -> 3147[label="",style="solid", color="burlywood", weight=3]; 5016[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5016[label="",style="solid", color="burlywood", weight=9]; 5016 -> 3148[label="",style="solid", color="burlywood", weight=3]; 3763[label="xuu51001",fontsize=16,color="green",shape="box"];3764[label="xuu50001",fontsize=16,color="green",shape="box"];3765[label="xuu51001",fontsize=16,color="green",shape="box"];3766[label="xuu50001",fontsize=16,color="green",shape="box"];3767[label="xuu51001",fontsize=16,color="green",shape="box"];3768[label="xuu50001",fontsize=16,color="green",shape="box"];3769[label="xuu51001",fontsize=16,color="green",shape="box"];3770[label="xuu50001",fontsize=16,color="green",shape="box"];3771[label="xuu51001",fontsize=16,color="green",shape="box"];3772[label="xuu50001",fontsize=16,color="green",shape="box"];3773[label="xuu51001",fontsize=16,color="green",shape="box"];3774[label="xuu50001",fontsize=16,color="green",shape="box"];3775[label="xuu51001",fontsize=16,color="green",shape="box"];3776[label="xuu50001",fontsize=16,color="green",shape="box"];3777[label="xuu51001",fontsize=16,color="green",shape="box"];3778[label="xuu50001",fontsize=16,color="green",shape="box"];3779[label="xuu51001",fontsize=16,color="green",shape="box"];3780[label="xuu50001",fontsize=16,color="green",shape="box"];3781[label="xuu51001",fontsize=16,color="green",shape="box"];3782[label="xuu50001",fontsize=16,color="green",shape="box"];3783[label="xuu51001",fontsize=16,color="green",shape="box"];3784[label="xuu50001",fontsize=16,color="green",shape="box"];3785[label="xuu51001",fontsize=16,color="green",shape="box"];3786[label="xuu50001",fontsize=16,color="green",shape="box"];3787[label="xuu51001",fontsize=16,color="green",shape="box"];3788[label="xuu50001",fontsize=16,color="green",shape="box"];3789[label="xuu51001",fontsize=16,color="green",shape="box"];3790[label="xuu50001",fontsize=16,color="green",shape="box"];3791 -> 2949[label="",style="dashed", color="red", weight=0]; 3791[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3791 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3792 -> 2950[label="",style="dashed", color="red", weight=0]; 3792[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3792 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3793 -> 2951[label="",style="dashed", color="red", weight=0]; 3793[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3793 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3794 -> 2952[label="",style="dashed", color="red", weight=0]; 3794[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3794 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3795 -> 2953[label="",style="dashed", color="red", weight=0]; 3795[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3795 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3795 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3796 -> 2954[label="",style="dashed", color="red", weight=0]; 3796[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3796 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3796 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3797 -> 2955[label="",style="dashed", color="red", weight=0]; 3797[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3797 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3797 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3798 -> 2956[label="",style="dashed", color="red", weight=0]; 3798[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3798 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3798 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3799 -> 2957[label="",style="dashed", color="red", weight=0]; 3799[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3799 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3799 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3800 -> 2958[label="",style="dashed", color="red", weight=0]; 3800[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3800 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3800 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3801 -> 2959[label="",style="dashed", color="red", weight=0]; 3801[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3801 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3801 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3802 -> 2960[label="",style="dashed", color="red", weight=0]; 3802[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3802 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3802 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3803 -> 2961[label="",style="dashed", color="red", weight=0]; 3803[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3803 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3803 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3804 -> 2962[label="",style="dashed", color="red", weight=0]; 3804[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3804 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3804 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3805 -> 2216[label="",style="dashed", color="red", weight=0]; 3805[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3805 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3805 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3806 -> 2214[label="",style="dashed", color="red", weight=0]; 3806[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3806 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3807 -> 2212[label="",style="dashed", color="red", weight=0]; 3807[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3807 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3807 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3808 -> 2205[label="",style="dashed", color="red", weight=0]; 3808[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3808 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3808 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3809 -> 2209[label="",style="dashed", color="red", weight=0]; 3809[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3809 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3809 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3810 -> 2218[label="",style="dashed", color="red", weight=0]; 3810[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3810 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3810 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3811 -> 2208[label="",style="dashed", color="red", weight=0]; 3811[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3811 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3812 -> 2217[label="",style="dashed", color="red", weight=0]; 3812[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3812 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3812 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3813 -> 83[label="",style="dashed", color="red", weight=0]; 3813[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3813 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3813 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3814 -> 2207[label="",style="dashed", color="red", weight=0]; 3814[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3814 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3815 -> 2211[label="",style="dashed", color="red", weight=0]; 3815[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3815 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3815 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3816 -> 2213[label="",style="dashed", color="red", weight=0]; 3816[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3816 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3817 -> 2206[label="",style="dashed", color="red", weight=0]; 3817[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3817 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3817 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3818 -> 2215[label="",style="dashed", color="red", weight=0]; 3818[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3818 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3818 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3819[label="Integer xuu510000 * xuu50001",fontsize=16,color="burlywood",shape="box"];5017[label="xuu50001/Integer xuu500010",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5017[label="",style="solid", color="burlywood", weight=9]; 5017 -> 3907[label="",style="solid", color="burlywood", weight=3]; 3820[label="xuu51001",fontsize=16,color="green",shape="box"];3821[label="xuu50000",fontsize=16,color="green",shape="box"];3822[label="xuu51001",fontsize=16,color="green",shape="box"];3823[label="xuu50000",fontsize=16,color="green",shape="box"];3824[label="xuu50001",fontsize=16,color="green",shape="box"];3825[label="xuu51000",fontsize=16,color="green",shape="box"];3827[label="compare xuu50000 xuu51000",fontsize=16,color="blue",shape="box"];5018[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3908[label="",style="solid", color="blue", weight=3]; 5019[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3909[label="",style="solid", color="blue", weight=3]; 5020[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3910[label="",style="solid", color="blue", weight=3]; 5021[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3911[label="",style="solid", color="blue", weight=3]; 5022[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3912[label="",style="solid", color="blue", weight=3]; 5023[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3913[label="",style="solid", color="blue", weight=3]; 5024[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3914[label="",style="solid", color="blue", weight=3]; 5025[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3915[label="",style="solid", color="blue", weight=3]; 5026[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3916[label="",style="solid", color="blue", weight=3]; 5027[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3917[label="",style="solid", color="blue", weight=3]; 5028[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3918[label="",style="solid", color="blue", weight=3]; 5029[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3919[label="",style="solid", color="blue", weight=3]; 5030[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3920[label="",style="solid", color="blue", weight=3]; 5031[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3921[label="",style="solid", color="blue", weight=3]; 3828[label="xuu189",fontsize=16,color="green",shape="box"];3826[label="primCompAux0 xuu203 xuu204",fontsize=16,color="burlywood",shape="triangle"];5032[label="xuu204/LT",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5032[label="",style="solid", color="burlywood", weight=9]; 5032 -> 3922[label="",style="solid", color="burlywood", weight=3]; 5033[label="xuu204/EQ",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5033[label="",style="solid", color="burlywood", weight=9]; 5033 -> 3923[label="",style="solid", color="burlywood", weight=3]; 5034[label="xuu204/GT",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5034[label="",style="solid", color="burlywood", weight=9]; 5034 -> 3924[label="",style="solid", color="burlywood", weight=3]; 2117[label="primCmpNat (Succ xuu5000) xuu510",fontsize=16,color="burlywood",shape="triangle"];5035[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];2117 -> 5035[label="",style="solid", color="burlywood", weight=9]; 5035 -> 2259[label="",style="solid", color="burlywood", weight=3]; 5036[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];2117 -> 5036[label="",style="solid", color="burlywood", weight=9]; 5036 -> 2260[label="",style="solid", color="burlywood", weight=3]; 2118[label="GT",fontsize=16,color="green",shape="box"];2119[label="primCmpInt (Pos Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];2119 -> 2261[label="",style="solid", color="black", weight=3]; 2120[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2120 -> 2262[label="",style="solid", color="black", weight=3]; 2121[label="primCmpInt (Pos Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];2121 -> 2263[label="",style="solid", color="black", weight=3]; 2122[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2122 -> 2264[label="",style="solid", color="black", weight=3]; 2123[label="LT",fontsize=16,color="green",shape="box"];2124[label="primCmpNat xuu510 (Succ xuu5000)",fontsize=16,color="burlywood",shape="triangle"];5037[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];2124 -> 5037[label="",style="solid", color="burlywood", weight=9]; 5037 -> 2265[label="",style="solid", color="burlywood", weight=3]; 5038[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];2124 -> 5038[label="",style="solid", color="burlywood", weight=9]; 5038 -> 2266[label="",style="solid", color="burlywood", weight=3]; 2125[label="primCmpInt (Neg Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];2125 -> 2267[label="",style="solid", color="black", weight=3]; 2126[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2126 -> 2268[label="",style="solid", color="black", weight=3]; 2127[label="primCmpInt (Neg Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];2127 -> 2269[label="",style="solid", color="black", weight=3]; 2128[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2128 -> 2270[label="",style="solid", color="black", weight=3]; 2140[label="primPlusInt (Pos xuu5320) (Pos xuu1210)",fontsize=16,color="black",shape="box"];2140 -> 2247[label="",style="solid", color="black", weight=3]; 2141[label="primPlusInt (Pos xuu5320) (Neg xuu1210)",fontsize=16,color="black",shape="box"];2141 -> 2248[label="",style="solid", color="black", weight=3]; 2142[label="primPlusInt (Neg xuu5320) (Pos xuu1210)",fontsize=16,color="black",shape="box"];2142 -> 2249[label="",style="solid", color="black", weight=3]; 2143[label="primPlusInt (Neg xuu5320) (Neg xuu1210)",fontsize=16,color="black",shape="box"];2143 -> 2250[label="",style="solid", color="black", weight=3]; 4166[label="Succ Zero",fontsize=16,color="green",shape="box"];4167[label="xuu61",fontsize=16,color="green",shape="box"];4168[label="xuu53",fontsize=16,color="green",shape="box"];4169[label="xuu64",fontsize=16,color="green",shape="box"];4170[label="Left xuu600",fontsize=16,color="green",shape="box"];2240 -> 2350[label="",style="dashed", color="red", weight=0]; 2240[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 (FiniteMap.sizeFM xuu534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533)",fontsize=16,color="magenta"];2240 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2241 -> 1851[label="",style="dashed", color="red", weight=0]; 2241[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2241 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2242[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2243[label="xuu643",fontsize=16,color="green",shape="box"];2244[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2244 -> 2437[label="",style="solid", color="black", weight=3]; 2245[label="FiniteMap.mkBalBranch6Single_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2245 -> 2438[label="",style="solid", color="black", weight=3]; 4365[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4366[label="FiniteMap.mkBranchLeft_size xuu236 xuu233 xuu235",fontsize=16,color="black",shape="box"];4366 -> 4369[label="",style="solid", color="black", weight=3]; 4367[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4367 -> 4370[label="",style="solid", color="black", weight=3]; 4368[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2360 xuu2361 xuu2362 xuu2363 xuu2364)",fontsize=16,color="black",shape="box"];4368 -> 4371[label="",style="solid", color="black", weight=3]; 4171[label="Succ Zero",fontsize=16,color="green",shape="box"];4172[label="xuu61",fontsize=16,color="green",shape="box"];4173[label="xuu45",fontsize=16,color="green",shape="box"];4174[label="xuu64",fontsize=16,color="green",shape="box"];4175[label="Right xuu600",fontsize=16,color="green",shape="box"];2252 -> 2446[label="",style="dashed", color="red", weight=0]; 2252[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 (FiniteMap.sizeFM xuu454 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453)",fontsize=16,color="magenta"];2252 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2253 -> 1851[label="",style="dashed", color="red", weight=0]; 2253[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2253 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2254[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2255[label="xuu643",fontsize=16,color="green",shape="box"];2256[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2256 -> 2481[label="",style="solid", color="black", weight=3]; 2257[label="FiniteMap.mkBalBranch6Single_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2257 -> 2482[label="",style="solid", color="black", weight=3]; 2156 -> 1550[label="",style="dashed", color="red", weight=0]; 2156[label="primMulNat xuu311000100 (Succ xuu600000)",fontsize=16,color="magenta"];2156 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2155[label="primPlusNat xuu130 (Succ xuu600000)",fontsize=16,color="burlywood",shape="triangle"];5039[label="xuu130/Succ xuu1300",fontsize=10,color="white",style="solid",shape="box"];2155 -> 5039[label="",style="solid", color="burlywood", weight=9]; 5039 -> 2273[label="",style="solid", color="burlywood", weight=3]; 5040[label="xuu130/Zero",fontsize=10,color="white",style="solid",shape="box"];2155 -> 5040[label="",style="solid", color="burlywood", weight=9]; 5040 -> 2274[label="",style="solid", color="burlywood", weight=3]; 3829 -> 782[label="",style="dashed", color="red", weight=0]; 3829[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3829 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3830 -> 782[label="",style="dashed", color="red", weight=0]; 3830[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3830 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3830 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3831 -> 782[label="",style="dashed", color="red", weight=0]; 3831[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3831 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3832 -> 782[label="",style="dashed", color="red", weight=0]; 3832[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3832 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3833 -> 782[label="",style="dashed", color="red", weight=0]; 3833[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3833 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3833 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3834 -> 782[label="",style="dashed", color="red", weight=0]; 3834[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3834 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3835 -> 782[label="",style="dashed", color="red", weight=0]; 3835[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3835 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3835 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3836 -> 782[label="",style="dashed", color="red", weight=0]; 3836[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3836 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3836 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3837 -> 3957[label="",style="dashed", color="red", weight=0]; 3837[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3837 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3838 -> 3961[label="",style="dashed", color="red", weight=0]; 3838[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3838 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3839 -> 3965[label="",style="dashed", color="red", weight=0]; 3839[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3839 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3840 -> 2167[label="",style="dashed", color="red", weight=0]; 3840[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3840 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3840 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3840 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3841 -> 3973[label="",style="dashed", color="red", weight=0]; 3841[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3841 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3976[label="",style="dashed", color="red", weight=0]; 3842[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3842 -> 3977[label="",style="dashed", color="magenta", weight=3]; 1912[label="xuu500",fontsize=16,color="green",shape="box"];1913[label="xuu510",fontsize=16,color="green",shape="box"];3843 -> 782[label="",style="dashed", color="red", weight=0]; 3843[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3843 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3843 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3844 -> 782[label="",style="dashed", color="red", weight=0]; 3844[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3844 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3844 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3845 -> 782[label="",style="dashed", color="red", weight=0]; 3845[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3845 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3845 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3846 -> 782[label="",style="dashed", color="red", weight=0]; 3846[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3846 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3846 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3847 -> 782[label="",style="dashed", color="red", weight=0]; 3847[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3847 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3848 -> 782[label="",style="dashed", color="red", weight=0]; 3848[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3848 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3848 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3849 -> 782[label="",style="dashed", color="red", weight=0]; 3849[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3849 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3849 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3850 -> 782[label="",style="dashed", color="red", weight=0]; 3850[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3850 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3850 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3145[label="primCmpNat (Succ xuu50000) (Succ xuu51000)",fontsize=16,color="black",shape="box"];3145 -> 3450[label="",style="solid", color="black", weight=3]; 3146[label="primCmpNat (Succ xuu50000) Zero",fontsize=16,color="black",shape="box"];3146 -> 3451[label="",style="solid", color="black", weight=3]; 3147[label="primCmpNat Zero (Succ xuu51000)",fontsize=16,color="black",shape="box"];3147 -> 3452[label="",style="solid", color="black", weight=3]; 3148[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3148 -> 3453[label="",style="solid", color="black", weight=3]; 3851[label="xuu51002",fontsize=16,color="green",shape="box"];3852[label="xuu50002",fontsize=16,color="green",shape="box"];3853[label="xuu51002",fontsize=16,color="green",shape="box"];3854[label="xuu50002",fontsize=16,color="green",shape="box"];3855[label="xuu51002",fontsize=16,color="green",shape="box"];3856[label="xuu50002",fontsize=16,color="green",shape="box"];3857[label="xuu51002",fontsize=16,color="green",shape="box"];3858[label="xuu50002",fontsize=16,color="green",shape="box"];3859[label="xuu51002",fontsize=16,color="green",shape="box"];3860[label="xuu50002",fontsize=16,color="green",shape="box"];3861[label="xuu51002",fontsize=16,color="green",shape="box"];3862[label="xuu50002",fontsize=16,color="green",shape="box"];3863[label="xuu51002",fontsize=16,color="green",shape="box"];3864[label="xuu50002",fontsize=16,color="green",shape="box"];3865[label="xuu51002",fontsize=16,color="green",shape="box"];3866[label="xuu50002",fontsize=16,color="green",shape="box"];3867[label="xuu51002",fontsize=16,color="green",shape="box"];3868[label="xuu50002",fontsize=16,color="green",shape="box"];3869[label="xuu51002",fontsize=16,color="green",shape="box"];3870[label="xuu50002",fontsize=16,color="green",shape="box"];3871[label="xuu51002",fontsize=16,color="green",shape="box"];3872[label="xuu50002",fontsize=16,color="green",shape="box"];3873[label="xuu51002",fontsize=16,color="green",shape="box"];3874[label="xuu50002",fontsize=16,color="green",shape="box"];3875[label="xuu51002",fontsize=16,color="green",shape="box"];3876[label="xuu50002",fontsize=16,color="green",shape="box"];3877[label="xuu51002",fontsize=16,color="green",shape="box"];3878[label="xuu50002",fontsize=16,color="green",shape="box"];3879[label="xuu51001",fontsize=16,color="green",shape="box"];3880[label="xuu50001",fontsize=16,color="green",shape="box"];3881[label="xuu51001",fontsize=16,color="green",shape="box"];3882[label="xuu50001",fontsize=16,color="green",shape="box"];3883[label="xuu51001",fontsize=16,color="green",shape="box"];3884[label="xuu50001",fontsize=16,color="green",shape="box"];3885[label="xuu51001",fontsize=16,color="green",shape="box"];3886[label="xuu50001",fontsize=16,color="green",shape="box"];3887[label="xuu51001",fontsize=16,color="green",shape="box"];3888[label="xuu50001",fontsize=16,color="green",shape="box"];3889[label="xuu51001",fontsize=16,color="green",shape="box"];3890[label="xuu50001",fontsize=16,color="green",shape="box"];3891[label="xuu51001",fontsize=16,color="green",shape="box"];3892[label="xuu50001",fontsize=16,color="green",shape="box"];3893[label="xuu51001",fontsize=16,color="green",shape="box"];3894[label="xuu50001",fontsize=16,color="green",shape="box"];3895[label="xuu51001",fontsize=16,color="green",shape="box"];3896[label="xuu50001",fontsize=16,color="green",shape="box"];3897[label="xuu51001",fontsize=16,color="green",shape="box"];3898[label="xuu50001",fontsize=16,color="green",shape="box"];3899[label="xuu51001",fontsize=16,color="green",shape="box"];3900[label="xuu50001",fontsize=16,color="green",shape="box"];3901[label="xuu51001",fontsize=16,color="green",shape="box"];3902[label="xuu50001",fontsize=16,color="green",shape="box"];3903[label="xuu51001",fontsize=16,color="green",shape="box"];3904[label="xuu50001",fontsize=16,color="green",shape="box"];3905[label="xuu51001",fontsize=16,color="green",shape="box"];3906[label="xuu50001",fontsize=16,color="green",shape="box"];3907[label="Integer xuu510000 * Integer xuu500010",fontsize=16,color="black",shape="box"];3907 -> 3994[label="",style="solid", color="black", weight=3]; 3908 -> 3184[label="",style="dashed", color="red", weight=0]; 3908[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3908 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3908 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3909 -> 3573[label="",style="dashed", color="red", weight=0]; 3909[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3909 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3909 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3910 -> 3185[label="",style="dashed", color="red", weight=0]; 3910[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3910 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3910 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3911 -> 3577[label="",style="dashed", color="red", weight=0]; 3911[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3911 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3911 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3912 -> 3186[label="",style="dashed", color="red", weight=0]; 3912[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3912 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3912 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3913 -> 3187[label="",style="dashed", color="red", weight=0]; 3913[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3913 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3913 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3914 -> 3583[label="",style="dashed", color="red", weight=0]; 3914[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3914 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3914 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3915 -> 3585[label="",style="dashed", color="red", weight=0]; 3915[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3915 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3915 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3916 -> 3587[label="",style="dashed", color="red", weight=0]; 3916[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3916 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3916 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3917 -> 3188[label="",style="dashed", color="red", weight=0]; 3917[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3917 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3917 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3918 -> 3591[label="",style="dashed", color="red", weight=0]; 3918[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3918 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3918 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3919 -> 3189[label="",style="dashed", color="red", weight=0]; 3919[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3919 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3919 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3920 -> 3190[label="",style="dashed", color="red", weight=0]; 3920[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3920 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3920 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3921 -> 1329[label="",style="dashed", color="red", weight=0]; 3921[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3921 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3921 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3922[label="primCompAux0 xuu203 LT",fontsize=16,color="black",shape="box"];3922 -> 4023[label="",style="solid", color="black", weight=3]; 3923[label="primCompAux0 xuu203 EQ",fontsize=16,color="black",shape="box"];3923 -> 4024[label="",style="solid", color="black", weight=3]; 3924[label="primCompAux0 xuu203 GT",fontsize=16,color="black",shape="box"];3924 -> 4025[label="",style="solid", color="black", weight=3]; 2259[label="primCmpNat (Succ xuu5000) (Succ xuu5100)",fontsize=16,color="black",shape="box"];2259 -> 2502[label="",style="solid", color="black", weight=3]; 2260[label="primCmpNat (Succ xuu5000) Zero",fontsize=16,color="black",shape="box"];2260 -> 2503[label="",style="solid", color="black", weight=3]; 2261 -> 2124[label="",style="dashed", color="red", weight=0]; 2261[label="primCmpNat Zero (Succ xuu5100)",fontsize=16,color="magenta"];2261 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2262[label="EQ",fontsize=16,color="green",shape="box"];2263[label="GT",fontsize=16,color="green",shape="box"];2264[label="EQ",fontsize=16,color="green",shape="box"];2265[label="primCmpNat (Succ xuu5100) (Succ xuu5000)",fontsize=16,color="black",shape="box"];2265 -> 2506[label="",style="solid", color="black", weight=3]; 2266[label="primCmpNat Zero (Succ xuu5000)",fontsize=16,color="black",shape="box"];2266 -> 2507[label="",style="solid", color="black", weight=3]; 2267[label="LT",fontsize=16,color="green",shape="box"];2268[label="EQ",fontsize=16,color="green",shape="box"];2269 -> 2117[label="",style="dashed", color="red", weight=0]; 2269[label="primCmpNat (Succ xuu5100) Zero",fontsize=16,color="magenta"];2269 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2270[label="EQ",fontsize=16,color="green",shape="box"];2247[label="Pos (primPlusNat xuu5320 xuu1210)",fontsize=16,color="green",shape="box"];2247 -> 2440[label="",style="dashed", color="green", weight=3]; 2248[label="primMinusNat xuu5320 xuu1210",fontsize=16,color="burlywood",shape="triangle"];5041[label="xuu5320/Succ xuu53200",fontsize=10,color="white",style="solid",shape="box"];2248 -> 5041[label="",style="solid", color="burlywood", weight=9]; 5041 -> 2441[label="",style="solid", color="burlywood", weight=3]; 5042[label="xuu5320/Zero",fontsize=10,color="white",style="solid",shape="box"];2248 -> 5042[label="",style="solid", color="burlywood", weight=9]; 5042 -> 2442[label="",style="solid", color="burlywood", weight=3]; 2249 -> 2248[label="",style="dashed", color="red", weight=0]; 2249[label="primMinusNat xuu1210 xuu5320",fontsize=16,color="magenta"];2249 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2250[label="Neg (primPlusNat xuu5320 xuu1210)",fontsize=16,color="green",shape="box"];2250 -> 2445[label="",style="dashed", color="green", weight=3]; 2351 -> 1470[label="",style="dashed", color="red", weight=0]; 2351[label="FiniteMap.sizeFM xuu534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];2351 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2350[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 xuu135",fontsize=16,color="burlywood",shape="triangle"];5043[label="xuu135/False",fontsize=10,color="white",style="solid",shape="box"];2350 -> 5043[label="",style="solid", color="burlywood", weight=9]; 5043 -> 2486[label="",style="solid", color="burlywood", weight=3]; 5044[label="xuu135/True",fontsize=10,color="white",style="solid",shape="box"];2350 -> 5044[label="",style="solid", color="burlywood", weight=9]; 5044 -> 2487[label="",style="solid", color="burlywood", weight=3]; 2436[label="xuu644",fontsize=16,color="green",shape="box"];2437[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2437 -> 2488[label="",style="solid", color="black", weight=3]; 2438 -> 4155[label="",style="dashed", color="red", weight=0]; 2438[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu600) xuu61 xuu53 xuu643) xuu644",fontsize=16,color="magenta"];2438 -> 4176[label="",style="dashed", color="magenta", weight=3]; 2438 -> 4177[label="",style="dashed", color="magenta", weight=3]; 2438 -> 4178[label="",style="dashed", color="magenta", weight=3]; 2438 -> 4179[label="",style="dashed", color="magenta", weight=3]; 2438 -> 4180[label="",style="dashed", color="magenta", weight=3]; 4369 -> 4364[label="",style="dashed", color="red", weight=0]; 4369[label="FiniteMap.sizeFM xuu235",fontsize=16,color="magenta"];4369 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4370[label="Pos Zero",fontsize=16,color="green",shape="box"];4371[label="xuu2362",fontsize=16,color="green",shape="box"];2447 -> 1470[label="",style="dashed", color="red", weight=0]; 2447[label="FiniteMap.sizeFM xuu454 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];2447 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2446[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 xuu139",fontsize=16,color="burlywood",shape="triangle"];5045[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5045[label="",style="solid", color="burlywood", weight=9]; 5045 -> 2500[label="",style="solid", color="burlywood", weight=3]; 5046[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5046[label="",style="solid", color="burlywood", weight=9]; 5046 -> 2501[label="",style="solid", color="burlywood", weight=3]; 2480[label="xuu644",fontsize=16,color="green",shape="box"];2481[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2481 -> 2982[label="",style="solid", color="black", weight=3]; 2482 -> 4155[label="",style="dashed", color="red", weight=0]; 2482[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu600) xuu61 xuu45 xuu643) xuu644",fontsize=16,color="magenta"];2482 -> 4181[label="",style="dashed", color="magenta", weight=3]; 2482 -> 4182[label="",style="dashed", color="magenta", weight=3]; 2482 -> 4183[label="",style="dashed", color="magenta", weight=3]; 2482 -> 4184[label="",style="dashed", color="magenta", weight=3]; 2482 -> 4185[label="",style="dashed", color="magenta", weight=3]; 2271[label="Succ xuu600000",fontsize=16,color="green",shape="box"];2272[label="xuu311000100",fontsize=16,color="green",shape="box"];2273[label="primPlusNat (Succ xuu1300) (Succ xuu600000)",fontsize=16,color="black",shape="box"];2273 -> 2510[label="",style="solid", color="black", weight=3]; 2274[label="primPlusNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];2274 -> 2511[label="",style="solid", color="black", weight=3]; 3941[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3942[label="xuu50000",fontsize=16,color="green",shape="box"];3943[label="xuu51000",fontsize=16,color="green",shape="box"];3944[label="Pos xuu500010",fontsize=16,color="green",shape="box"];3945[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3946[label="xuu50000",fontsize=16,color="green",shape="box"];3947[label="xuu51000",fontsize=16,color="green",shape="box"];3948[label="Neg xuu500010",fontsize=16,color="green",shape="box"];3949[label="Neg xuu510010",fontsize=16,color="green",shape="box"];3950[label="xuu50000",fontsize=16,color="green",shape="box"];3951[label="xuu51000",fontsize=16,color="green",shape="box"];3952[label="Pos xuu500010",fontsize=16,color="green",shape="box"];3953[label="Neg xuu510010",fontsize=16,color="green",shape="box"];3954[label="xuu50000",fontsize=16,color="green",shape="box"];3955[label="xuu51000",fontsize=16,color="green",shape="box"];3956[label="Neg xuu500010",fontsize=16,color="green",shape="box"];3958 -> 2214[label="",style="dashed", color="red", weight=0]; 3958[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3958 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3958 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3957[label="compare2 xuu50000 xuu51000 xuu207",fontsize=16,color="burlywood",shape="triangle"];5047[label="xuu207/False",fontsize=10,color="white",style="solid",shape="box"];3957 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 4029[label="",style="solid", color="burlywood", weight=3]; 5048[label="xuu207/True",fontsize=10,color="white",style="solid",shape="box"];3957 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 4030[label="",style="solid", color="burlywood", weight=3]; 3962 -> 2205[label="",style="dashed", color="red", weight=0]; 3962[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3962 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3962 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3961[label="compare2 xuu50000 xuu51000 xuu208",fontsize=16,color="burlywood",shape="triangle"];5049[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];3961 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 4033[label="",style="solid", color="burlywood", weight=3]; 5050[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];3961 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 4034[label="",style="solid", color="burlywood", weight=3]; 3966 -> 2208[label="",style="dashed", color="red", weight=0]; 3966[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3966 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3966 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3965[label="compare2 xuu50000 xuu51000 xuu209",fontsize=16,color="burlywood",shape="triangle"];5051[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];3965 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 4037[label="",style="solid", color="burlywood", weight=3]; 5052[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];3965 -> 5052[label="",style="solid", color="burlywood", weight=9]; 5052 -> 4038[label="",style="solid", color="burlywood", weight=3]; 3970[label="xuu51000",fontsize=16,color="green",shape="box"];3971[label="xuu50000",fontsize=16,color="green",shape="box"];3972 -> 2217[label="",style="dashed", color="red", weight=0]; 3972[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3972 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3974 -> 83[label="",style="dashed", color="red", weight=0]; 3974[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3974 -> 4041[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3973[label="compare2 xuu50000 xuu51000 xuu210",fontsize=16,color="burlywood",shape="triangle"];5053[label="xuu210/False",fontsize=10,color="white",style="solid",shape="box"];3973 -> 5053[label="",style="solid", color="burlywood", weight=9]; 5053 -> 4043[label="",style="solid", color="burlywood", weight=3]; 5054[label="xuu210/True",fontsize=10,color="white",style="solid",shape="box"];3973 -> 5054[label="",style="solid", color="burlywood", weight=9]; 5054 -> 4044[label="",style="solid", color="burlywood", weight=3]; 3977 -> 2211[label="",style="dashed", color="red", weight=0]; 3977[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3977 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3976[label="compare2 xuu50000 xuu51000 xuu211",fontsize=16,color="burlywood",shape="triangle"];5055[label="xuu211/False",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5055[label="",style="solid", color="burlywood", weight=9]; 5055 -> 4047[label="",style="solid", color="burlywood", weight=3]; 5056[label="xuu211/True",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5056[label="",style="solid", color="burlywood", weight=9]; 5056 -> 4048[label="",style="solid", color="burlywood", weight=3]; 3978[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3979[label="xuu50000",fontsize=16,color="green",shape="box"];3980[label="xuu51000",fontsize=16,color="green",shape="box"];3981[label="Pos xuu500010",fontsize=16,color="green",shape="box"];3982[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3983[label="xuu50000",fontsize=16,color="green",shape="box"];3984[label="xuu51000",fontsize=16,color="green",shape="box"];3985[label="Neg xuu500010",fontsize=16,color="green",shape="box"];3986[label="Neg xuu510010",fontsize=16,color="green",shape="box"];3987[label="xuu50000",fontsize=16,color="green",shape="box"];3988[label="xuu51000",fontsize=16,color="green",shape="box"];3989[label="Pos xuu500010",fontsize=16,color="green",shape="box"];3990[label="Neg xuu510010",fontsize=16,color="green",shape="box"];3991[label="xuu50000",fontsize=16,color="green",shape="box"];3992[label="xuu51000",fontsize=16,color="green",shape="box"];3993[label="Neg xuu500010",fontsize=16,color="green",shape="box"];3450 -> 2502[label="",style="dashed", color="red", weight=0]; 3450[label="primCmpNat xuu50000 xuu51000",fontsize=16,color="magenta"];3450 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3451[label="GT",fontsize=16,color="green",shape="box"];3452[label="LT",fontsize=16,color="green",shape="box"];3453[label="EQ",fontsize=16,color="green",shape="box"];3994[label="Integer (primMulInt xuu510000 xuu500010)",fontsize=16,color="green",shape="box"];3994 -> 4071[label="",style="dashed", color="green", weight=3]; 3995[label="xuu51000",fontsize=16,color="green",shape="box"];3996[label="xuu50000",fontsize=16,color="green",shape="box"];3997[label="xuu51000",fontsize=16,color="green",shape="box"];3998[label="xuu50000",fontsize=16,color="green",shape="box"];3999[label="xuu51000",fontsize=16,color="green",shape="box"];4000[label="xuu50000",fontsize=16,color="green",shape="box"];4001[label="xuu51000",fontsize=16,color="green",shape="box"];4002[label="xuu50000",fontsize=16,color="green",shape="box"];4003[label="xuu51000",fontsize=16,color="green",shape="box"];4004[label="xuu50000",fontsize=16,color="green",shape="box"];4005[label="xuu51000",fontsize=16,color="green",shape="box"];4006[label="xuu50000",fontsize=16,color="green",shape="box"];4007[label="xuu51000",fontsize=16,color="green",shape="box"];4008[label="xuu50000",fontsize=16,color="green",shape="box"];4009[label="xuu51000",fontsize=16,color="green",shape="box"];4010[label="xuu50000",fontsize=16,color="green",shape="box"];4011[label="xuu51000",fontsize=16,color="green",shape="box"];4012[label="xuu50000",fontsize=16,color="green",shape="box"];4013[label="xuu51000",fontsize=16,color="green",shape="box"];4014[label="xuu50000",fontsize=16,color="green",shape="box"];4015[label="xuu51000",fontsize=16,color="green",shape="box"];4016[label="xuu50000",fontsize=16,color="green",shape="box"];4017[label="xuu51000",fontsize=16,color="green",shape="box"];4018[label="xuu50000",fontsize=16,color="green",shape="box"];4019[label="xuu51000",fontsize=16,color="green",shape="box"];4020[label="xuu50000",fontsize=16,color="green",shape="box"];4021[label="xuu50000",fontsize=16,color="green",shape="box"];4022[label="xuu51000",fontsize=16,color="green",shape="box"];4023[label="LT",fontsize=16,color="green",shape="box"];4024[label="xuu203",fontsize=16,color="green",shape="box"];4025[label="GT",fontsize=16,color="green",shape="box"];2503[label="GT",fontsize=16,color="green",shape="box"];2504[label="xuu5100",fontsize=16,color="green",shape="box"];2505[label="Zero",fontsize=16,color="green",shape="box"];2506 -> 2502[label="",style="dashed", color="red", weight=0]; 2506[label="primCmpNat xuu5100 xuu5000",fontsize=16,color="magenta"];2506 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2506 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2507[label="LT",fontsize=16,color="green",shape="box"];2508[label="Zero",fontsize=16,color="green",shape="box"];2509[label="xuu5100",fontsize=16,color="green",shape="box"];2440[label="primPlusNat xuu5320 xuu1210",fontsize=16,color="burlywood",shape="triangle"];5057[label="xuu5320/Succ xuu53200",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5057[label="",style="solid", color="burlywood", weight=9]; 5057 -> 2490[label="",style="solid", color="burlywood", weight=3]; 5058[label="xuu5320/Zero",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5058[label="",style="solid", color="burlywood", weight=9]; 5058 -> 2491[label="",style="solid", color="burlywood", weight=3]; 2441[label="primMinusNat (Succ xuu53200) xuu1210",fontsize=16,color="burlywood",shape="box"];5059[label="xuu1210/Succ xuu12100",fontsize=10,color="white",style="solid",shape="box"];2441 -> 5059[label="",style="solid", color="burlywood", weight=9]; 5059 -> 2492[label="",style="solid", color="burlywood", weight=3]; 5060[label="xuu1210/Zero",fontsize=10,color="white",style="solid",shape="box"];2441 -> 5060[label="",style="solid", color="burlywood", weight=9]; 5060 -> 2493[label="",style="solid", color="burlywood", weight=3]; 2442[label="primMinusNat Zero xuu1210",fontsize=16,color="burlywood",shape="box"];5061[label="xuu1210/Succ xuu12100",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5061[label="",style="solid", color="burlywood", weight=9]; 5061 -> 2494[label="",style="solid", color="burlywood", weight=3]; 5062[label="xuu1210/Zero",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5062[label="",style="solid", color="burlywood", weight=9]; 5062 -> 2495[label="",style="solid", color="burlywood", weight=3]; 2443[label="xuu1210",fontsize=16,color="green",shape="box"];2444[label="xuu5320",fontsize=16,color="green",shape="box"];2445 -> 2440[label="",style="dashed", color="red", weight=0]; 2445[label="primPlusNat xuu5320 xuu1210",fontsize=16,color="magenta"];2445 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2484 -> 782[label="",style="dashed", color="red", weight=0]; 2484[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];2484 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2485 -> 1851[label="",style="dashed", color="red", weight=0]; 2485[label="FiniteMap.sizeFM xuu534",fontsize=16,color="magenta"];2485 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2486[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 False",fontsize=16,color="black",shape="box"];2486 -> 2987[label="",style="solid", color="black", weight=3]; 2487[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 True",fontsize=16,color="black",shape="box"];2487 -> 2988[label="",style="solid", color="black", weight=3]; 2488[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];5063[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2488 -> 5063[label="",style="solid", color="burlywood", weight=9]; 5063 -> 2989[label="",style="solid", color="burlywood", weight=3]; 5064[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2488 -> 5064[label="",style="solid", color="burlywood", weight=9]; 5064 -> 2990[label="",style="solid", color="burlywood", weight=3]; 4176[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4177[label="xuu641",fontsize=16,color="green",shape="box"];4178 -> 4155[label="",style="dashed", color="red", weight=0]; 4178[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu600) xuu61 xuu53 xuu643",fontsize=16,color="magenta"];4178 -> 4287[label="",style="dashed", color="magenta", weight=3]; 4178 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4178 -> 4289[label="",style="dashed", color="magenta", weight=3]; 4178 -> 4290[label="",style="dashed", color="magenta", weight=3]; 4178 -> 4291[label="",style="dashed", color="magenta", weight=3]; 4179[label="xuu644",fontsize=16,color="green",shape="box"];4180[label="xuu640",fontsize=16,color="green",shape="box"];4372[label="xuu235",fontsize=16,color="green",shape="box"];2498 -> 782[label="",style="dashed", color="red", weight=0]; 2498[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];2498 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2498 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2499 -> 1851[label="",style="dashed", color="red", weight=0]; 2499[label="FiniteMap.sizeFM xuu454",fontsize=16,color="magenta"];2499 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2500[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 False",fontsize=16,color="black",shape="box"];2500 -> 3003[label="",style="solid", color="black", weight=3]; 2501[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 True",fontsize=16,color="black",shape="box"];2501 -> 3004[label="",style="solid", color="black", weight=3]; 2982[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];5065[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2982 -> 5065[label="",style="solid", color="burlywood", weight=9]; 5065 -> 3126[label="",style="solid", color="burlywood", weight=3]; 5066[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2982 -> 5066[label="",style="solid", color="burlywood", weight=9]; 5066 -> 3127[label="",style="solid", color="burlywood", weight=3]; 4181[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4182[label="xuu641",fontsize=16,color="green",shape="box"];4183 -> 4155[label="",style="dashed", color="red", weight=0]; 4183[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu600) xuu61 xuu45 xuu643",fontsize=16,color="magenta"];4183 -> 4292[label="",style="dashed", color="magenta", weight=3]; 4183 -> 4293[label="",style="dashed", color="magenta", weight=3]; 4183 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4183 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4183 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4184[label="xuu644",fontsize=16,color="green",shape="box"];4185[label="xuu640",fontsize=16,color="green",shape="box"];2510[label="Succ (Succ (primPlusNat xuu1300 xuu600000))",fontsize=16,color="green",shape="box"];2510 -> 3009[label="",style="dashed", color="green", weight=3]; 2511[label="Succ xuu600000",fontsize=16,color="green",shape="box"];4027[label="xuu51000",fontsize=16,color="green",shape="box"];4028[label="xuu50000",fontsize=16,color="green",shape="box"];4029[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4029 -> 4072[label="",style="solid", color="black", weight=3]; 4030[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4030 -> 4073[label="",style="solid", color="black", weight=3]; 4031[label="xuu51000",fontsize=16,color="green",shape="box"];4032[label="xuu50000",fontsize=16,color="green",shape="box"];4033[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4033 -> 4074[label="",style="solid", color="black", weight=3]; 4034[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4034 -> 4075[label="",style="solid", color="black", weight=3]; 4035[label="xuu51000",fontsize=16,color="green",shape="box"];4036[label="xuu50000",fontsize=16,color="green",shape="box"];4037[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4037 -> 4076[label="",style="solid", color="black", weight=3]; 4038[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4038 -> 4077[label="",style="solid", color="black", weight=3]; 4039[label="xuu51000",fontsize=16,color="green",shape="box"];4040[label="xuu50000",fontsize=16,color="green",shape="box"];4041[label="xuu51000",fontsize=16,color="green",shape="box"];4042[label="xuu50000",fontsize=16,color="green",shape="box"];4043[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4043 -> 4078[label="",style="solid", color="black", weight=3]; 4044[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4044 -> 4079[label="",style="solid", color="black", weight=3]; 4045[label="xuu51000",fontsize=16,color="green",shape="box"];4046[label="xuu50000",fontsize=16,color="green",shape="box"];4047[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4047 -> 4080[label="",style="solid", color="black", weight=3]; 4048[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4048 -> 4081[label="",style="solid", color="black", weight=3]; 3712[label="xuu51000",fontsize=16,color="green",shape="box"];3713[label="xuu50000",fontsize=16,color="green",shape="box"];4071 -> 1087[label="",style="dashed", color="red", weight=0]; 4071[label="primMulInt xuu510000 xuu500010",fontsize=16,color="magenta"];4071 -> 4095[label="",style="dashed", color="magenta", weight=3]; 4071 -> 4096[label="",style="dashed", color="magenta", weight=3]; 3007[label="xuu5000",fontsize=16,color="green",shape="box"];3008[label="xuu5100",fontsize=16,color="green",shape="box"];2490[label="primPlusNat (Succ xuu53200) xuu1210",fontsize=16,color="burlywood",shape="box"];5067[label="xuu1210/Succ xuu12100",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5067[label="",style="solid", color="burlywood", weight=9]; 5067 -> 2992[label="",style="solid", color="burlywood", weight=3]; 5068[label="xuu1210/Zero",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5068[label="",style="solid", color="burlywood", weight=9]; 5068 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2491[label="primPlusNat Zero xuu1210",fontsize=16,color="burlywood",shape="box"];5069[label="xuu1210/Succ xuu12100",fontsize=10,color="white",style="solid",shape="box"];2491 -> 5069[label="",style="solid", color="burlywood", weight=9]; 5069 -> 2994[label="",style="solid", color="burlywood", weight=3]; 5070[label="xuu1210/Zero",fontsize=10,color="white",style="solid",shape="box"];2491 -> 5070[label="",style="solid", color="burlywood", weight=9]; 5070 -> 2995[label="",style="solid", color="burlywood", weight=3]; 2492[label="primMinusNat (Succ xuu53200) (Succ xuu12100)",fontsize=16,color="black",shape="box"];2492 -> 2996[label="",style="solid", color="black", weight=3]; 2493[label="primMinusNat (Succ xuu53200) Zero",fontsize=16,color="black",shape="box"];2493 -> 2997[label="",style="solid", color="black", weight=3]; 2494[label="primMinusNat Zero (Succ xuu12100)",fontsize=16,color="black",shape="box"];2494 -> 2998[label="",style="solid", color="black", weight=3]; 2495[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2495 -> 2999[label="",style="solid", color="black", weight=3]; 2496[label="xuu1210",fontsize=16,color="green",shape="box"];2497[label="xuu5320",fontsize=16,color="green",shape="box"];2984 -> 1851[label="",style="dashed", color="red", weight=0]; 2984[label="FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];2984 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2985[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2986[label="xuu534",fontsize=16,color="green",shape="box"];2987[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 otherwise",fontsize=16,color="black",shape="box"];2987 -> 3130[label="",style="solid", color="black", weight=3]; 2988[label="FiniteMap.mkBalBranch6Single_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64",fontsize=16,color="black",shape="box"];2988 -> 3131[label="",style="solid", color="black", weight=3]; 2989[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2989 -> 3132[label="",style="solid", color="black", weight=3]; 2990[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2990 -> 3133[label="",style="solid", color="black", weight=3]; 4287[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4288[label="xuu61",fontsize=16,color="green",shape="box"];4289[label="xuu53",fontsize=16,color="green",shape="box"];4290[label="xuu643",fontsize=16,color="green",shape="box"];4291[label="Left xuu600",fontsize=16,color="green",shape="box"];3000 -> 1851[label="",style="dashed", color="red", weight=0]; 3000[label="FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];3000 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3001[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3002[label="xuu454",fontsize=16,color="green",shape="box"];3003[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 otherwise",fontsize=16,color="black",shape="box"];3003 -> 3143[label="",style="solid", color="black", weight=3]; 3004[label="FiniteMap.mkBalBranch6Single_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64",fontsize=16,color="black",shape="box"];3004 -> 3144[label="",style="solid", color="black", weight=3]; 3126[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];3126 -> 3228[label="",style="solid", color="black", weight=3]; 3127[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];3127 -> 3229[label="",style="solid", color="black", weight=3]; 4292[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4293[label="xuu61",fontsize=16,color="green",shape="box"];4294[label="xuu45",fontsize=16,color="green",shape="box"];4295[label="xuu643",fontsize=16,color="green",shape="box"];4296[label="Right xuu600",fontsize=16,color="green",shape="box"];3009 -> 2440[label="",style="dashed", color="red", weight=0]; 3009[label="primPlusNat xuu1300 xuu600000",fontsize=16,color="magenta"];3009 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3150[label="",style="dashed", color="magenta", weight=3]; 4072 -> 4097[label="",style="dashed", color="red", weight=0]; 4072[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4072 -> 4098[label="",style="dashed", color="magenta", weight=3]; 4073[label="EQ",fontsize=16,color="green",shape="box"];4074 -> 4099[label="",style="dashed", color="red", weight=0]; 4074[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4074 -> 4100[label="",style="dashed", color="magenta", weight=3]; 4075[label="EQ",fontsize=16,color="green",shape="box"];4076 -> 4101[label="",style="dashed", color="red", weight=0]; 4076[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4076 -> 4102[label="",style="dashed", color="magenta", weight=3]; 4077[label="EQ",fontsize=16,color="green",shape="box"];4078 -> 4103[label="",style="dashed", color="red", weight=0]; 4078[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4078 -> 4104[label="",style="dashed", color="magenta", weight=3]; 4079[label="EQ",fontsize=16,color="green",shape="box"];4080 -> 4105[label="",style="dashed", color="red", weight=0]; 4080[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4080 -> 4106[label="",style="dashed", color="magenta", weight=3]; 4081[label="EQ",fontsize=16,color="green",shape="box"];4095[label="xuu500010",fontsize=16,color="green",shape="box"];4096[label="xuu510000",fontsize=16,color="green",shape="box"];2992[label="primPlusNat (Succ xuu53200) (Succ xuu12100)",fontsize=16,color="black",shape="box"];2992 -> 3136[label="",style="solid", color="black", weight=3]; 2993[label="primPlusNat (Succ xuu53200) Zero",fontsize=16,color="black",shape="box"];2993 -> 3137[label="",style="solid", color="black", weight=3]; 2994[label="primPlusNat Zero (Succ xuu12100)",fontsize=16,color="black",shape="box"];2994 -> 3138[label="",style="solid", color="black", weight=3]; 2995[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2995 -> 3139[label="",style="solid", color="black", weight=3]; 2996 -> 2248[label="",style="dashed", color="red", weight=0]; 2996[label="primMinusNat xuu53200 xuu12100",fontsize=16,color="magenta"];2996 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2997[label="Pos (Succ xuu53200)",fontsize=16,color="green",shape="box"];2998[label="Neg (Succ xuu12100)",fontsize=16,color="green",shape="box"];2999[label="Pos Zero",fontsize=16,color="green",shape="box"];3129[label="xuu533",fontsize=16,color="green",shape="box"];3130[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 True",fontsize=16,color="black",shape="box"];3130 -> 3232[label="",style="solid", color="black", weight=3]; 3131 -> 4155[label="",style="dashed", color="red", weight=0]; 3131[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu530 xuu531 xuu533 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu600) xuu61 xuu534 xuu64)",fontsize=16,color="magenta"];3131 -> 4186[label="",style="dashed", color="magenta", weight=3]; 3131 -> 4187[label="",style="dashed", color="magenta", weight=3]; 3131 -> 4188[label="",style="dashed", color="magenta", weight=3]; 3131 -> 4189[label="",style="dashed", color="magenta", weight=3]; 3131 -> 4190[label="",style="dashed", color="magenta", weight=3]; 3132[label="error []",fontsize=16,color="red",shape="box"];3133 -> 4155[label="",style="dashed", color="red", weight=0]; 3133[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu600) xuu61 xuu53 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3133 -> 4191[label="",style="dashed", color="magenta", weight=3]; 3133 -> 4192[label="",style="dashed", color="magenta", weight=3]; 3133 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3133 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3133 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3142[label="xuu453",fontsize=16,color="green",shape="box"];3143[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 True",fontsize=16,color="black",shape="box"];3143 -> 3458[label="",style="solid", color="black", weight=3]; 3144 -> 4155[label="",style="dashed", color="red", weight=0]; 3144[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu450 xuu451 xuu453 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu600) xuu61 xuu454 xuu64)",fontsize=16,color="magenta"];3144 -> 4201[label="",style="dashed", color="magenta", weight=3]; 3144 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3144 -> 4203[label="",style="dashed", color="magenta", weight=3]; 3144 -> 4204[label="",style="dashed", color="magenta", weight=3]; 3144 -> 4205[label="",style="dashed", color="magenta", weight=3]; 3228[label="error []",fontsize=16,color="red",shape="box"];3229 -> 4155[label="",style="dashed", color="red", weight=0]; 3229[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu600) xuu61 xuu45 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3229 -> 4206[label="",style="dashed", color="magenta", weight=3]; 3229 -> 4207[label="",style="dashed", color="magenta", weight=3]; 3229 -> 4208[label="",style="dashed", color="magenta", weight=3]; 3229 -> 4209[label="",style="dashed", color="magenta", weight=3]; 3229 -> 4210[label="",style="dashed", color="magenta", weight=3]; 3149[label="xuu600000",fontsize=16,color="green",shape="box"];3150[label="xuu1300",fontsize=16,color="green",shape="box"];4098 -> 2950[label="",style="dashed", color="red", weight=0]; 4098[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4098 -> 4107[label="",style="dashed", color="magenta", weight=3]; 4098 -> 4108[label="",style="dashed", color="magenta", weight=3]; 4097[label="compare1 xuu50000 xuu51000 xuu222",fontsize=16,color="burlywood",shape="triangle"];5071[label="xuu222/False",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5071[label="",style="solid", color="burlywood", weight=9]; 5071 -> 4109[label="",style="solid", color="burlywood", weight=3]; 5072[label="xuu222/True",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5072[label="",style="solid", color="burlywood", weight=9]; 5072 -> 4110[label="",style="solid", color="burlywood", weight=3]; 4100 -> 2952[label="",style="dashed", color="red", weight=0]; 4100[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4100 -> 4111[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4112[label="",style="dashed", color="magenta", weight=3]; 4099[label="compare1 xuu50000 xuu51000 xuu223",fontsize=16,color="burlywood",shape="triangle"];5073[label="xuu223/False",fontsize=10,color="white",style="solid",shape="box"];4099 -> 5073[label="",style="solid", color="burlywood", weight=9]; 5073 -> 4113[label="",style="solid", color="burlywood", weight=3]; 5074[label="xuu223/True",fontsize=10,color="white",style="solid",shape="box"];4099 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 4114[label="",style="solid", color="burlywood", weight=3]; 4102 -> 2955[label="",style="dashed", color="red", weight=0]; 4102[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4102 -> 4115[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4116[label="",style="dashed", color="magenta", weight=3]; 4101[label="compare1 xuu50000 xuu51000 xuu224",fontsize=16,color="burlywood",shape="triangle"];5075[label="xuu224/False",fontsize=10,color="white",style="solid",shape="box"];4101 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 4117[label="",style="solid", color="burlywood", weight=3]; 5076[label="xuu224/True",fontsize=10,color="white",style="solid",shape="box"];4101 -> 5076[label="",style="solid", color="burlywood", weight=9]; 5076 -> 4118[label="",style="solid", color="burlywood", weight=3]; 4104 -> 2957[label="",style="dashed", color="red", weight=0]; 4104[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4104 -> 4119[label="",style="dashed", color="magenta", weight=3]; 4104 -> 4120[label="",style="dashed", color="magenta", weight=3]; 4103[label="compare1 xuu50000 xuu51000 xuu225",fontsize=16,color="burlywood",shape="triangle"];5077[label="xuu225/False",fontsize=10,color="white",style="solid",shape="box"];4103 -> 5077[label="",style="solid", color="burlywood", weight=9]; 5077 -> 4121[label="",style="solid", color="burlywood", weight=3]; 5078[label="xuu225/True",fontsize=10,color="white",style="solid",shape="box"];4103 -> 5078[label="",style="solid", color="burlywood", weight=9]; 5078 -> 4122[label="",style="solid", color="burlywood", weight=3]; 4106 -> 2959[label="",style="dashed", color="red", weight=0]; 4106[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4106 -> 4123[label="",style="dashed", color="magenta", weight=3]; 4106 -> 4124[label="",style="dashed", color="magenta", weight=3]; 4105[label="compare1 xuu50000 xuu51000 xuu226",fontsize=16,color="burlywood",shape="triangle"];5079[label="xuu226/False",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5079[label="",style="solid", color="burlywood", weight=9]; 5079 -> 4125[label="",style="solid", color="burlywood", weight=3]; 5080[label="xuu226/True",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5080[label="",style="solid", color="burlywood", weight=9]; 5080 -> 4126[label="",style="solid", color="burlywood", weight=3]; 3136[label="Succ (Succ (primPlusNat xuu53200 xuu12100))",fontsize=16,color="green",shape="box"];3136 -> 3457[label="",style="dashed", color="green", weight=3]; 3137[label="Succ xuu53200",fontsize=16,color="green",shape="box"];3138[label="Succ xuu12100",fontsize=16,color="green",shape="box"];3139[label="Zero",fontsize=16,color="green",shape="box"];3140[label="xuu53200",fontsize=16,color="green",shape="box"];3141[label="xuu12100",fontsize=16,color="green",shape="box"];3232[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64",fontsize=16,color="burlywood",shape="box"];5081[label="xuu534/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3232 -> 5081[label="",style="solid", color="burlywood", weight=9]; 5081 -> 3714[label="",style="solid", color="burlywood", weight=3]; 5082[label="xuu534/FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344",fontsize=10,color="white",style="solid",shape="box"];3232 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 3715[label="",style="solid", color="burlywood", weight=3]; 4186[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4187[label="xuu531",fontsize=16,color="green",shape="box"];4188[label="xuu533",fontsize=16,color="green",shape="box"];4189 -> 4155[label="",style="dashed", color="red", weight=0]; 4189[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu600) xuu61 xuu534 xuu64",fontsize=16,color="magenta"];4189 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4189 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4189 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4189 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4189 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4190[label="xuu530",fontsize=16,color="green",shape="box"];4191[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4192[label="xuu6431",fontsize=16,color="green",shape="box"];4193 -> 4155[label="",style="dashed", color="red", weight=0]; 4193[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu600) xuu61 xuu53 xuu6433",fontsize=16,color="magenta"];4193 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4193 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4193 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4193 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4193 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4155[label="",style="dashed", color="red", weight=0]; 4194[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];4194 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4195[label="xuu6430",fontsize=16,color="green",shape="box"];3458[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64",fontsize=16,color="burlywood",shape="box"];5083[label="xuu454/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3458 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 4050[label="",style="solid", color="burlywood", weight=3]; 5084[label="xuu454/FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544",fontsize=10,color="white",style="solid",shape="box"];3458 -> 5084[label="",style="solid", color="burlywood", weight=9]; 5084 -> 4051[label="",style="solid", color="burlywood", weight=3]; 4201[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4202[label="xuu451",fontsize=16,color="green",shape="box"];4203[label="xuu453",fontsize=16,color="green",shape="box"];4204 -> 4155[label="",style="dashed", color="red", weight=0]; 4204[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu600) xuu61 xuu454 xuu64",fontsize=16,color="magenta"];4204 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4204 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4204 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4204 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4204 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4205[label="xuu450",fontsize=16,color="green",shape="box"];4206[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4207[label="xuu6431",fontsize=16,color="green",shape="box"];4208 -> 4155[label="",style="dashed", color="red", weight=0]; 4208[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu600) xuu61 xuu45 xuu6433",fontsize=16,color="magenta"];4208 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4155[label="",style="dashed", color="red", weight=0]; 4209[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];4209 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4323[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4324[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4325[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4210[label="xuu6430",fontsize=16,color="green",shape="box"];4107[label="xuu51000",fontsize=16,color="green",shape="box"];4108[label="xuu50000",fontsize=16,color="green",shape="box"];4109[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4109 -> 4144[label="",style="solid", color="black", weight=3]; 4110[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4110 -> 4145[label="",style="solid", color="black", weight=3]; 4111[label="xuu51000",fontsize=16,color="green",shape="box"];4112[label="xuu50000",fontsize=16,color="green",shape="box"];4113[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4113 -> 4146[label="",style="solid", color="black", weight=3]; 4114[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4114 -> 4147[label="",style="solid", color="black", weight=3]; 4115[label="xuu51000",fontsize=16,color="green",shape="box"];4116[label="xuu50000",fontsize=16,color="green",shape="box"];4117[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4117 -> 4148[label="",style="solid", color="black", weight=3]; 4118[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4118 -> 4149[label="",style="solid", color="black", weight=3]; 4119[label="xuu51000",fontsize=16,color="green",shape="box"];4120[label="xuu50000",fontsize=16,color="green",shape="box"];4121[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4121 -> 4150[label="",style="solid", color="black", weight=3]; 4122[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4122 -> 4151[label="",style="solid", color="black", weight=3]; 4123[label="xuu51000",fontsize=16,color="green",shape="box"];4124[label="xuu50000",fontsize=16,color="green",shape="box"];4125[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4125 -> 4152[label="",style="solid", color="black", weight=3]; 4126[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4126 -> 4153[label="",style="solid", color="black", weight=3]; 3457 -> 2440[label="",style="dashed", color="red", weight=0]; 3457[label="primPlusNat xuu53200 xuu12100",fontsize=16,color="magenta"];3457 -> 4085[label="",style="dashed", color="magenta", weight=3]; 3457 -> 4086[label="",style="dashed", color="magenta", weight=3]; 3714[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 FiniteMap.EmptyFM) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3714 -> 4087[label="",style="solid", color="black", weight=3]; 3715[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 (FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344)) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 (FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344)) xuu64",fontsize=16,color="black",shape="box"];3715 -> 4088[label="",style="solid", color="black", weight=3]; 4297[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4298[label="xuu61",fontsize=16,color="green",shape="box"];4299[label="xuu534",fontsize=16,color="green",shape="box"];4300[label="xuu64",fontsize=16,color="green",shape="box"];4301[label="Left xuu600",fontsize=16,color="green",shape="box"];4302[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4303[label="xuu61",fontsize=16,color="green",shape="box"];4304[label="xuu53",fontsize=16,color="green",shape="box"];4305[label="xuu6433",fontsize=16,color="green",shape="box"];4306[label="Left xuu600",fontsize=16,color="green",shape="box"];4307[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4308[label="xuu641",fontsize=16,color="green",shape="box"];4309[label="xuu6434",fontsize=16,color="green",shape="box"];4310[label="xuu644",fontsize=16,color="green",shape="box"];4311[label="xuu640",fontsize=16,color="green",shape="box"];4050[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 FiniteMap.EmptyFM) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];4050 -> 4093[label="",style="solid", color="black", weight=3]; 4051[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 (FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544)) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 (FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544)) xuu64",fontsize=16,color="black",shape="box"];4051 -> 4094[label="",style="solid", color="black", weight=3]; 4312[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4313[label="xuu61",fontsize=16,color="green",shape="box"];4314[label="xuu454",fontsize=16,color="green",shape="box"];4315[label="xuu64",fontsize=16,color="green",shape="box"];4316[label="Right xuu600",fontsize=16,color="green",shape="box"];4317[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4318[label="xuu61",fontsize=16,color="green",shape="box"];4319[label="xuu45",fontsize=16,color="green",shape="box"];4320[label="xuu6433",fontsize=16,color="green",shape="box"];4321[label="Right xuu600",fontsize=16,color="green",shape="box"];4322[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4323[label="xuu641",fontsize=16,color="green",shape="box"];4324[label="xuu6434",fontsize=16,color="green",shape="box"];4325[label="xuu644",fontsize=16,color="green",shape="box"];4326[label="xuu640",fontsize=16,color="green",shape="box"];4144[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4144 -> 4327[label="",style="solid", color="black", weight=3]; 4145[label="LT",fontsize=16,color="green",shape="box"];4146[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4146 -> 4328[label="",style="solid", color="black", weight=3]; 4147[label="LT",fontsize=16,color="green",shape="box"];4148[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4148 -> 4329[label="",style="solid", color="black", weight=3]; 4149[label="LT",fontsize=16,color="green",shape="box"];4150[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4150 -> 4330[label="",style="solid", color="black", weight=3]; 4151[label="LT",fontsize=16,color="green",shape="box"];4152[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4152 -> 4331[label="",style="solid", color="black", weight=3]; 4153[label="LT",fontsize=16,color="green",shape="box"];4085[label="xuu12100",fontsize=16,color="green",shape="box"];4086[label="xuu53200",fontsize=16,color="green",shape="box"];4087[label="error []",fontsize=16,color="red",shape="box"];4088 -> 4155[label="",style="dashed", color="red", weight=0]; 4088[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu5340 xuu5341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu530 xuu531 xuu533 xuu5343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu600) xuu61 xuu5344 xuu64)",fontsize=16,color="magenta"];4088 -> 4246[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4247[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4248[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4093[label="error []",fontsize=16,color="red",shape="box"];4094 -> 4155[label="",style="dashed", color="red", weight=0]; 4094[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4540 xuu4541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu450 xuu451 xuu453 xuu4543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu600) xuu61 xuu4544 xuu64)",fontsize=16,color="magenta"];4094 -> 4261[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4262[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4263[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4264[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4265[label="",style="dashed", color="magenta", weight=3]; 4327[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4327 -> 4353[label="",style="solid", color="black", weight=3]; 4328[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4328 -> 4354[label="",style="solid", color="black", weight=3]; 4329[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4329 -> 4355[label="",style="solid", color="black", weight=3]; 4330[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4330 -> 4356[label="",style="solid", color="black", weight=3]; 4331[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4331 -> 4357[label="",style="solid", color="black", weight=3]; 4246[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4247[label="xuu5341",fontsize=16,color="green",shape="box"];4248 -> 4155[label="",style="dashed", color="red", weight=0]; 4248[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu530 xuu531 xuu533 xuu5343",fontsize=16,color="magenta"];4248 -> 4332[label="",style="dashed", color="magenta", weight=3]; 4248 -> 4333[label="",style="dashed", color="magenta", weight=3]; 4248 -> 4334[label="",style="dashed", color="magenta", weight=3]; 4248 -> 4335[label="",style="dashed", color="magenta", weight=3]; 4248 -> 4336[label="",style="dashed", color="magenta", weight=3]; 4249 -> 4155[label="",style="dashed", color="red", weight=0]; 4249[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu600) xuu61 xuu5344 xuu64",fontsize=16,color="magenta"];4249 -> 4337[label="",style="dashed", color="magenta", weight=3]; 4249 -> 4338[label="",style="dashed", color="magenta", weight=3]; 4249 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4249 -> 4340[label="",style="dashed", color="magenta", weight=3]; 4249 -> 4341[label="",style="dashed", color="magenta", weight=3]; 4250[label="xuu5340",fontsize=16,color="green",shape="box"];4261[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4262[label="xuu4541",fontsize=16,color="green",shape="box"];4263 -> 4155[label="",style="dashed", color="red", weight=0]; 4263[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu450 xuu451 xuu453 xuu4543",fontsize=16,color="magenta"];4263 -> 4342[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4155[label="",style="dashed", color="red", weight=0]; 4264[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu600) xuu61 xuu4544 xuu64",fontsize=16,color="magenta"];4264 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4265[label="xuu4540",fontsize=16,color="green",shape="box"];4353[label="GT",fontsize=16,color="green",shape="box"];4354[label="GT",fontsize=16,color="green",shape="box"];4355[label="GT",fontsize=16,color="green",shape="box"];4356[label="GT",fontsize=16,color="green",shape="box"];4357[label="GT",fontsize=16,color="green",shape="box"];4332[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4333[label="xuu531",fontsize=16,color="green",shape="box"];4334[label="xuu533",fontsize=16,color="green",shape="box"];4335[label="xuu5343",fontsize=16,color="green",shape="box"];4336[label="xuu530",fontsize=16,color="green",shape="box"];4337[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4338[label="xuu61",fontsize=16,color="green",shape="box"];4339[label="xuu5344",fontsize=16,color="green",shape="box"];4340[label="xuu64",fontsize=16,color="green",shape="box"];4341[label="Left xuu600",fontsize=16,color="green",shape="box"];4342[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4343[label="xuu451",fontsize=16,color="green",shape="box"];4344[label="xuu453",fontsize=16,color="green",shape="box"];4345[label="xuu4543",fontsize=16,color="green",shape="box"];4346[label="xuu450",fontsize=16,color="green",shape="box"];4347[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4348[label="xuu61",fontsize=16,color="green",shape="box"];4349[label="xuu4544",fontsize=16,color="green",shape="box"];4350[label="xuu64",fontsize=16,color="green",shape="box"];4351[label="Right xuu600",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(xuu50000), Succ(xuu51000)) -> new_primCmpNat(xuu50000, 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(xuu50000), Succ(xuu51000)) -> new_primCmpNat(xuu50000, 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_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare23(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) The TRS R consists of the following rules: new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_Either, hc), hd), gg) -> new_ltEs7(xuu50000, xuu51000, hc, hd) new_ltEs7(Right(xuu50000), Left(xuu51000), bab, gg) -> False new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_[], bbd)) -> new_ltEs6(xuu50000, xuu51000, bbd) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare28(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) new_lt11(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_lt5(xuu50000, xuu51000, cad, cae) new_lt14(xuu50000, xuu51000, ceb) -> new_esEs8(new_compare25(xuu50000, xuu51000, ceb), LT) new_pePe(True, xuu179) -> True new_primCmpNat0(xuu5000, Succ(xuu5100)) -> new_primCmpNat1(xuu5000, xuu5100) new_compare12(xuu160, xuu161, False, bbe, bbf) -> GT new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(xuu50002, xuu51002, cdc, cdd) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_ltEs18(xuu50002, xuu51002, ty_Ordering) -> new_ltEs14(xuu50002, xuu51002) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(xuu3110001, xuu6001, bdh, bea, beb) new_lt7(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare4(xuu50000, xuu51000, bgb), LT) new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_compare112(xuu50000, xuu51000, True, ceb) -> LT new_esEs23(xuu50001, xuu51001, ty_Int) -> new_esEs17(xuu50001, xuu51001) new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) new_esEs24(xuu50000, xuu51000, app(ty_[], cbe)) -> new_esEs11(xuu50000, xuu51000, cbe) new_esEs30(xuu311000, xuu600, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu311000, xuu600, ca, cb) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt20(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_lt18(xuu50000, xuu51000, ddf) new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_esEs24(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bgc)) -> new_ltEs16(xuu5000, xuu5100, bgc) new_esEs30(xuu311000, xuu600, app(ty_Ratio, cef)) -> new_esEs16(xuu311000, xuu600, cef) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_ltEs9(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), dag, dah) -> new_pePe(new_lt20(xuu50000, xuu51000, dag), new_asAs(new_esEs28(xuu50000, xuu51000, dag), new_ltEs21(xuu50001, xuu51001, dah))) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_[], baa), gg) -> new_ltEs6(xuu50000, xuu51000, baa) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Double, gg) -> new_ltEs8(xuu50000, xuu51000) new_compare4(:(xuu50000, xuu50001), :(xuu51000, xuu51001), gd) -> new_primCompAux0(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, gd), gd) new_ltEs10(xuu5000, xuu5100) -> new_fsEs(new_compare19(xuu5000, xuu5100)) new_compare30(xuu50000, xuu51000, ty_Int) -> new_compare28(xuu50000, xuu51000) new_ltEs4(False, True) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_@2, bac), bad)) -> new_ltEs9(xuu50000, xuu51000, bac, bad) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_compare30(xuu50000, xuu51000, app(app(ty_Either, dff), dfg)) -> new_compare13(xuu50000, xuu51000, dff, dfg) new_esEs24(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_esEs16(xuu50000, xuu51000, cbd) new_primCmpNat1(Succ(xuu50000), Succ(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primCompAux0(xuu50000, xuu51000, xuu189, gd) -> new_primCompAux00(xuu189, new_compare30(xuu50000, xuu51000, gd)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_lt12(xuu50001, xuu51001, ty_Float) -> new_lt9(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, he), hf), hg), gg) -> new_ltEs15(xuu50000, xuu51000, he, hf, hg) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs8(GT, GT) -> True new_fsEs(xuu163) -> new_not(new_esEs8(xuu163, GT)) new_compare9(xuu50000, xuu51000) -> new_compare210(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, che), chf), chg)) -> new_esEs7(xuu311000, xuu600, che, chf, chg) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], dgf), dfb) -> new_esEs11(xuu3110000, xuu6000, dgf) new_ltEs19(xuu5000, xuu5100, app(ty_[], gd)) -> new_ltEs6(xuu5000, xuu5100, gd) new_esEs24(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_esEs4(xuu50000, xuu51000, cad, cae) new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu50002, xuu51002, ty_Int) -> new_ltEs17(xuu50002, xuu51002) new_esEs28(xuu50000, xuu51000, app(ty_[], bgb)) -> new_esEs11(xuu50000, xuu51000, bgb) new_esEs8(EQ, EQ) -> True new_esEs24(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Float) -> new_esEs19(xuu50001, xuu51001) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_not(True) -> False new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs7(xuu3110001, xuu6001, ce, cf, cg) new_ltEs20(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCompAux00(xuu203, LT) -> LT new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_lt17(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(xuu50000, xuu51000, bhb, bhc, bhd) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_compare25(xuu50000, xuu51000, ceb) -> new_compare26(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, ceb), ceb) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(ty_[], bce)) -> new_esEs11(xuu3110002, xuu6002, bce) new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs15(xuu39, xuu34) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, ec)) -> new_esEs16(xuu3110000, xuu6000, ec) new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, ty_Ordering) -> new_compare15(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs7(xuu3110000, xuu6000, dh, ea, eb) new_lt11(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(ty_Either, dbd), dbe)) -> new_ltEs7(xuu5000, xuu5100, dbd, dbe) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs14(@0, @0) -> True new_ltEs18(xuu50002, xuu51002, ty_Float) -> new_ltEs13(xuu50002, xuu51002) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Bool, gg) -> new_ltEs4(xuu50000, xuu51000) new_lt11(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(Left(xuu5000), Right(xuu5100), False, dae, daf) -> LT new_lt12(xuu50001, xuu51001, ty_Integer) -> new_lt10(xuu50001, xuu51001) new_primCompAux00(xuu203, GT) -> GT new_esEs24(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_ltEs14(EQ, EQ) -> True new_primCmpNat2(Zero, xuu5000) -> LT new_esEs20(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_esEs10(xuu3110000, xuu6000, app(ty_[], dg)) -> new_esEs11(xuu3110000, xuu6000, dg) new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs14(xuu39, xuu34) new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs18(xuu22, xuu17) new_ltEs18(xuu50002, xuu51002, ty_Char) -> new_ltEs5(xuu50002, xuu51002) new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT new_esEs20(xuu3110002, xuu6002, app(ty_Ratio, bda)) -> new_esEs16(xuu3110002, xuu6002, bda) new_esEs20(xuu3110002, xuu6002, app(app(ty_@2, bdb), bdc)) -> new_esEs4(xuu3110002, xuu6002, bdb, bdc) new_ltEs14(EQ, LT) -> False new_lt5(xuu50000, xuu51000, ge, gf) -> new_esEs8(new_compare8(xuu50000, xuu51000, ge, gf), LT) new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_lt11(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Integer) -> new_ltEs10(xuu50002, xuu51002) new_primPlusNat1(Succ(xuu53200), Succ(xuu12100)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu12100))) new_lt12(xuu50001, xuu51001, app(ty_[], ccg)) -> new_lt7(xuu50001, xuu51001, ccg) new_ltEs21(xuu50001, xuu51001, ty_@0) -> new_ltEs12(xuu50001, xuu51001) new_lt11(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt17(xuu50000, xuu51000, cba, cbb, cbc) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Maybe, dhg)) -> new_esEs5(xuu3110000, xuu6000, dhg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bca, bcb, bcc) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bca), new_asAs(new_esEs21(xuu3110001, xuu6001, bcb), new_esEs20(xuu3110002, xuu6002, bcc))) new_compare210(xuu50000, xuu51000, True) -> EQ new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs7(xuu39, xuu34, cgc, cgd, cge) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Ratio, bhe)) -> new_ltEs16(xuu50000, xuu51000, bhe) new_sr(Integer(xuu510000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu510000, xuu500010)) new_compare110(xuu50000, xuu51000, False, cec, ced, cee) -> GT new_lt9(xuu50000, xuu51000) -> new_esEs8(new_compare17(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_pePe(False, xuu179) -> xuu179 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, bab), gg)) -> new_ltEs7(xuu5000, xuu5100, bab, gg) new_esEs27(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, app(ty_[], dgd)) -> new_compare4(xuu50000, xuu51000, dgd) new_esEs23(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare17(xuu5000, xuu5100)) new_lt11(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_lt18(xuu50000, xuu51000, cbd) new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, cc)) -> new_esEs5(xuu3110001, xuu6001, cc) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dge), dfb) -> new_esEs5(xuu3110000, xuu6000, dge) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bfh), bga)) -> new_esEs6(xuu3110000, xuu6000, bfh, bga) new_esEs11(:(xuu3110000, xuu3110001), [], dcc) -> False new_esEs11([], :(xuu6000, xuu6001), dcc) -> False new_ltEs18(xuu50002, xuu51002, ty_Double) -> new_ltEs8(xuu50002, xuu51002) new_lt11(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_lt14(xuu50000, xuu51000, caf) new_esEs23(xuu50001, xuu51001, ty_Double) -> new_esEs18(xuu50001, xuu51001) new_lt12(xuu50001, xuu51001, ty_Int) -> new_lt19(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bec)) -> new_esEs16(xuu3110001, xuu6001, bec) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, dfb) -> new_esEs8(xuu3110000, xuu6000) new_compare23(xuu500, xuu510, True, dae, daf) -> EQ new_lt15(xuu50000, xuu51000, bbg, bbh) -> new_esEs8(new_compare13(xuu50000, xuu51000, bbg, bbh), LT) new_ltEs8(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu50000, xuu51000, False, ge, gf) -> GT new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bed), bee)) -> new_esEs4(xuu3110001, xuu6001, bed, bee) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_lt11(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_lt15(xuu50001, xuu51001, cca, ccb) new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, dfb) -> new_esEs13(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, app(ty_[], ccg)) -> new_esEs11(xuu50001, xuu51001, ccg) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, app(ty_Ratio, dgc)) -> new_compare16(xuu50000, xuu51000, dgc) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Int, gg) -> new_ltEs17(xuu50000, xuu51000) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bdf)) -> new_esEs5(xuu3110001, xuu6001, bdf) new_lt12(xuu50001, xuu51001, ty_Bool) -> new_lt6(xuu50001, xuu51001) new_ltEs14(EQ, GT) -> True new_esEs5(Nothing, Nothing, eh) -> True new_ltEs14(GT, EQ) -> False new_ltEs20(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Float) -> new_ltEs13(xuu50001, xuu51001) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Ratio, ead)) -> new_esEs16(xuu3110000, xuu6000, ead) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, da)) -> new_esEs16(xuu3110001, xuu6001, da) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), eh) -> False new_esEs5(Just(xuu3110000), Nothing, eh) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, gb), gc)) -> new_esEs6(xuu3110000, xuu6000, gb, gc) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_Either, baf), bag)) -> new_ltEs7(xuu50000, xuu51000, baf, bag) new_ltEs14(LT, GT) -> True new_esEs24(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_esEs6(xuu50000, xuu51000, cag, cah) new_ltEs14(GT, GT) -> True new_compare18(xuu153, xuu154, False, bhg, bhh) -> GT new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, db), dc)) -> new_esEs4(xuu3110001, xuu6001, db, dc) new_ltEs21(xuu50001, xuu51001, app(app(app(ty_@3, ded), dee), def)) -> new_ltEs15(xuu50001, xuu51001, ded, dee, def) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dhe), dhf), dfb) -> new_esEs6(xuu3110000, xuu6000, dhe, dhf) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs7(xuu3110000, xuu6000, fc, fd, ff) new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs7(xuu3110000, xuu6000, bfb, bfc, bfd) new_esEs32(xuu39, xuu34, app(ty_Maybe, cga)) -> new_esEs5(xuu39, xuu34, cga) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs4(xuu3110000, xuu6000, ed, ee) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, ef), eg)) -> new_esEs6(xuu3110000, xuu6000, ef, eg) new_lt11(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Ordering, gg) -> new_ltEs14(xuu50000, xuu51000) new_compare13(xuu50000, xuu51000, bbg, bbh) -> new_compare23(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bbg, bbh), bbg, bbh) new_lt18(xuu50000, xuu51000, ddf) -> new_esEs8(new_compare16(xuu50000, xuu51000, ddf), LT) new_esEs24(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_compare26(xuu50000, xuu51000, True, ceb) -> EQ new_esEs23(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_esEs5(xuu50001, xuu51001, cbh) new_esEs24(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare27(xuu50000, xuu51000, True, cec, ced, cee) -> EQ new_compare30(xuu50000, xuu51000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_compare29(xuu50000, xuu51000, dfh, dga, dgb) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Ratio, bbc)) -> new_ltEs16(xuu50000, xuu51000, bbc) new_compare18(xuu153, xuu154, True, bhg, bhh) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(xuu3110000, xuu6000, eaa, eab, eac) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(LT, LT) -> True new_lt12(xuu50001, xuu51001, ty_Char) -> new_lt16(xuu50001, xuu51001) new_compare19(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_compare111(xuu50000, xuu51000, True) -> LT new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, dfb) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Integer, gg) -> new_ltEs10(xuu50000, xuu51000) new_esEs24(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu50000, xuu51000, cba, cbb, cbc) new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) new_primPlusNat1(Zero, Succ(xuu12100)) -> Succ(xuu12100) new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs18(xuu39, xuu34) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ca, cb) -> new_asAs(new_esEs10(xuu3110000, xuu6000, ca), new_esEs9(xuu3110001, xuu6001, cb)) new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(xuu50002, xuu51002, cde, cdf, cdg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_[], dhh)) -> new_esEs11(xuu3110000, xuu6000, dhh) new_esEs13(True, True) -> True new_esEs11(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs27(xuu3110000, xuu6000, dcc), new_esEs11(xuu3110001, xuu6001, dcc)) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Maybe, bgg)) -> new_ltEs11(xuu50000, xuu51000, bgg) new_lt11(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs15(xuu5000, xuu5100, dbf, dbg, dbh) new_esEs23(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Maybe, bae)) -> new_ltEs11(xuu50000, xuu51000, bae) new_lt12(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_lt14(xuu50001, xuu51001, cbh) new_ltEs18(xuu50002, xuu51002, ty_@0) -> new_ltEs12(xuu50002, xuu51002) new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs14(xuu22, xuu17) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs24(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, df)) -> new_esEs5(xuu3110000, xuu6000, df) new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, beh)) -> new_esEs5(xuu3110000, xuu6000, beh) new_ltEs5(xuu5000, xuu5100) -> new_fsEs(new_compare7(xuu5000, xuu5100)) new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare9(xuu50000, xuu51000), LT) new_esEs23(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_esEs16(xuu50001, xuu51001, ccf) new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs15(xuu5000, xuu5100, caa, cab, cac) new_compare4([], :(xuu51000, xuu51001), gd) -> LT new_lt12(xuu50001, xuu51001, ty_Double) -> new_lt13(xuu50001, xuu51001) new_compare28(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_lt19(xuu500, xuu510) -> new_esEs8(new_compare28(xuu500, xuu510), LT) new_esEs23(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs6(xuu5000, xuu5100, gd) -> new_fsEs(new_compare4(xuu5000, xuu5100, gd)) new_esEs23(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_esEs6(xuu50001, xuu51001, cca, ccb) new_esEs23(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50001, xuu51001, cbf, cbg) new_ltEs21(xuu50001, xuu51001, app(app(ty_@2, ddg), ddh)) -> new_ltEs9(xuu50001, xuu51001, ddg, ddh) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_[], bhf)) -> new_ltEs6(xuu50000, xuu51000, bhf) new_ltEs14(GT, LT) -> False new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bef), beg)) -> new_esEs6(xuu3110001, xuu6001, bef, beg) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bfe)) -> new_esEs16(xuu3110000, xuu6000, bfe) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_ltEs7(Left(xuu50000), Right(xuu51000), bab, gg) -> True new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, dfb) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], fb)) -> new_esEs11(xuu3110000, xuu6000, fb) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_esEs12(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_lt18(xuu50001, xuu51001, ccf) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dhc), dhd), dfb) -> new_esEs4(xuu3110000, xuu6000, dhc, dhd) new_esEs20(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare211(xuu50000, xuu51000, False, ge, gf) -> new_compare11(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000, ge, gf), ge, gf) new_esEs32(xuu39, xuu34, app(ty_[], cgb)) -> new_esEs11(xuu39, xuu34, cgb) new_compare23(Left(xuu5000), Left(xuu5100), False, dae, daf) -> new_compare18(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, dae), dae, daf) new_ltEs20(xuu5000, xuu5100, app(ty_Maybe, dbc)) -> new_ltEs11(xuu5000, xuu5100, dbc) new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(xuu5000, xuu510) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bff), bfg)) -> new_esEs4(xuu3110000, xuu6000, bff, bfg) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_Either, eag), eah)) -> new_esEs6(xuu3110000, xuu6000, eag, eah) new_primCmpNat1(Succ(xuu50000), Zero) -> GT new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_lt15(xuu50000, xuu51000, cag, cah) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs29(xuu22, xuu17, app(ty_Maybe, ceg)) -> new_esEs5(xuu22, xuu17, ceg) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Char, gg) -> new_ltEs5(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_Either, bgh), bha)) -> new_ltEs7(xuu50000, xuu51000, bgh, bha) new_esEs13(False, False) -> True new_lt20(xuu50000, xuu51000, app(ty_[], bgb)) -> new_lt7(xuu50000, xuu51000, bgb) new_primCmpNat0(xuu5000, Zero) -> GT new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, dfb) -> new_esEs19(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(xuu50000, xuu51000, cec, ced, cee) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_compare30(xuu50000, xuu51000, ty_@0) -> new_compare6(xuu50000, xuu51000) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_asAs(True, xuu148) -> xuu148 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare19(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, dd), de)) -> new_esEs6(xuu3110001, xuu6001, dd, de) new_esEs24(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(ty_@2, dba), dbb)) -> new_ltEs9(xuu5000, xuu5100, dba, dbb) new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Right(xuu6000), dfa, dfb) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), dfa, dfb) -> False new_esEs22(xuu3110000, xuu6000, app(ty_[], bfa)) -> new_esEs11(xuu3110000, xuu6000, bfa) new_esEs20(xuu3110002, xuu6002, app(ty_Maybe, bcd)) -> new_esEs5(xuu3110002, xuu6002, bcd) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, fh), ga)) -> new_esEs4(xuu3110000, xuu6000, fh, ga) new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs24(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, dag), dah)) -> new_ltEs9(xuu5000, xuu5100, dag, dah) new_ltEs21(xuu50001, xuu51001, ty_Bool) -> new_ltEs4(xuu50001, xuu51001) new_lt16(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, ty_Int) -> new_ltEs17(xuu50001, xuu51001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, fg)) -> new_esEs16(xuu3110000, xuu6000, fg) new_primCompAux00(xuu203, EQ) -> xuu203 new_ltEs21(xuu50001, xuu51001, ty_Double) -> new_ltEs8(xuu50001, xuu51001) new_ltEs21(xuu50001, xuu51001, app(app(ty_Either, deb), dec)) -> new_ltEs7(xuu50001, xuu51001, deb, dec) new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare4(:(xuu50000, xuu50001), [], gd) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(Left(xuu50000), Left(xuu51000), ty_@0, gg) -> new_ltEs12(xuu50000, xuu51000) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat2(xuu510, xuu5000) new_esEs27(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_compare10(xuu50000, xuu51000, False) -> GT new_esEs27(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_esEs23(xuu50001, xuu51001, ty_Char) -> new_esEs12(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_esEs5(xuu50000, xuu51000, caf) new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs17(xuu22, xuu17) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_esEs30(xuu311000, xuu600, app(ty_Maybe, eh)) -> new_esEs5(xuu311000, xuu600, eh) new_esEs9(xuu3110001, xuu6001, app(ty_[], cd)) -> new_esEs11(xuu3110001, xuu6001, cd) new_primCmpNat1(Zero, Zero) -> EQ new_compare111(xuu50000, xuu51000, False) -> GT new_ltEs18(xuu50002, xuu51002, app(ty_Maybe, cdb)) -> new_ltEs11(xuu50002, xuu51002, cdb) new_esEs32(xuu39, xuu34, app(app(ty_Either, cha), chb)) -> new_esEs6(xuu39, xuu34, cha, chb) new_ltEs16(xuu5000, xuu5100, bgc) -> new_fsEs(new_compare16(xuu5000, xuu5100, bgc)) new_ltEs11(Nothing, Just(xuu51000), bgd) -> True new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_ltEs21(xuu50001, xuu51001, ty_Ordering) -> new_ltEs14(xuu50001, xuu51001) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(ty_Maybe, chc)) -> new_esEs5(xuu311000, xuu600, chc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(app(ty_Either, dac), dad)) -> new_esEs6(xuu311000, xuu600, dac, dad) new_compare210(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs4(xuu50000, xuu51000)) new_lt12(xuu50001, xuu51001, ty_Ordering) -> new_lt8(xuu50001, xuu51001) new_compare24(xuu50000, xuu51000, False) -> new_compare10(xuu50000, xuu51000, new_ltEs14(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bgd)) -> new_ltEs11(xuu5000, xuu5100, bgd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, dfb) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) new_lt12(xuu50001, xuu51001, ty_@0) -> new_lt4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs11(xuu3110000, xuu6000, dce) new_compare30(xuu50000, xuu51000, ty_Float) -> new_compare17(xuu50000, xuu51000) new_lt20(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_lt14(xuu50000, xuu51000, ceb) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare15(xuu50000, xuu51000), LT) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs4(True, False) -> False new_ltEs17(xuu5000, xuu5100) -> new_fsEs(new_compare28(xuu5000, xuu5100)) new_esEs32(xuu39, xuu34, app(app(ty_@2, cgg), cgh)) -> new_esEs4(xuu39, xuu34, cgg, cgh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_@2, eae), eaf)) -> new_esEs4(xuu3110000, xuu6000, eae, eaf) new_ltEs18(xuu50002, xuu51002, app(ty_[], cea)) -> new_ltEs6(xuu50002, xuu51002, cea) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs18(xuu50002, xuu51002, app(app(ty_@2, cch), cda)) -> new_ltEs9(xuu50002, xuu51002, cch, cda) new_compare24(xuu50000, xuu51000, True) -> EQ new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, app(app(ty_Either, bdd), bde)) -> new_esEs6(xuu3110002, xuu6002, bdd, bde) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, app(ty_Ratio, cgf)) -> new_esEs16(xuu39, xuu34, cgf) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_compare4([], [], gd) -> EQ new_lt4(xuu50000, xuu51000) -> new_esEs8(new_compare6(xuu50000, xuu51000), LT) new_compare211(xuu50000, xuu51000, True, ge, gf) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu3110001, xuu6001, app(ty_[], bdg)) -> new_esEs11(xuu3110001, xuu6001, bdg) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_@2, bge), bgf)) -> new_ltEs9(xuu50000, xuu51000, bge, bgf) new_lt11(xuu50000, xuu51000, app(ty_[], cbe)) -> new_lt7(xuu50000, xuu51000, cbe) new_ltEs4(False, False) -> True new_esEs28(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_esEs5(xuu50000, xuu51000, ceb) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cef) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cef), new_esEs25(xuu3110001, xuu6001, cef)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat2(Zero, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare110(xuu50000, xuu51000, True, cec, ced, cee) -> LT new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_ltEs21(xuu50001, xuu51001, ty_Integer) -> new_ltEs10(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_lt17(xuu50000, xuu51000, cec, ced, cee) -> new_esEs8(new_compare29(xuu50000, xuu51000, cec, ced, cee), LT) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, ty_Integer) -> new_compare19(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu22, xuu17, cfa, cfb, cfc) new_esEs31(xuu311000, xuu600, app(app(ty_@2, daa), dab)) -> new_esEs4(xuu311000, xuu600, daa, dab) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs17(xuu39, xuu34) new_compare15(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_not(False) -> True new_ltEs20(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs7(xuu3110002, xuu6002, bcf, bcg, bch) new_compare7(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_compare30(xuu50000, xuu51000, ty_Bool) -> new_compare9(xuu50000, xuu51000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs21(xuu50001, xuu51001, app(ty_Maybe, dea)) -> new_ltEs11(xuu50001, xuu51001, dea) new_esEs29(xuu22, xuu17, app(app(ty_Either, cfg), cfh)) -> new_esEs6(xuu22, xuu17, cfg, cfh) new_ltEs12(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) new_lt20(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_lt5(xuu50000, xuu51000, ge, gf) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs7(xuu311000, xuu600, bca, bcb, bcc) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, dfb) -> new_esEs18(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_compare30(xuu50000, xuu51000, ty_Double) -> new_compare14(xuu50000, xuu51000) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, chh)) -> new_esEs16(xuu311000, xuu600, chh) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, dfb) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_primPlusNat0(Succ(xuu1300), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1300, xuu600000))) new_compare30(xuu50000, xuu51000, app(ty_Maybe, dfe)) -> new_compare25(xuu50000, xuu51000, dfe) new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_compare11(xuu50000, xuu51000, True, ge, gf) -> LT new_ltEs20(xuu5000, xuu5100, app(ty_[], dcb)) -> new_ltEs6(xuu5000, xuu5100, dcb) new_primCmpNat1(Zero, Succ(xuu51000)) -> LT new_esEs30(xuu311000, xuu600, app(app(ty_Either, dfa), dfb)) -> new_esEs6(xuu311000, xuu600, dfa, dfb) new_sr0(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare30(xuu50000, xuu51000, ty_Char) -> new_compare7(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs19(xuu39, xuu34) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dhb), dfb) -> new_esEs16(xuu3110000, xuu6000, dhb) new_compare10(xuu50000, xuu51000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_primPlusNat1(Zero, Zero) -> Zero new_compare26(xuu50000, xuu51000, False, ceb) -> new_compare112(xuu50000, xuu51000, new_ltEs11(xuu50000, xuu51000, ceb), ceb) new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, app(ty_Ratio, cdh)) -> new_ltEs16(xuu50002, xuu51002, cdh) new_ltEs14(LT, EQ) -> True new_lt20(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_lt15(xuu50000, xuu51000, bbg, bbh) new_lt12(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_lt5(xuu50001, xuu51001, cbf, cbg) new_ltEs15(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), caa, cab, cac) -> new_pePe(new_lt11(xuu50000, xuu51000, caa), new_asAs(new_esEs24(xuu50000, xuu51000, caa), new_pePe(new_lt12(xuu50001, xuu51001, cab), new_asAs(new_esEs23(xuu50001, xuu51001, cab), new_ltEs18(xuu50002, xuu51002, cac))))) new_esEs31(xuu311000, xuu600, app(ty_[], chd)) -> new_esEs11(xuu311000, xuu600, chd) new_compare27(xuu50000, xuu51000, False, cec, ced, cee) -> new_compare110(xuu50000, xuu51000, new_ltEs15(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare23(Right(xuu5000), Left(xuu5100), False, dae, daf) -> GT new_esEs27(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_esEs27(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_compare30(xuu50000, xuu51000, app(app(ty_@2, dfc), dfd)) -> new_compare8(xuu50000, xuu51000, dfc, dfd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Ratio, hh), gg) -> new_ltEs16(xuu50000, xuu51000, hh) new_compare6(@0, @0) -> EQ new_esEs29(xuu22, xuu17, app(ty_[], ceh)) -> new_esEs11(xuu22, xuu17, ceh) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_esEs28(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_esEs4(xuu50000, xuu51000, ge, gf) new_lt11(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dgg), dgh), dha), dfb) -> new_esEs7(xuu3110000, xuu6000, dgg, dgh, dha) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_compare29(xuu50000, xuu51000, cec, ced, cee) -> new_compare27(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Bool) -> new_ltEs4(xuu50002, xuu51002) new_ltEs11(Just(xuu50000), Nothing, bgd) -> False new_esEs28(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_esEs16(xuu50000, xuu51000, ddf) new_ltEs11(Nothing, Nothing, bgd) -> True new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs16(xuu50001, xuu51001, deg) new_esEs27(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare8(xuu50000, xuu51000, ge, gf) -> new_compare211(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, ge, gf), ge, gf) new_primCmpNat2(Succ(xuu5100), xuu5000) -> new_primCmpNat1(xuu5100, xuu5000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs12(xuu39, xuu34) new_esEs29(xuu22, xuu17, app(app(ty_@2, cfe), cff)) -> new_esEs4(xuu22, xuu17, cfe, cff) new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs19(xuu22, xuu17) new_esEs29(xuu22, xuu17, app(ty_Ratio, cfd)) -> new_esEs16(xuu22, xuu17, cfd) new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_esEs6(xuu50000, xuu51000, bbg, bbh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, ty_Integer) -> new_esEs15(xuu50001, xuu51001) new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs15(xuu50000, xuu51000, bah, bba, bbb) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs20(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_ltEs20(xuu5000, xuu5100, app(ty_Ratio, dca)) -> new_ltEs16(xuu5000, xuu5100, dca) new_esEs11([], [], dcc) -> True new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_esEs30(xuu311000, xuu600, app(ty_[], dcc)) -> new_esEs11(xuu311000, xuu600, dcc) new_asAs(False, xuu148) -> False new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) new_compare23(Right(xuu5000), Right(xuu5100), False, dae, daf) -> new_compare12(xuu5000, xuu5100, new_ltEs20(xuu5000, xuu5100, daf), dae, daf) new_ltEs14(LT, LT) -> True new_esEs20(xuu3110002, xuu6002, ty_Char) -> new_esEs12(xuu3110002, xuu6002) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Maybe, hb), gg) -> new_ltEs11(xuu50000, xuu51000, hb) new_ltEs21(xuu50001, xuu51001, ty_Char) -> new_ltEs5(xuu50001, xuu51001) new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_lt17(xuu50000, xuu51000, cec, ced, cee) new_lt10(xuu50000, xuu51000) -> new_esEs8(new_compare19(xuu50000, xuu51000), LT) new_esEs27(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_@2, gh), ha), gg) -> new_ltEs9(xuu50000, xuu51000, gh, ha) new_esEs23(xuu50001, xuu51001, ty_@0) -> new_esEs14(xuu50001, xuu51001) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(xuu50000, xuu51000, False, ceb) -> GT new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_compare12(xuu160, xuu161, True, bbe, bbf) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Float, gg) -> new_ltEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs21(xuu50001, xuu51001, app(ty_[], deh)) -> new_ltEs6(xuu50001, xuu51001, deh) The set Q consists of the following terms: new_esEs8(EQ, EQ) new_compare30(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_compare30(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_primCmpNat1(Zero, Zero) new_pePe(False, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_ltEs19(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11([], :(x0, x1), x2) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare25(x0, x1, x2) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Char(x0), Char(x1)) new_primCmpNat1(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_compare26(x0, x1, True, x2) new_esEs30(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(LT, LT) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, False, x2, x3, x4) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(@0, @0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt12(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare4(:(x0, x1), :(x2, x3), x4) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs12(x0, x1) new_compare10(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_lt9(x0, x1) new_compare9(x0, x1) new_lt19(x0, x1) new_primPlusNat1(Succ(x0), Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare4([], [], x0) new_lt13(x0, x1) new_esEs27(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt11(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Float) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare24(x0, x1, False) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare27(x0, x1, True, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_compare18(x0, x1, False, x2, x3) new_compare211(x0, x1, False, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_ltEs6(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, False, x2) new_ltEs21(x0, x1, ty_Double) new_compare28(x0, x1) new_esEs30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, x2, x3) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs14(LT, GT) new_esEs21(x0, x1, ty_Double) new_ltEs14(GT, LT) new_compare30(x0, x1, ty_Integer) new_ltEs4(True, True) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_lt17(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(:(x0, x1), [], x2) new_lt7(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_lt4(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(GT, GT) new_compare23(Left(x0), Right(x1), False, x2, x3) new_compare23(Right(x0), Left(x1), False, x2, x3) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare19(Integer(x0), Integer(x1)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare4([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Integer) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(False, True) new_esEs13(True, False) new_esEs27(x0, x1, ty_Ordering) new_compare211(x0, x1, True, x2, x3) new_lt11(x0, x1, ty_Bool) new_esEs8(LT, LT) new_ltEs8(x0, x1) 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_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt11(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Float) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare30(x0, x1, ty_Char) new_compare23(Left(x0), Left(x1), False, x2, x3) new_esEs24(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_sr(Integer(x0), Integer(x1)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_fsEs(x0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt11(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Char) new_primCmpNat0(x0, Zero) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs11(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, False) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Nothing, x1) new_lt11(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, True) new_sr0(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_esEs30(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs10(x0, x1, ty_Int) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare24(x0, x1, True) new_ltEs14(EQ, EQ) new_compare23(Right(x0), Right(x1), False, x2, x3) new_ltEs16(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs11(:(x0, x1), :(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs17(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt16(x0, x1) new_lt12(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(Integer(x0), Integer(x1)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat1(Zero, Succ(x0)) new_compare4(:(x0, x1), [], x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat2(Zero, x0) new_esEs29(x0, x1, ty_Double) new_lt5(x0, x1, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Nothing, Just(x0), x1) new_asAs(False, x0) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs18(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_not(True) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Char) new_lt6(x0, x1) new_compare12(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_compare10(x0, x1, True) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Double) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs9(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt18(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs25(x0, x1, ty_Integer) new_esEs13(True, True) new_esEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt12(x0, x1, ty_Bool) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpNat2(Succ(x0), x1) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(@0, @0) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs14(GT, GT) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_Ordering) new_lt12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Integer) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(False, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs19(Float(x0, x1), Float(x2, x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_compare210(x0, x1, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True, x2, x3) new_esEs11([], [], x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare30(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs13(False, False) new_compare12(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt8(x0, x1) new_lt15(x0, x1, x2, x3) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs13(x0, x1) new_lt12(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_lt11(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare110(x0, x1, True, x2, x3, x4) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs10(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_primMulNat0(Succ(x0), Zero) new_compare7(Char(x0), Char(x1)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt11(x0, x1, ty_Double) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (22) Complex Obligation (AND) ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare23(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) The TRS R consists of the following rules: new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_Either, hc), hd), gg) -> new_ltEs7(xuu50000, xuu51000, hc, hd) new_ltEs7(Right(xuu50000), Left(xuu51000), bab, gg) -> False new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_[], bbd)) -> new_ltEs6(xuu50000, xuu51000, bbd) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare28(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) new_lt11(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_lt5(xuu50000, xuu51000, cad, cae) new_lt14(xuu50000, xuu51000, ceb) -> new_esEs8(new_compare25(xuu50000, xuu51000, ceb), LT) new_pePe(True, xuu179) -> True new_primCmpNat0(xuu5000, Succ(xuu5100)) -> new_primCmpNat1(xuu5000, xuu5100) new_compare12(xuu160, xuu161, False, bbe, bbf) -> GT new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(xuu50002, xuu51002, cdc, cdd) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_ltEs18(xuu50002, xuu51002, ty_Ordering) -> new_ltEs14(xuu50002, xuu51002) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(xuu3110001, xuu6001, bdh, bea, beb) new_lt7(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare4(xuu50000, xuu51000, bgb), LT) new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_compare112(xuu50000, xuu51000, True, ceb) -> LT new_esEs23(xuu50001, xuu51001, ty_Int) -> new_esEs17(xuu50001, xuu51001) new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) new_esEs24(xuu50000, xuu51000, app(ty_[], cbe)) -> new_esEs11(xuu50000, xuu51000, cbe) new_esEs30(xuu311000, xuu600, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu311000, xuu600, ca, cb) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt20(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_lt18(xuu50000, xuu51000, ddf) new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_esEs24(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bgc)) -> new_ltEs16(xuu5000, xuu5100, bgc) new_esEs30(xuu311000, xuu600, app(ty_Ratio, cef)) -> new_esEs16(xuu311000, xuu600, cef) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_ltEs9(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), dag, dah) -> new_pePe(new_lt20(xuu50000, xuu51000, dag), new_asAs(new_esEs28(xuu50000, xuu51000, dag), new_ltEs21(xuu50001, xuu51001, dah))) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_[], baa), gg) -> new_ltEs6(xuu50000, xuu51000, baa) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Double, gg) -> new_ltEs8(xuu50000, xuu51000) new_compare4(:(xuu50000, xuu50001), :(xuu51000, xuu51001), gd) -> new_primCompAux0(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, gd), gd) new_ltEs10(xuu5000, xuu5100) -> new_fsEs(new_compare19(xuu5000, xuu5100)) new_compare30(xuu50000, xuu51000, ty_Int) -> new_compare28(xuu50000, xuu51000) new_ltEs4(False, True) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_@2, bac), bad)) -> new_ltEs9(xuu50000, xuu51000, bac, bad) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_compare30(xuu50000, xuu51000, app(app(ty_Either, dff), dfg)) -> new_compare13(xuu50000, xuu51000, dff, dfg) new_esEs24(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_esEs16(xuu50000, xuu51000, cbd) new_primCmpNat1(Succ(xuu50000), Succ(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primCompAux0(xuu50000, xuu51000, xuu189, gd) -> new_primCompAux00(xuu189, new_compare30(xuu50000, xuu51000, gd)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_lt12(xuu50001, xuu51001, ty_Float) -> new_lt9(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, he), hf), hg), gg) -> new_ltEs15(xuu50000, xuu51000, he, hf, hg) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs8(GT, GT) -> True new_fsEs(xuu163) -> new_not(new_esEs8(xuu163, GT)) new_compare9(xuu50000, xuu51000) -> new_compare210(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, che), chf), chg)) -> new_esEs7(xuu311000, xuu600, che, chf, chg) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], dgf), dfb) -> new_esEs11(xuu3110000, xuu6000, dgf) new_ltEs19(xuu5000, xuu5100, app(ty_[], gd)) -> new_ltEs6(xuu5000, xuu5100, gd) new_esEs24(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_esEs4(xuu50000, xuu51000, cad, cae) new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu50002, xuu51002, ty_Int) -> new_ltEs17(xuu50002, xuu51002) new_esEs28(xuu50000, xuu51000, app(ty_[], bgb)) -> new_esEs11(xuu50000, xuu51000, bgb) new_esEs8(EQ, EQ) -> True new_esEs24(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Float) -> new_esEs19(xuu50001, xuu51001) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_not(True) -> False new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs7(xuu3110001, xuu6001, ce, cf, cg) new_ltEs20(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCompAux00(xuu203, LT) -> LT new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_lt17(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(xuu50000, xuu51000, bhb, bhc, bhd) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_compare25(xuu50000, xuu51000, ceb) -> new_compare26(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, ceb), ceb) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(ty_[], bce)) -> new_esEs11(xuu3110002, xuu6002, bce) new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs15(xuu39, xuu34) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, ec)) -> new_esEs16(xuu3110000, xuu6000, ec) new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, ty_Ordering) -> new_compare15(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs7(xuu3110000, xuu6000, dh, ea, eb) new_lt11(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(ty_Either, dbd), dbe)) -> new_ltEs7(xuu5000, xuu5100, dbd, dbe) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs14(@0, @0) -> True new_ltEs18(xuu50002, xuu51002, ty_Float) -> new_ltEs13(xuu50002, xuu51002) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Bool, gg) -> new_ltEs4(xuu50000, xuu51000) new_lt11(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(Left(xuu5000), Right(xuu5100), False, dae, daf) -> LT new_lt12(xuu50001, xuu51001, ty_Integer) -> new_lt10(xuu50001, xuu51001) new_primCompAux00(xuu203, GT) -> GT new_esEs24(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_ltEs14(EQ, EQ) -> True new_primCmpNat2(Zero, xuu5000) -> LT new_esEs20(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_esEs10(xuu3110000, xuu6000, app(ty_[], dg)) -> new_esEs11(xuu3110000, xuu6000, dg) new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs14(xuu39, xuu34) new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs18(xuu22, xuu17) new_ltEs18(xuu50002, xuu51002, ty_Char) -> new_ltEs5(xuu50002, xuu51002) new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT new_esEs20(xuu3110002, xuu6002, app(ty_Ratio, bda)) -> new_esEs16(xuu3110002, xuu6002, bda) new_esEs20(xuu3110002, xuu6002, app(app(ty_@2, bdb), bdc)) -> new_esEs4(xuu3110002, xuu6002, bdb, bdc) new_ltEs14(EQ, LT) -> False new_lt5(xuu50000, xuu51000, ge, gf) -> new_esEs8(new_compare8(xuu50000, xuu51000, ge, gf), LT) new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_lt11(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Integer) -> new_ltEs10(xuu50002, xuu51002) new_primPlusNat1(Succ(xuu53200), Succ(xuu12100)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu12100))) new_lt12(xuu50001, xuu51001, app(ty_[], ccg)) -> new_lt7(xuu50001, xuu51001, ccg) new_ltEs21(xuu50001, xuu51001, ty_@0) -> new_ltEs12(xuu50001, xuu51001) new_lt11(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt17(xuu50000, xuu51000, cba, cbb, cbc) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Maybe, dhg)) -> new_esEs5(xuu3110000, xuu6000, dhg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bca, bcb, bcc) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bca), new_asAs(new_esEs21(xuu3110001, xuu6001, bcb), new_esEs20(xuu3110002, xuu6002, bcc))) new_compare210(xuu50000, xuu51000, True) -> EQ new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs7(xuu39, xuu34, cgc, cgd, cge) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Ratio, bhe)) -> new_ltEs16(xuu50000, xuu51000, bhe) new_sr(Integer(xuu510000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu510000, xuu500010)) new_compare110(xuu50000, xuu51000, False, cec, ced, cee) -> GT new_lt9(xuu50000, xuu51000) -> new_esEs8(new_compare17(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_pePe(False, xuu179) -> xuu179 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, bab), gg)) -> new_ltEs7(xuu5000, xuu5100, bab, gg) new_esEs27(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, app(ty_[], dgd)) -> new_compare4(xuu50000, xuu51000, dgd) new_esEs23(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare17(xuu5000, xuu5100)) new_lt11(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_lt18(xuu50000, xuu51000, cbd) new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, cc)) -> new_esEs5(xuu3110001, xuu6001, cc) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dge), dfb) -> new_esEs5(xuu3110000, xuu6000, dge) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bfh), bga)) -> new_esEs6(xuu3110000, xuu6000, bfh, bga) new_esEs11(:(xuu3110000, xuu3110001), [], dcc) -> False new_esEs11([], :(xuu6000, xuu6001), dcc) -> False new_ltEs18(xuu50002, xuu51002, ty_Double) -> new_ltEs8(xuu50002, xuu51002) new_lt11(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_lt14(xuu50000, xuu51000, caf) new_esEs23(xuu50001, xuu51001, ty_Double) -> new_esEs18(xuu50001, xuu51001) new_lt12(xuu50001, xuu51001, ty_Int) -> new_lt19(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bec)) -> new_esEs16(xuu3110001, xuu6001, bec) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, dfb) -> new_esEs8(xuu3110000, xuu6000) new_compare23(xuu500, xuu510, True, dae, daf) -> EQ new_lt15(xuu50000, xuu51000, bbg, bbh) -> new_esEs8(new_compare13(xuu50000, xuu51000, bbg, bbh), LT) new_ltEs8(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu50000, xuu51000, False, ge, gf) -> GT new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bed), bee)) -> new_esEs4(xuu3110001, xuu6001, bed, bee) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_lt11(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_lt15(xuu50001, xuu51001, cca, ccb) new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, dfb) -> new_esEs13(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, app(ty_[], ccg)) -> new_esEs11(xuu50001, xuu51001, ccg) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, app(ty_Ratio, dgc)) -> new_compare16(xuu50000, xuu51000, dgc) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Int, gg) -> new_ltEs17(xuu50000, xuu51000) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bdf)) -> new_esEs5(xuu3110001, xuu6001, bdf) new_lt12(xuu50001, xuu51001, ty_Bool) -> new_lt6(xuu50001, xuu51001) new_ltEs14(EQ, GT) -> True new_esEs5(Nothing, Nothing, eh) -> True new_ltEs14(GT, EQ) -> False new_ltEs20(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Float) -> new_ltEs13(xuu50001, xuu51001) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Ratio, ead)) -> new_esEs16(xuu3110000, xuu6000, ead) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, da)) -> new_esEs16(xuu3110001, xuu6001, da) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), eh) -> False new_esEs5(Just(xuu3110000), Nothing, eh) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, gb), gc)) -> new_esEs6(xuu3110000, xuu6000, gb, gc) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_Either, baf), bag)) -> new_ltEs7(xuu50000, xuu51000, baf, bag) new_ltEs14(LT, GT) -> True new_esEs24(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_esEs6(xuu50000, xuu51000, cag, cah) new_ltEs14(GT, GT) -> True new_compare18(xuu153, xuu154, False, bhg, bhh) -> GT new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, db), dc)) -> new_esEs4(xuu3110001, xuu6001, db, dc) new_ltEs21(xuu50001, xuu51001, app(app(app(ty_@3, ded), dee), def)) -> new_ltEs15(xuu50001, xuu51001, ded, dee, def) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dhe), dhf), dfb) -> new_esEs6(xuu3110000, xuu6000, dhe, dhf) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs7(xuu3110000, xuu6000, fc, fd, ff) new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs7(xuu3110000, xuu6000, bfb, bfc, bfd) new_esEs32(xuu39, xuu34, app(ty_Maybe, cga)) -> new_esEs5(xuu39, xuu34, cga) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs4(xuu3110000, xuu6000, ed, ee) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, ef), eg)) -> new_esEs6(xuu3110000, xuu6000, ef, eg) new_lt11(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Ordering, gg) -> new_ltEs14(xuu50000, xuu51000) new_compare13(xuu50000, xuu51000, bbg, bbh) -> new_compare23(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bbg, bbh), bbg, bbh) new_lt18(xuu50000, xuu51000, ddf) -> new_esEs8(new_compare16(xuu50000, xuu51000, ddf), LT) new_esEs24(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_compare26(xuu50000, xuu51000, True, ceb) -> EQ new_esEs23(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_esEs5(xuu50001, xuu51001, cbh) new_esEs24(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare27(xuu50000, xuu51000, True, cec, ced, cee) -> EQ new_compare30(xuu50000, xuu51000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_compare29(xuu50000, xuu51000, dfh, dga, dgb) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Ratio, bbc)) -> new_ltEs16(xuu50000, xuu51000, bbc) new_compare18(xuu153, xuu154, True, bhg, bhh) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(xuu3110000, xuu6000, eaa, eab, eac) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(LT, LT) -> True new_lt12(xuu50001, xuu51001, ty_Char) -> new_lt16(xuu50001, xuu51001) new_compare19(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_compare111(xuu50000, xuu51000, True) -> LT new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, dfb) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Integer, gg) -> new_ltEs10(xuu50000, xuu51000) new_esEs24(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu50000, xuu51000, cba, cbb, cbc) new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) new_primPlusNat1(Zero, Succ(xuu12100)) -> Succ(xuu12100) new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs18(xuu39, xuu34) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ca, cb) -> new_asAs(new_esEs10(xuu3110000, xuu6000, ca), new_esEs9(xuu3110001, xuu6001, cb)) new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(xuu50002, xuu51002, cde, cdf, cdg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_[], dhh)) -> new_esEs11(xuu3110000, xuu6000, dhh) new_esEs13(True, True) -> True new_esEs11(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs27(xuu3110000, xuu6000, dcc), new_esEs11(xuu3110001, xuu6001, dcc)) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Maybe, bgg)) -> new_ltEs11(xuu50000, xuu51000, bgg) new_lt11(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs15(xuu5000, xuu5100, dbf, dbg, dbh) new_esEs23(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Maybe, bae)) -> new_ltEs11(xuu50000, xuu51000, bae) new_lt12(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_lt14(xuu50001, xuu51001, cbh) new_ltEs18(xuu50002, xuu51002, ty_@0) -> new_ltEs12(xuu50002, xuu51002) new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs14(xuu22, xuu17) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs24(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, df)) -> new_esEs5(xuu3110000, xuu6000, df) new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, beh)) -> new_esEs5(xuu3110000, xuu6000, beh) new_ltEs5(xuu5000, xuu5100) -> new_fsEs(new_compare7(xuu5000, xuu5100)) new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare9(xuu50000, xuu51000), LT) new_esEs23(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_esEs16(xuu50001, xuu51001, ccf) new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs15(xuu5000, xuu5100, caa, cab, cac) new_compare4([], :(xuu51000, xuu51001), gd) -> LT new_lt12(xuu50001, xuu51001, ty_Double) -> new_lt13(xuu50001, xuu51001) new_compare28(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_lt19(xuu500, xuu510) -> new_esEs8(new_compare28(xuu500, xuu510), LT) new_esEs23(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs6(xuu5000, xuu5100, gd) -> new_fsEs(new_compare4(xuu5000, xuu5100, gd)) new_esEs23(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_esEs6(xuu50001, xuu51001, cca, ccb) new_esEs23(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50001, xuu51001, cbf, cbg) new_ltEs21(xuu50001, xuu51001, app(app(ty_@2, ddg), ddh)) -> new_ltEs9(xuu50001, xuu51001, ddg, ddh) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_[], bhf)) -> new_ltEs6(xuu50000, xuu51000, bhf) new_ltEs14(GT, LT) -> False new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bef), beg)) -> new_esEs6(xuu3110001, xuu6001, bef, beg) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bfe)) -> new_esEs16(xuu3110000, xuu6000, bfe) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_ltEs7(Left(xuu50000), Right(xuu51000), bab, gg) -> True new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, dfb) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], fb)) -> new_esEs11(xuu3110000, xuu6000, fb) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_esEs12(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_lt18(xuu50001, xuu51001, ccf) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dhc), dhd), dfb) -> new_esEs4(xuu3110000, xuu6000, dhc, dhd) new_esEs20(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare211(xuu50000, xuu51000, False, ge, gf) -> new_compare11(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000, ge, gf), ge, gf) new_esEs32(xuu39, xuu34, app(ty_[], cgb)) -> new_esEs11(xuu39, xuu34, cgb) new_compare23(Left(xuu5000), Left(xuu5100), False, dae, daf) -> new_compare18(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, dae), dae, daf) new_ltEs20(xuu5000, xuu5100, app(ty_Maybe, dbc)) -> new_ltEs11(xuu5000, xuu5100, dbc) new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(xuu5000, xuu510) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bff), bfg)) -> new_esEs4(xuu3110000, xuu6000, bff, bfg) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_Either, eag), eah)) -> new_esEs6(xuu3110000, xuu6000, eag, eah) new_primCmpNat1(Succ(xuu50000), Zero) -> GT new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_lt15(xuu50000, xuu51000, cag, cah) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs29(xuu22, xuu17, app(ty_Maybe, ceg)) -> new_esEs5(xuu22, xuu17, ceg) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Char, gg) -> new_ltEs5(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_Either, bgh), bha)) -> new_ltEs7(xuu50000, xuu51000, bgh, bha) new_esEs13(False, False) -> True new_lt20(xuu50000, xuu51000, app(ty_[], bgb)) -> new_lt7(xuu50000, xuu51000, bgb) new_primCmpNat0(xuu5000, Zero) -> GT new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, dfb) -> new_esEs19(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(xuu50000, xuu51000, cec, ced, cee) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_compare30(xuu50000, xuu51000, ty_@0) -> new_compare6(xuu50000, xuu51000) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_asAs(True, xuu148) -> xuu148 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare19(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, dd), de)) -> new_esEs6(xuu3110001, xuu6001, dd, de) new_esEs24(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(ty_@2, dba), dbb)) -> new_ltEs9(xuu5000, xuu5100, dba, dbb) new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Right(xuu6000), dfa, dfb) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), dfa, dfb) -> False new_esEs22(xuu3110000, xuu6000, app(ty_[], bfa)) -> new_esEs11(xuu3110000, xuu6000, bfa) new_esEs20(xuu3110002, xuu6002, app(ty_Maybe, bcd)) -> new_esEs5(xuu3110002, xuu6002, bcd) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, fh), ga)) -> new_esEs4(xuu3110000, xuu6000, fh, ga) new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs24(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, dag), dah)) -> new_ltEs9(xuu5000, xuu5100, dag, dah) new_ltEs21(xuu50001, xuu51001, ty_Bool) -> new_ltEs4(xuu50001, xuu51001) new_lt16(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, ty_Int) -> new_ltEs17(xuu50001, xuu51001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, fg)) -> new_esEs16(xuu3110000, xuu6000, fg) new_primCompAux00(xuu203, EQ) -> xuu203 new_ltEs21(xuu50001, xuu51001, ty_Double) -> new_ltEs8(xuu50001, xuu51001) new_ltEs21(xuu50001, xuu51001, app(app(ty_Either, deb), dec)) -> new_ltEs7(xuu50001, xuu51001, deb, dec) new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare4(:(xuu50000, xuu50001), [], gd) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(Left(xuu50000), Left(xuu51000), ty_@0, gg) -> new_ltEs12(xuu50000, xuu51000) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat2(xuu510, xuu5000) new_esEs27(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_compare10(xuu50000, xuu51000, False) -> GT new_esEs27(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_esEs23(xuu50001, xuu51001, ty_Char) -> new_esEs12(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_esEs5(xuu50000, xuu51000, caf) new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs17(xuu22, xuu17) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_esEs30(xuu311000, xuu600, app(ty_Maybe, eh)) -> new_esEs5(xuu311000, xuu600, eh) new_esEs9(xuu3110001, xuu6001, app(ty_[], cd)) -> new_esEs11(xuu3110001, xuu6001, cd) new_primCmpNat1(Zero, Zero) -> EQ new_compare111(xuu50000, xuu51000, False) -> GT new_ltEs18(xuu50002, xuu51002, app(ty_Maybe, cdb)) -> new_ltEs11(xuu50002, xuu51002, cdb) new_esEs32(xuu39, xuu34, app(app(ty_Either, cha), chb)) -> new_esEs6(xuu39, xuu34, cha, chb) new_ltEs16(xuu5000, xuu5100, bgc) -> new_fsEs(new_compare16(xuu5000, xuu5100, bgc)) new_ltEs11(Nothing, Just(xuu51000), bgd) -> True new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_ltEs21(xuu50001, xuu51001, ty_Ordering) -> new_ltEs14(xuu50001, xuu51001) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(ty_Maybe, chc)) -> new_esEs5(xuu311000, xuu600, chc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(app(ty_Either, dac), dad)) -> new_esEs6(xuu311000, xuu600, dac, dad) new_compare210(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs4(xuu50000, xuu51000)) new_lt12(xuu50001, xuu51001, ty_Ordering) -> new_lt8(xuu50001, xuu51001) new_compare24(xuu50000, xuu51000, False) -> new_compare10(xuu50000, xuu51000, new_ltEs14(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bgd)) -> new_ltEs11(xuu5000, xuu5100, bgd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, dfb) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) new_lt12(xuu50001, xuu51001, ty_@0) -> new_lt4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs11(xuu3110000, xuu6000, dce) new_compare30(xuu50000, xuu51000, ty_Float) -> new_compare17(xuu50000, xuu51000) new_lt20(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_lt14(xuu50000, xuu51000, ceb) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare15(xuu50000, xuu51000), LT) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs4(True, False) -> False new_ltEs17(xuu5000, xuu5100) -> new_fsEs(new_compare28(xuu5000, xuu5100)) new_esEs32(xuu39, xuu34, app(app(ty_@2, cgg), cgh)) -> new_esEs4(xuu39, xuu34, cgg, cgh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_@2, eae), eaf)) -> new_esEs4(xuu3110000, xuu6000, eae, eaf) new_ltEs18(xuu50002, xuu51002, app(ty_[], cea)) -> new_ltEs6(xuu50002, xuu51002, cea) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs18(xuu50002, xuu51002, app(app(ty_@2, cch), cda)) -> new_ltEs9(xuu50002, xuu51002, cch, cda) new_compare24(xuu50000, xuu51000, True) -> EQ new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, app(app(ty_Either, bdd), bde)) -> new_esEs6(xuu3110002, xuu6002, bdd, bde) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, app(ty_Ratio, cgf)) -> new_esEs16(xuu39, xuu34, cgf) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_compare4([], [], gd) -> EQ new_lt4(xuu50000, xuu51000) -> new_esEs8(new_compare6(xuu50000, xuu51000), LT) new_compare211(xuu50000, xuu51000, True, ge, gf) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu3110001, xuu6001, app(ty_[], bdg)) -> new_esEs11(xuu3110001, xuu6001, bdg) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_@2, bge), bgf)) -> new_ltEs9(xuu50000, xuu51000, bge, bgf) new_lt11(xuu50000, xuu51000, app(ty_[], cbe)) -> new_lt7(xuu50000, xuu51000, cbe) new_ltEs4(False, False) -> True new_esEs28(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_esEs5(xuu50000, xuu51000, ceb) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cef) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cef), new_esEs25(xuu3110001, xuu6001, cef)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat2(Zero, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare110(xuu50000, xuu51000, True, cec, ced, cee) -> LT new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_ltEs21(xuu50001, xuu51001, ty_Integer) -> new_ltEs10(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_lt17(xuu50000, xuu51000, cec, ced, cee) -> new_esEs8(new_compare29(xuu50000, xuu51000, cec, ced, cee), LT) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, ty_Integer) -> new_compare19(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu22, xuu17, cfa, cfb, cfc) new_esEs31(xuu311000, xuu600, app(app(ty_@2, daa), dab)) -> new_esEs4(xuu311000, xuu600, daa, dab) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs17(xuu39, xuu34) new_compare15(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_not(False) -> True new_ltEs20(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs7(xuu3110002, xuu6002, bcf, bcg, bch) new_compare7(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_compare30(xuu50000, xuu51000, ty_Bool) -> new_compare9(xuu50000, xuu51000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs21(xuu50001, xuu51001, app(ty_Maybe, dea)) -> new_ltEs11(xuu50001, xuu51001, dea) new_esEs29(xuu22, xuu17, app(app(ty_Either, cfg), cfh)) -> new_esEs6(xuu22, xuu17, cfg, cfh) new_ltEs12(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) new_lt20(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_lt5(xuu50000, xuu51000, ge, gf) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs7(xuu311000, xuu600, bca, bcb, bcc) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, dfb) -> new_esEs18(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_compare30(xuu50000, xuu51000, ty_Double) -> new_compare14(xuu50000, xuu51000) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, chh)) -> new_esEs16(xuu311000, xuu600, chh) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, dfb) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_primPlusNat0(Succ(xuu1300), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1300, xuu600000))) new_compare30(xuu50000, xuu51000, app(ty_Maybe, dfe)) -> new_compare25(xuu50000, xuu51000, dfe) new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_compare11(xuu50000, xuu51000, True, ge, gf) -> LT new_ltEs20(xuu5000, xuu5100, app(ty_[], dcb)) -> new_ltEs6(xuu5000, xuu5100, dcb) new_primCmpNat1(Zero, Succ(xuu51000)) -> LT new_esEs30(xuu311000, xuu600, app(app(ty_Either, dfa), dfb)) -> new_esEs6(xuu311000, xuu600, dfa, dfb) new_sr0(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare30(xuu50000, xuu51000, ty_Char) -> new_compare7(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs19(xuu39, xuu34) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dhb), dfb) -> new_esEs16(xuu3110000, xuu6000, dhb) new_compare10(xuu50000, xuu51000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_primPlusNat1(Zero, Zero) -> Zero new_compare26(xuu50000, xuu51000, False, ceb) -> new_compare112(xuu50000, xuu51000, new_ltEs11(xuu50000, xuu51000, ceb), ceb) new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, app(ty_Ratio, cdh)) -> new_ltEs16(xuu50002, xuu51002, cdh) new_ltEs14(LT, EQ) -> True new_lt20(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_lt15(xuu50000, xuu51000, bbg, bbh) new_lt12(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_lt5(xuu50001, xuu51001, cbf, cbg) new_ltEs15(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), caa, cab, cac) -> new_pePe(new_lt11(xuu50000, xuu51000, caa), new_asAs(new_esEs24(xuu50000, xuu51000, caa), new_pePe(new_lt12(xuu50001, xuu51001, cab), new_asAs(new_esEs23(xuu50001, xuu51001, cab), new_ltEs18(xuu50002, xuu51002, cac))))) new_esEs31(xuu311000, xuu600, app(ty_[], chd)) -> new_esEs11(xuu311000, xuu600, chd) new_compare27(xuu50000, xuu51000, False, cec, ced, cee) -> new_compare110(xuu50000, xuu51000, new_ltEs15(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare23(Right(xuu5000), Left(xuu5100), False, dae, daf) -> GT new_esEs27(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_esEs27(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_compare30(xuu50000, xuu51000, app(app(ty_@2, dfc), dfd)) -> new_compare8(xuu50000, xuu51000, dfc, dfd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Ratio, hh), gg) -> new_ltEs16(xuu50000, xuu51000, hh) new_compare6(@0, @0) -> EQ new_esEs29(xuu22, xuu17, app(ty_[], ceh)) -> new_esEs11(xuu22, xuu17, ceh) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_esEs28(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_esEs4(xuu50000, xuu51000, ge, gf) new_lt11(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dgg), dgh), dha), dfb) -> new_esEs7(xuu3110000, xuu6000, dgg, dgh, dha) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_compare29(xuu50000, xuu51000, cec, ced, cee) -> new_compare27(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Bool) -> new_ltEs4(xuu50002, xuu51002) new_ltEs11(Just(xuu50000), Nothing, bgd) -> False new_esEs28(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_esEs16(xuu50000, xuu51000, ddf) new_ltEs11(Nothing, Nothing, bgd) -> True new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs16(xuu50001, xuu51001, deg) new_esEs27(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare8(xuu50000, xuu51000, ge, gf) -> new_compare211(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, ge, gf), ge, gf) new_primCmpNat2(Succ(xuu5100), xuu5000) -> new_primCmpNat1(xuu5100, xuu5000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs12(xuu39, xuu34) new_esEs29(xuu22, xuu17, app(app(ty_@2, cfe), cff)) -> new_esEs4(xuu22, xuu17, cfe, cff) new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs19(xuu22, xuu17) new_esEs29(xuu22, xuu17, app(ty_Ratio, cfd)) -> new_esEs16(xuu22, xuu17, cfd) new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_esEs6(xuu50000, xuu51000, bbg, bbh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, ty_Integer) -> new_esEs15(xuu50001, xuu51001) new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs15(xuu50000, xuu51000, bah, bba, bbb) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs20(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_ltEs20(xuu5000, xuu5100, app(ty_Ratio, dca)) -> new_ltEs16(xuu5000, xuu5100, dca) new_esEs11([], [], dcc) -> True new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_esEs30(xuu311000, xuu600, app(ty_[], dcc)) -> new_esEs11(xuu311000, xuu600, dcc) new_asAs(False, xuu148) -> False new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) new_compare23(Right(xuu5000), Right(xuu5100), False, dae, daf) -> new_compare12(xuu5000, xuu5100, new_ltEs20(xuu5000, xuu5100, daf), dae, daf) new_ltEs14(LT, LT) -> True new_esEs20(xuu3110002, xuu6002, ty_Char) -> new_esEs12(xuu3110002, xuu6002) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Maybe, hb), gg) -> new_ltEs11(xuu50000, xuu51000, hb) new_ltEs21(xuu50001, xuu51001, ty_Char) -> new_ltEs5(xuu50001, xuu51001) new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_lt17(xuu50000, xuu51000, cec, ced, cee) new_lt10(xuu50000, xuu51000) -> new_esEs8(new_compare19(xuu50000, xuu51000), LT) new_esEs27(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_@2, gh), ha), gg) -> new_ltEs9(xuu50000, xuu51000, gh, ha) new_esEs23(xuu50001, xuu51001, ty_@0) -> new_esEs14(xuu50001, xuu51001) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(xuu50000, xuu51000, False, ceb) -> GT new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_compare12(xuu160, xuu161, True, bbe, bbf) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Float, gg) -> new_ltEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs21(xuu50001, xuu51001, app(ty_[], deh)) -> new_ltEs6(xuu50001, xuu51001, deh) The set Q consists of the following terms: new_esEs8(EQ, EQ) new_compare30(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_compare30(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_primCmpNat1(Zero, Zero) new_pePe(False, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_ltEs19(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11([], :(x0, x1), x2) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare25(x0, x1, x2) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Char(x0), Char(x1)) new_primCmpNat1(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_compare26(x0, x1, True, x2) new_esEs30(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(LT, LT) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, False, x2, x3, x4) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(@0, @0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt12(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare4(:(x0, x1), :(x2, x3), x4) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs12(x0, x1) new_compare10(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_lt9(x0, x1) new_compare9(x0, x1) new_lt19(x0, x1) new_primPlusNat1(Succ(x0), Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare4([], [], x0) new_lt13(x0, x1) new_esEs27(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt11(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Float) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare24(x0, x1, False) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare27(x0, x1, True, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_compare18(x0, x1, False, x2, x3) new_compare211(x0, x1, False, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_ltEs6(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, False, x2) new_ltEs21(x0, x1, ty_Double) new_compare28(x0, x1) new_esEs30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, x2, x3) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs14(LT, GT) new_esEs21(x0, x1, ty_Double) new_ltEs14(GT, LT) new_compare30(x0, x1, ty_Integer) new_ltEs4(True, True) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_lt17(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(:(x0, x1), [], x2) new_lt7(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_lt4(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(GT, GT) new_compare23(Left(x0), Right(x1), False, x2, x3) new_compare23(Right(x0), Left(x1), False, x2, x3) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare19(Integer(x0), Integer(x1)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare4([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Integer) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(False, True) new_esEs13(True, False) new_esEs27(x0, x1, ty_Ordering) new_compare211(x0, x1, True, x2, x3) new_lt11(x0, x1, ty_Bool) new_esEs8(LT, LT) new_ltEs8(x0, x1) 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_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt11(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Float) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare30(x0, x1, ty_Char) new_compare23(Left(x0), Left(x1), False, x2, x3) new_esEs24(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_sr(Integer(x0), Integer(x1)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_fsEs(x0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt11(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Char) new_primCmpNat0(x0, Zero) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs11(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, False) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Nothing, x1) new_lt11(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, True) new_sr0(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_esEs30(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs10(x0, x1, ty_Int) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare24(x0, x1, True) new_ltEs14(EQ, EQ) new_compare23(Right(x0), Right(x1), False, x2, x3) new_ltEs16(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs11(:(x0, x1), :(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs17(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt16(x0, x1) new_lt12(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(Integer(x0), Integer(x1)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat1(Zero, Succ(x0)) new_compare4(:(x0, x1), [], x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat2(Zero, x0) new_esEs29(x0, x1, ty_Double) new_lt5(x0, x1, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Nothing, Just(x0), x1) new_asAs(False, x0) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs18(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_not(True) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Char) new_lt6(x0, x1) new_compare12(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_compare10(x0, x1, True) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Double) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs9(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt18(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs25(x0, x1, ty_Integer) new_esEs13(True, True) new_esEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt12(x0, x1, ty_Bool) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpNat2(Succ(x0), x1) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(@0, @0) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs14(GT, GT) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_Ordering) new_lt12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Integer) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(False, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs19(Float(x0, x1), Float(x2, x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_compare210(x0, x1, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True, x2, x3) new_esEs11([], [], x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare30(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs13(False, False) new_compare12(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt8(x0, x1) new_lt15(x0, x1, x2, x3) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs13(x0, x1) new_lt12(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_lt11(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare110(x0, x1, True, x2, x3, x4) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs10(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_primMulNat0(Succ(x0), Zero) new_compare7(Char(x0), Char(x1)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt11(x0, x1, ty_Double) 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_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare23(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_Either, hc), hd), gg) -> new_ltEs7(xuu50000, xuu51000, hc, hd) new_ltEs7(Right(xuu50000), Left(xuu51000), bab, gg) -> False new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_[], bbd)) -> new_ltEs6(xuu50000, xuu51000, bbd) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare28(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) new_lt11(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_lt5(xuu50000, xuu51000, cad, cae) new_lt14(xuu50000, xuu51000, ceb) -> new_esEs8(new_compare25(xuu50000, xuu51000, ceb), LT) new_pePe(True, xuu179) -> True new_primCmpNat0(xuu5000, Succ(xuu5100)) -> new_primCmpNat1(xuu5000, xuu5100) new_compare12(xuu160, xuu161, False, bbe, bbf) -> GT new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(xuu50002, xuu51002, cdc, cdd) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_ltEs18(xuu50002, xuu51002, ty_Ordering) -> new_ltEs14(xuu50002, xuu51002) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(xuu3110001, xuu6001, bdh, bea, beb) new_lt7(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare4(xuu50000, xuu51000, bgb), LT) new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_compare112(xuu50000, xuu51000, True, ceb) -> LT new_esEs23(xuu50001, xuu51001, ty_Int) -> new_esEs17(xuu50001, xuu51001) new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) new_esEs24(xuu50000, xuu51000, app(ty_[], cbe)) -> new_esEs11(xuu50000, xuu51000, cbe) new_esEs30(xuu311000, xuu600, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu311000, xuu600, ca, cb) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt20(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_lt18(xuu50000, xuu51000, ddf) new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_esEs24(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bgc)) -> new_ltEs16(xuu5000, xuu5100, bgc) new_esEs30(xuu311000, xuu600, app(ty_Ratio, cef)) -> new_esEs16(xuu311000, xuu600, cef) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_ltEs9(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), dag, dah) -> new_pePe(new_lt20(xuu50000, xuu51000, dag), new_asAs(new_esEs28(xuu50000, xuu51000, dag), new_ltEs21(xuu50001, xuu51001, dah))) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_[], baa), gg) -> new_ltEs6(xuu50000, xuu51000, baa) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Double, gg) -> new_ltEs8(xuu50000, xuu51000) new_compare4(:(xuu50000, xuu50001), :(xuu51000, xuu51001), gd) -> new_primCompAux0(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, gd), gd) new_ltEs10(xuu5000, xuu5100) -> new_fsEs(new_compare19(xuu5000, xuu5100)) new_compare30(xuu50000, xuu51000, ty_Int) -> new_compare28(xuu50000, xuu51000) new_ltEs4(False, True) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_@2, bac), bad)) -> new_ltEs9(xuu50000, xuu51000, bac, bad) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_compare30(xuu50000, xuu51000, app(app(ty_Either, dff), dfg)) -> new_compare13(xuu50000, xuu51000, dff, dfg) new_esEs24(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_esEs16(xuu50000, xuu51000, cbd) new_primCmpNat1(Succ(xuu50000), Succ(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primCompAux0(xuu50000, xuu51000, xuu189, gd) -> new_primCompAux00(xuu189, new_compare30(xuu50000, xuu51000, gd)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_lt12(xuu50001, xuu51001, ty_Float) -> new_lt9(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, he), hf), hg), gg) -> new_ltEs15(xuu50000, xuu51000, he, hf, hg) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs8(GT, GT) -> True new_fsEs(xuu163) -> new_not(new_esEs8(xuu163, GT)) new_compare9(xuu50000, xuu51000) -> new_compare210(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, che), chf), chg)) -> new_esEs7(xuu311000, xuu600, che, chf, chg) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], dgf), dfb) -> new_esEs11(xuu3110000, xuu6000, dgf) new_ltEs19(xuu5000, xuu5100, app(ty_[], gd)) -> new_ltEs6(xuu5000, xuu5100, gd) new_esEs24(xuu50000, xuu51000, app(app(ty_@2, cad), cae)) -> new_esEs4(xuu50000, xuu51000, cad, cae) new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu50002, xuu51002, ty_Int) -> new_ltEs17(xuu50002, xuu51002) new_esEs28(xuu50000, xuu51000, app(ty_[], bgb)) -> new_esEs11(xuu50000, xuu51000, bgb) new_esEs8(EQ, EQ) -> True new_esEs24(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Float) -> new_esEs19(xuu50001, xuu51001) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_not(True) -> False new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs7(xuu3110001, xuu6001, ce, cf, cg) new_ltEs20(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCompAux00(xuu203, LT) -> LT new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_lt17(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(xuu50000, xuu51000, bhb, bhc, bhd) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_compare25(xuu50000, xuu51000, ceb) -> new_compare26(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, ceb), ceb) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(ty_[], bce)) -> new_esEs11(xuu3110002, xuu6002, bce) new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs15(xuu39, xuu34) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, ec)) -> new_esEs16(xuu3110000, xuu6000, ec) new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, ty_Ordering) -> new_compare15(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs7(xuu3110000, xuu6000, dh, ea, eb) new_lt11(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(ty_Either, dbd), dbe)) -> new_ltEs7(xuu5000, xuu5100, dbd, dbe) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs14(@0, @0) -> True new_ltEs18(xuu50002, xuu51002, ty_Float) -> new_ltEs13(xuu50002, xuu51002) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Bool, gg) -> new_ltEs4(xuu50000, xuu51000) new_lt11(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(Left(xuu5000), Right(xuu5100), False, dae, daf) -> LT new_lt12(xuu50001, xuu51001, ty_Integer) -> new_lt10(xuu50001, xuu51001) new_primCompAux00(xuu203, GT) -> GT new_esEs24(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_ltEs14(EQ, EQ) -> True new_primCmpNat2(Zero, xuu5000) -> LT new_esEs20(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_esEs10(xuu3110000, xuu6000, app(ty_[], dg)) -> new_esEs11(xuu3110000, xuu6000, dg) new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs14(xuu39, xuu34) new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs18(xuu22, xuu17) new_ltEs18(xuu50002, xuu51002, ty_Char) -> new_ltEs5(xuu50002, xuu51002) new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT new_esEs20(xuu3110002, xuu6002, app(ty_Ratio, bda)) -> new_esEs16(xuu3110002, xuu6002, bda) new_esEs20(xuu3110002, xuu6002, app(app(ty_@2, bdb), bdc)) -> new_esEs4(xuu3110002, xuu6002, bdb, bdc) new_ltEs14(EQ, LT) -> False new_lt5(xuu50000, xuu51000, ge, gf) -> new_esEs8(new_compare8(xuu50000, xuu51000, ge, gf), LT) new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_lt11(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Integer) -> new_ltEs10(xuu50002, xuu51002) new_primPlusNat1(Succ(xuu53200), Succ(xuu12100)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu12100))) new_lt12(xuu50001, xuu51001, app(ty_[], ccg)) -> new_lt7(xuu50001, xuu51001, ccg) new_ltEs21(xuu50001, xuu51001, ty_@0) -> new_ltEs12(xuu50001, xuu51001) new_lt11(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt17(xuu50000, xuu51000, cba, cbb, cbc) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Maybe, dhg)) -> new_esEs5(xuu3110000, xuu6000, dhg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bca, bcb, bcc) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bca), new_asAs(new_esEs21(xuu3110001, xuu6001, bcb), new_esEs20(xuu3110002, xuu6002, bcc))) new_compare210(xuu50000, xuu51000, True) -> EQ new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs7(xuu39, xuu34, cgc, cgd, cge) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Ratio, bhe)) -> new_ltEs16(xuu50000, xuu51000, bhe) new_sr(Integer(xuu510000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu510000, xuu500010)) new_compare110(xuu50000, xuu51000, False, cec, ced, cee) -> GT new_lt9(xuu50000, xuu51000) -> new_esEs8(new_compare17(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_pePe(False, xuu179) -> xuu179 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, bab), gg)) -> new_ltEs7(xuu5000, xuu5100, bab, gg) new_esEs27(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, app(ty_[], dgd)) -> new_compare4(xuu50000, xuu51000, dgd) new_esEs23(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare17(xuu5000, xuu5100)) new_lt11(xuu50000, xuu51000, app(ty_Ratio, cbd)) -> new_lt18(xuu50000, xuu51000, cbd) new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, cc)) -> new_esEs5(xuu3110001, xuu6001, cc) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dge), dfb) -> new_esEs5(xuu3110000, xuu6000, dge) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bfh), bga)) -> new_esEs6(xuu3110000, xuu6000, bfh, bga) new_esEs11(:(xuu3110000, xuu3110001), [], dcc) -> False new_esEs11([], :(xuu6000, xuu6001), dcc) -> False new_ltEs18(xuu50002, xuu51002, ty_Double) -> new_ltEs8(xuu50002, xuu51002) new_lt11(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_lt14(xuu50000, xuu51000, caf) new_esEs23(xuu50001, xuu51001, ty_Double) -> new_esEs18(xuu50001, xuu51001) new_lt12(xuu50001, xuu51001, ty_Int) -> new_lt19(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bec)) -> new_esEs16(xuu3110001, xuu6001, bec) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, dfb) -> new_esEs8(xuu3110000, xuu6000) new_compare23(xuu500, xuu510, True, dae, daf) -> EQ new_lt15(xuu50000, xuu51000, bbg, bbh) -> new_esEs8(new_compare13(xuu50000, xuu51000, bbg, bbh), LT) new_ltEs8(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu50000, xuu51000, False, ge, gf) -> GT new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bed), bee)) -> new_esEs4(xuu3110001, xuu6001, bed, bee) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_lt11(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_lt15(xuu50001, xuu51001, cca, ccb) new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, dfb) -> new_esEs13(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, app(ty_[], ccg)) -> new_esEs11(xuu50001, xuu51001, ccg) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, app(ty_Ratio, dgc)) -> new_compare16(xuu50000, xuu51000, dgc) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Int, gg) -> new_ltEs17(xuu50000, xuu51000) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bdf)) -> new_esEs5(xuu3110001, xuu6001, bdf) new_lt12(xuu50001, xuu51001, ty_Bool) -> new_lt6(xuu50001, xuu51001) new_ltEs14(EQ, GT) -> True new_esEs5(Nothing, Nothing, eh) -> True new_ltEs14(GT, EQ) -> False new_ltEs20(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Float) -> new_ltEs13(xuu50001, xuu51001) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_Ratio, ead)) -> new_esEs16(xuu3110000, xuu6000, ead) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, da)) -> new_esEs16(xuu3110001, xuu6001, da) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), eh) -> False new_esEs5(Just(xuu3110000), Nothing, eh) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, gb), gc)) -> new_esEs6(xuu3110000, xuu6000, gb, gc) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(ty_Either, baf), bag)) -> new_ltEs7(xuu50000, xuu51000, baf, bag) new_ltEs14(LT, GT) -> True new_esEs24(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_esEs6(xuu50000, xuu51000, cag, cah) new_ltEs14(GT, GT) -> True new_compare18(xuu153, xuu154, False, bhg, bhh) -> GT new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, db), dc)) -> new_esEs4(xuu3110001, xuu6001, db, dc) new_ltEs21(xuu50001, xuu51001, app(app(app(ty_@3, ded), dee), def)) -> new_ltEs15(xuu50001, xuu51001, ded, dee, def) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dhe), dhf), dfb) -> new_esEs6(xuu3110000, xuu6000, dhe, dhf) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs7(xuu3110000, xuu6000, fc, fd, ff) new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs7(xuu3110000, xuu6000, bfb, bfc, bfd) new_esEs32(xuu39, xuu34, app(ty_Maybe, cga)) -> new_esEs5(xuu39, xuu34, cga) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs4(xuu3110000, xuu6000, ed, ee) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, ef), eg)) -> new_esEs6(xuu3110000, xuu6000, ef, eg) new_lt11(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Ordering, gg) -> new_ltEs14(xuu50000, xuu51000) new_compare13(xuu50000, xuu51000, bbg, bbh) -> new_compare23(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bbg, bbh), bbg, bbh) new_lt18(xuu50000, xuu51000, ddf) -> new_esEs8(new_compare16(xuu50000, xuu51000, ddf), LT) new_esEs24(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_compare26(xuu50000, xuu51000, True, ceb) -> EQ new_esEs23(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_esEs5(xuu50001, xuu51001, cbh) new_esEs24(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare27(xuu50000, xuu51000, True, cec, ced, cee) -> EQ new_compare30(xuu50000, xuu51000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_compare29(xuu50000, xuu51000, dfh, dga, dgb) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Ratio, bbc)) -> new_ltEs16(xuu50000, xuu51000, bbc) new_compare18(xuu153, xuu154, True, bhg, bhh) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(xuu3110000, xuu6000, eaa, eab, eac) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(LT, LT) -> True new_lt12(xuu50001, xuu51001, ty_Char) -> new_lt16(xuu50001, xuu51001) new_compare19(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_compare111(xuu50000, xuu51000, True) -> LT new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, dfb) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Integer, gg) -> new_ltEs10(xuu50000, xuu51000) new_esEs24(xuu50000, xuu51000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu50000, xuu51000, cba, cbb, cbc) new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) new_primPlusNat1(Zero, Succ(xuu12100)) -> Succ(xuu12100) new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs18(xuu39, xuu34) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ca, cb) -> new_asAs(new_esEs10(xuu3110000, xuu6000, ca), new_esEs9(xuu3110001, xuu6001, cb)) new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(xuu50002, xuu51002, cde, cdf, cdg) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(ty_[], dhh)) -> new_esEs11(xuu3110000, xuu6000, dhh) new_esEs13(True, True) -> True new_esEs11(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs27(xuu3110000, xuu6000, dcc), new_esEs11(xuu3110001, xuu6001, dcc)) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Maybe, bgg)) -> new_ltEs11(xuu50000, xuu51000, bgg) new_lt11(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs15(xuu5000, xuu5100, dbf, dbg, dbh) new_esEs23(xuu50001, xuu51001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu50001, xuu51001, ccc, ccd, cce) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(ty_Maybe, bae)) -> new_ltEs11(xuu50000, xuu51000, bae) new_lt12(xuu50001, xuu51001, app(ty_Maybe, cbh)) -> new_lt14(xuu50001, xuu51001, cbh) new_ltEs18(xuu50002, xuu51002, ty_@0) -> new_ltEs12(xuu50002, xuu51002) new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs14(xuu22, xuu17) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs24(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, df)) -> new_esEs5(xuu3110000, xuu6000, df) new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, beh)) -> new_esEs5(xuu3110000, xuu6000, beh) new_ltEs5(xuu5000, xuu5100) -> new_fsEs(new_compare7(xuu5000, xuu5100)) new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare9(xuu50000, xuu51000), LT) new_esEs23(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_esEs16(xuu50001, xuu51001, ccf) new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs15(xuu5000, xuu5100, caa, cab, cac) new_compare4([], :(xuu51000, xuu51001), gd) -> LT new_lt12(xuu50001, xuu51001, ty_Double) -> new_lt13(xuu50001, xuu51001) new_compare28(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_lt19(xuu500, xuu510) -> new_esEs8(new_compare28(xuu500, xuu510), LT) new_esEs23(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs6(xuu5000, xuu5100, gd) -> new_fsEs(new_compare4(xuu5000, xuu5100, gd)) new_esEs23(xuu50001, xuu51001, app(app(ty_Either, cca), ccb)) -> new_esEs6(xuu50001, xuu51001, cca, ccb) new_esEs23(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50001, xuu51001, cbf, cbg) new_ltEs21(xuu50001, xuu51001, app(app(ty_@2, ddg), ddh)) -> new_ltEs9(xuu50001, xuu51001, ddg, ddh) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_[], bhf)) -> new_ltEs6(xuu50000, xuu51000, bhf) new_ltEs14(GT, LT) -> False new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bef), beg)) -> new_esEs6(xuu3110001, xuu6001, bef, beg) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bfe)) -> new_esEs16(xuu3110000, xuu6000, bfe) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_ltEs7(Left(xuu50000), Right(xuu51000), bab, gg) -> True new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, dfb) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], fb)) -> new_esEs11(xuu3110000, xuu6000, fb) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_esEs12(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, app(ty_Ratio, ccf)) -> new_lt18(xuu50001, xuu51001, ccf) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dhc), dhd), dfb) -> new_esEs4(xuu3110000, xuu6000, dhc, dhd) new_esEs20(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare211(xuu50000, xuu51000, False, ge, gf) -> new_compare11(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000, ge, gf), ge, gf) new_esEs32(xuu39, xuu34, app(ty_[], cgb)) -> new_esEs11(xuu39, xuu34, cgb) new_compare23(Left(xuu5000), Left(xuu5100), False, dae, daf) -> new_compare18(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, dae), dae, daf) new_ltEs20(xuu5000, xuu5100, app(ty_Maybe, dbc)) -> new_ltEs11(xuu5000, xuu5100, dbc) new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(xuu5000, xuu510) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bff), bfg)) -> new_esEs4(xuu3110000, xuu6000, bff, bfg) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_Either, eag), eah)) -> new_esEs6(xuu3110000, xuu6000, eag, eah) new_primCmpNat1(Succ(xuu50000), Zero) -> GT new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, app(app(ty_Either, cag), cah)) -> new_lt15(xuu50000, xuu51000, cag, cah) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs29(xuu22, xuu17, app(ty_Maybe, ceg)) -> new_esEs5(xuu22, xuu17, ceg) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Char, gg) -> new_ltEs5(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_Either, bgh), bha)) -> new_ltEs7(xuu50000, xuu51000, bgh, bha) new_esEs13(False, False) -> True new_lt20(xuu50000, xuu51000, app(ty_[], bgb)) -> new_lt7(xuu50000, xuu51000, bgb) new_primCmpNat0(xuu5000, Zero) -> GT new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, dfb) -> new_esEs19(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(xuu50000, xuu51000, cec, ced, cee) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_compare30(xuu50000, xuu51000, ty_@0) -> new_compare6(xuu50000, xuu51000) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_asAs(True, xuu148) -> xuu148 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare19(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, dd), de)) -> new_esEs6(xuu3110001, xuu6001, dd, de) new_esEs24(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(ty_@2, dba), dbb)) -> new_ltEs9(xuu5000, xuu5100, dba, dbb) new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Right(xuu6000), dfa, dfb) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), dfa, dfb) -> False new_esEs22(xuu3110000, xuu6000, app(ty_[], bfa)) -> new_esEs11(xuu3110000, xuu6000, bfa) new_esEs20(xuu3110002, xuu6002, app(ty_Maybe, bcd)) -> new_esEs5(xuu3110002, xuu6002, bcd) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, fh), ga)) -> new_esEs4(xuu3110000, xuu6000, fh, ga) new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs24(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, dag), dah)) -> new_ltEs9(xuu5000, xuu5100, dag, dah) new_ltEs21(xuu50001, xuu51001, ty_Bool) -> new_ltEs4(xuu50001, xuu51001) new_lt16(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, ty_Int) -> new_ltEs17(xuu50001, xuu51001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, fg)) -> new_esEs16(xuu3110000, xuu6000, fg) new_primCompAux00(xuu203, EQ) -> xuu203 new_ltEs21(xuu50001, xuu51001, ty_Double) -> new_ltEs8(xuu50001, xuu51001) new_ltEs21(xuu50001, xuu51001, app(app(ty_Either, deb), dec)) -> new_ltEs7(xuu50001, xuu51001, deb, dec) new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare4(:(xuu50000, xuu50001), [], gd) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(Left(xuu50000), Left(xuu51000), ty_@0, gg) -> new_ltEs12(xuu50000, xuu51000) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat2(xuu510, xuu5000) new_esEs27(xuu3110000, xuu6000, app(ty_Ratio, dda)) -> new_esEs16(xuu3110000, xuu6000, dda) new_compare10(xuu50000, xuu51000, False) -> GT new_esEs27(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_esEs23(xuu50001, xuu51001, ty_Char) -> new_esEs12(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_Maybe, caf)) -> new_esEs5(xuu50000, xuu51000, caf) new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs17(xuu22, xuu17) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_esEs30(xuu311000, xuu600, app(ty_Maybe, eh)) -> new_esEs5(xuu311000, xuu600, eh) new_esEs9(xuu3110001, xuu6001, app(ty_[], cd)) -> new_esEs11(xuu3110001, xuu6001, cd) new_primCmpNat1(Zero, Zero) -> EQ new_compare111(xuu50000, xuu51000, False) -> GT new_ltEs18(xuu50002, xuu51002, app(ty_Maybe, cdb)) -> new_ltEs11(xuu50002, xuu51002, cdb) new_esEs32(xuu39, xuu34, app(app(ty_Either, cha), chb)) -> new_esEs6(xuu39, xuu34, cha, chb) new_ltEs16(xuu5000, xuu5100, bgc) -> new_fsEs(new_compare16(xuu5000, xuu5100, bgc)) new_ltEs11(Nothing, Just(xuu51000), bgd) -> True new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_ltEs21(xuu50001, xuu51001, ty_Ordering) -> new_ltEs14(xuu50001, xuu51001) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(ty_Maybe, chc)) -> new_esEs5(xuu311000, xuu600, chc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(app(ty_Either, dac), dad)) -> new_esEs6(xuu311000, xuu600, dac, dad) new_compare210(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs4(xuu50000, xuu51000)) new_lt12(xuu50001, xuu51001, ty_Ordering) -> new_lt8(xuu50001, xuu51001) new_compare24(xuu50000, xuu51000, False) -> new_compare10(xuu50000, xuu51000, new_ltEs14(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bgd)) -> new_ltEs11(xuu5000, xuu5100, bgd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, dfb) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) new_lt12(xuu50001, xuu51001, ty_@0) -> new_lt4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, app(ty_[], dce)) -> new_esEs11(xuu3110000, xuu6000, dce) new_compare30(xuu50000, xuu51000, ty_Float) -> new_compare17(xuu50000, xuu51000) new_lt20(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_lt14(xuu50000, xuu51000, ceb) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare15(xuu50000, xuu51000), LT) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs4(True, False) -> False new_ltEs17(xuu5000, xuu5100) -> new_fsEs(new_compare28(xuu5000, xuu5100)) new_esEs32(xuu39, xuu34, app(app(ty_@2, cgg), cgh)) -> new_esEs4(xuu39, xuu34, cgg, cgh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, app(app(ty_@2, eae), eaf)) -> new_esEs4(xuu3110000, xuu6000, eae, eaf) new_ltEs18(xuu50002, xuu51002, app(ty_[], cea)) -> new_ltEs6(xuu50002, xuu51002, cea) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs18(xuu50002, xuu51002, app(app(ty_@2, cch), cda)) -> new_ltEs9(xuu50002, xuu51002, cch, cda) new_compare24(xuu50000, xuu51000, True) -> EQ new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, app(app(ty_Either, bdd), bde)) -> new_esEs6(xuu3110002, xuu6002, bdd, bde) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, app(ty_Ratio, cgf)) -> new_esEs16(xuu39, xuu34, cgf) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_compare4([], [], gd) -> EQ new_lt4(xuu50000, xuu51000) -> new_esEs8(new_compare6(xuu50000, xuu51000), LT) new_compare211(xuu50000, xuu51000, True, ge, gf) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu3110001, xuu6001, app(ty_[], bdg)) -> new_esEs11(xuu3110001, xuu6001, bdg) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_@2, bge), bgf)) -> new_ltEs9(xuu50000, xuu51000, bge, bgf) new_lt11(xuu50000, xuu51000, app(ty_[], cbe)) -> new_lt7(xuu50000, xuu51000, cbe) new_ltEs4(False, False) -> True new_esEs28(xuu50000, xuu51000, app(ty_Maybe, ceb)) -> new_esEs5(xuu50000, xuu51000, ceb) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cef) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cef), new_esEs25(xuu3110001, xuu6001, cef)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat2(Zero, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare110(xuu50000, xuu51000, True, cec, ced, cee) -> LT new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_ltEs21(xuu50001, xuu51001, ty_Integer) -> new_ltEs10(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_lt17(xuu50000, xuu51000, cec, ced, cee) -> new_esEs8(new_compare29(xuu50000, xuu51000, cec, ced, cee), LT) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, ty_Integer) -> new_compare19(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu22, xuu17, cfa, cfb, cfc) new_esEs31(xuu311000, xuu600, app(app(ty_@2, daa), dab)) -> new_esEs4(xuu311000, xuu600, daa, dab) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs17(xuu39, xuu34) new_compare15(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_not(False) -> True new_ltEs20(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs7(xuu3110002, xuu6002, bcf, bcg, bch) new_compare7(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_compare30(xuu50000, xuu51000, ty_Bool) -> new_compare9(xuu50000, xuu51000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs21(xuu50001, xuu51001, app(ty_Maybe, dea)) -> new_ltEs11(xuu50001, xuu51001, dea) new_esEs29(xuu22, xuu17, app(app(ty_Either, cfg), cfh)) -> new_esEs6(xuu22, xuu17, cfg, cfh) new_ltEs12(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) new_lt20(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_lt5(xuu50000, xuu51000, ge, gf) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs7(xuu311000, xuu600, bca, bcb, bcc) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, dfb) -> new_esEs18(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_compare30(xuu50000, xuu51000, ty_Double) -> new_compare14(xuu50000, xuu51000) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, chh)) -> new_esEs16(xuu311000, xuu600, chh) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, dfb) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu3110000, xuu6000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xuu3110000, xuu6000, dcf, dcg, dch) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_primPlusNat0(Succ(xuu1300), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1300, xuu600000))) new_compare30(xuu50000, xuu51000, app(ty_Maybe, dfe)) -> new_compare25(xuu50000, xuu51000, dfe) new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_compare11(xuu50000, xuu51000, True, ge, gf) -> LT new_ltEs20(xuu5000, xuu5100, app(ty_[], dcb)) -> new_ltEs6(xuu5000, xuu5100, dcb) new_primCmpNat1(Zero, Succ(xuu51000)) -> LT new_esEs30(xuu311000, xuu600, app(app(ty_Either, dfa), dfb)) -> new_esEs6(xuu311000, xuu600, dfa, dfb) new_sr0(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare30(xuu50000, xuu51000, ty_Char) -> new_compare7(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs19(xuu39, xuu34) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dhb), dfb) -> new_esEs16(xuu3110000, xuu6000, dhb) new_compare10(xuu50000, xuu51000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_primPlusNat1(Zero, Zero) -> Zero new_compare26(xuu50000, xuu51000, False, ceb) -> new_compare112(xuu50000, xuu51000, new_ltEs11(xuu50000, xuu51000, ceb), ceb) new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, app(ty_Ratio, cdh)) -> new_ltEs16(xuu50002, xuu51002, cdh) new_ltEs14(LT, EQ) -> True new_lt20(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_lt15(xuu50000, xuu51000, bbg, bbh) new_lt12(xuu50001, xuu51001, app(app(ty_@2, cbf), cbg)) -> new_lt5(xuu50001, xuu51001, cbf, cbg) new_ltEs15(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), caa, cab, cac) -> new_pePe(new_lt11(xuu50000, xuu51000, caa), new_asAs(new_esEs24(xuu50000, xuu51000, caa), new_pePe(new_lt12(xuu50001, xuu51001, cab), new_asAs(new_esEs23(xuu50001, xuu51001, cab), new_ltEs18(xuu50002, xuu51002, cac))))) new_esEs31(xuu311000, xuu600, app(ty_[], chd)) -> new_esEs11(xuu311000, xuu600, chd) new_compare27(xuu50000, xuu51000, False, cec, ced, cee) -> new_compare110(xuu50000, xuu51000, new_ltEs15(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare23(Right(xuu5000), Left(xuu5100), False, dae, daf) -> GT new_esEs27(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs4(xuu3110000, xuu6000, ddb, ddc) new_esEs27(xuu3110000, xuu6000, app(app(ty_Either, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) new_compare30(xuu50000, xuu51000, app(app(ty_@2, dfc), dfd)) -> new_compare8(xuu50000, xuu51000, dfc, dfd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Ratio, hh), gg) -> new_ltEs16(xuu50000, xuu51000, hh) new_compare6(@0, @0) -> EQ new_esEs29(xuu22, xuu17, app(ty_[], ceh)) -> new_esEs11(xuu22, xuu17, ceh) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_esEs28(xuu50000, xuu51000, app(app(ty_@2, ge), gf)) -> new_esEs4(xuu50000, xuu51000, ge, gf) new_lt11(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dgg), dgh), dha), dfb) -> new_esEs7(xuu3110000, xuu6000, dgg, dgh, dha) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_compare29(xuu50000, xuu51000, cec, ced, cee) -> new_compare27(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, cec, ced, cee), cec, ced, cee) new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Bool) -> new_ltEs4(xuu50002, xuu51002) new_ltEs11(Just(xuu50000), Nothing, bgd) -> False new_esEs28(xuu50000, xuu51000, app(ty_Ratio, ddf)) -> new_esEs16(xuu50000, xuu51000, ddf) new_ltEs11(Nothing, Nothing, bgd) -> True new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs16(xuu50001, xuu51001, deg) new_esEs27(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare8(xuu50000, xuu51000, ge, gf) -> new_compare211(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, ge, gf), ge, gf) new_primCmpNat2(Succ(xuu5100), xuu5000) -> new_primCmpNat1(xuu5100, xuu5000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs12(xuu39, xuu34) new_esEs29(xuu22, xuu17, app(app(ty_@2, cfe), cff)) -> new_esEs4(xuu22, xuu17, cfe, cff) new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs19(xuu22, xuu17) new_esEs29(xuu22, xuu17, app(ty_Ratio, cfd)) -> new_esEs16(xuu22, xuu17, cfd) new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bbg), bbh)) -> new_esEs6(xuu50000, xuu51000, bbg, bbh) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, ty_Integer) -> new_esEs15(xuu50001, xuu51001) new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), bab, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs15(xuu50000, xuu51000, bah, bba, bbb) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs20(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_ltEs20(xuu5000, xuu5100, app(ty_Ratio, dca)) -> new_ltEs16(xuu5000, xuu5100, dca) new_esEs11([], [], dcc) -> True new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_esEs30(xuu311000, xuu600, app(ty_[], dcc)) -> new_esEs11(xuu311000, xuu600, dcc) new_asAs(False, xuu148) -> False new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) new_compare23(Right(xuu5000), Right(xuu5100), False, dae, daf) -> new_compare12(xuu5000, xuu5100, new_ltEs20(xuu5000, xuu5100, daf), dae, daf) new_ltEs14(LT, LT) -> True new_esEs20(xuu3110002, xuu6002, ty_Char) -> new_esEs12(xuu3110002, xuu6002) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Maybe, hb), gg) -> new_ltEs11(xuu50000, xuu51000, hb) new_ltEs21(xuu50001, xuu51001, ty_Char) -> new_ltEs5(xuu50001, xuu51001) new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, cec), ced), cee)) -> new_lt17(xuu50000, xuu51000, cec, ced, cee) new_lt10(xuu50000, xuu51000) -> new_esEs8(new_compare19(xuu50000, xuu51000), LT) new_esEs27(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs5(xuu3110000, xuu6000, dcd) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_@2, gh), ha), gg) -> new_ltEs9(xuu50000, xuu51000, gh, ha) new_esEs23(xuu50001, xuu51001, ty_@0) -> new_esEs14(xuu50001, xuu51001) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(xuu50000, xuu51000, False, ceb) -> GT new_ltEs7(Right(xuu50000), Right(xuu51000), bab, ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_compare12(xuu160, xuu161, True, bbe, bbf) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Float, gg) -> new_ltEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dfa, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs21(xuu50001, xuu51001, app(ty_[], deh)) -> new_ltEs6(xuu50001, xuu51001, deh) The set Q consists of the following terms: new_esEs8(EQ, EQ) new_compare30(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_compare30(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_primCmpNat1(Zero, Zero) new_pePe(False, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_ltEs19(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11([], :(x0, x1), x2) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare25(x0, x1, x2) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Char(x0), Char(x1)) new_primCmpNat1(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_compare26(x0, x1, True, x2) new_esEs30(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(LT, LT) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, x2) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, False, x2, x3, x4) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(@0, @0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt12(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare4(:(x0, x1), :(x2, x3), x4) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs12(x0, x1) new_compare10(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_lt9(x0, x1) new_compare9(x0, x1) new_lt19(x0, x1) new_primPlusNat1(Succ(x0), Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare4([], [], x0) new_lt13(x0, x1) new_esEs27(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt11(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Float) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare24(x0, x1, False) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare27(x0, x1, True, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_compare18(x0, x1, False, x2, x3) new_compare211(x0, x1, False, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_ltEs6(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, False, x2) new_ltEs21(x0, x1, ty_Double) new_compare28(x0, x1) new_esEs30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, x2, x3) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs14(LT, GT) new_esEs21(x0, x1, ty_Double) new_ltEs14(GT, LT) new_compare30(x0, x1, ty_Integer) new_ltEs4(True, True) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_lt17(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(:(x0, x1), [], x2) new_lt7(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_lt4(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(GT, GT) new_compare23(Left(x0), Right(x1), False, x2, x3) new_compare23(Right(x0), Left(x1), False, x2, x3) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare19(Integer(x0), Integer(x1)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare4([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Integer) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(False, True) new_esEs13(True, False) new_esEs27(x0, x1, ty_Ordering) new_compare211(x0, x1, True, x2, x3) new_lt11(x0, x1, ty_Bool) new_esEs8(LT, LT) new_ltEs8(x0, x1) 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_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt11(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Float) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare30(x0, x1, ty_Char) new_compare23(Left(x0), Left(x1), False, x2, x3) new_esEs24(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_sr(Integer(x0), Integer(x1)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_fsEs(x0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt11(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Char) new_primCmpNat0(x0, Zero) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs11(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, False) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Nothing, x1) new_lt11(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, True) new_sr0(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_esEs30(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs10(x0, x1, ty_Int) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare24(x0, x1, True) new_ltEs14(EQ, EQ) new_compare23(Right(x0), Right(x1), False, x2, x3) new_ltEs16(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs11(:(x0, x1), :(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs17(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt16(x0, x1) new_lt12(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(Integer(x0), Integer(x1)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat1(Zero, Succ(x0)) new_compare4(:(x0, x1), [], x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat2(Zero, x0) new_esEs29(x0, x1, ty_Double) new_lt5(x0, x1, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Nothing, Just(x0), x1) new_asAs(False, x0) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs18(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_not(True) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Char) new_lt6(x0, x1) new_compare12(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_compare10(x0, x1, True) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Double) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs9(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt18(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs25(x0, x1, ty_Integer) new_esEs13(True, True) new_esEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt12(x0, x1, ty_Bool) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpNat2(Succ(x0), x1) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(@0, @0) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs14(GT, GT) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_Ordering) new_lt12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Integer) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(False, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs19(Float(x0, x1), Float(x2, x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_compare210(x0, x1, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True, x2, x3) new_esEs11([], [], x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare30(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs13(False, False) new_compare12(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt8(x0, x1) new_lt15(x0, x1, x2, x3) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs13(x0, x1) new_lt12(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_lt11(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare110(x0, x1, True, x2, x3, x4) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs10(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_primMulNat0(Succ(x0), Zero) new_compare7(Char(x0), Char(x1)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt11(x0, x1, ty_Double) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_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_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_Either, fd), ff), eh) -> new_ltEs7(xuu50000, xuu51000, fd, ff) new_ltEs7(Right(xuu50000), Left(xuu51000), gd, eh) -> False new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(ty_[], hf)) -> new_ltEs6(xuu50000, xuu51000, hf) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT new_addToFM_C0(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C24(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, ba), h, ba), LT), h, ba, bb) new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare28(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) new_lt14(xuu50000, xuu51000, bcd) -> new_esEs8(new_compare25(xuu50000, xuu51000, bcd), LT) new_lt11(xuu50000, xuu51000, app(app(ty_@2, cfd), cfe)) -> new_lt5(xuu50000, xuu51000, cfd, cfe) new_pePe(True, xuu179) -> True new_primCmpNat0(xuu5000, Succ(xuu5100)) -> new_primCmpNat1(xuu5000, xuu5100) new_compare12(xuu160, xuu161, False, bhb, bhc) -> GT new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_ltEs18(xuu50002, xuu51002, app(app(ty_Either, dac), dad)) -> new_ltEs7(xuu50002, xuu51002, dac, dad) new_ltEs18(xuu50002, xuu51002, ty_Ordering) -> new_ltEs14(xuu50002, xuu51002) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs7(xuu3110001, xuu6001, cbb, cbc, cbd) new_lt7(xuu50000, xuu51000, hg) -> new_esEs8(new_compare4(xuu50000, xuu51000, hg), LT) new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_compare112(xuu50000, xuu51000, True, bcd) -> LT new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) new_esEs23(xuu50001, xuu51001, ty_Int) -> new_esEs17(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_[], cge)) -> new_esEs11(xuu50000, xuu51000, cge) new_esEs30(xuu311000, xuu600, app(app(ty_@2, bc), bd)) -> new_esEs4(xuu311000, xuu600, bc, bd) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_lt20(xuu50000, xuu51000, app(ty_Ratio, deb)) -> new_lt18(xuu50000, xuu51000, deb) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_esEs24(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, hh)) -> new_ltEs16(xuu5000, xuu5100, hh) new_esEs30(xuu311000, xuu600, app(ty_Ratio, baa)) -> new_esEs16(xuu311000, xuu600, baa) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_ltEs9(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), dbd, dbe) -> new_pePe(new_lt20(xuu50000, xuu51000, dbd), new_asAs(new_esEs28(xuu50000, xuu51000, dbd), new_ltEs21(xuu50001, xuu51001, dbe))) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_[], gc), eh) -> new_ltEs6(xuu50000, xuu51000, gc) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Double, eh) -> new_ltEs8(xuu50000, xuu51000) new_compare4(:(xuu50000, xuu50001), :(xuu51000, xuu51001), ee) -> new_primCompAux0(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, ee), ee) new_ltEs10(xuu5000, xuu5100) -> new_fsEs(new_compare19(xuu5000, xuu5100)) new_compare30(xuu50000, xuu51000, ty_Int) -> new_compare28(xuu50000, xuu51000) new_ltEs4(False, True) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(app(ty_@2, ge), gf)) -> new_ltEs9(xuu50000, xuu51000, ge, gf) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_compare30(xuu50000, xuu51000, app(app(ty_Either, dfh), dga)) -> new_compare13(xuu50000, xuu51000, dfh, dga) new_esEs24(xuu50000, xuu51000, app(ty_Ratio, cgd)) -> new_esEs16(xuu50000, xuu51000, cgd) new_primCmpNat1(Succ(xuu50000), Succ(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_addToFM_C0(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, h, ba), LT), h, ba, bb) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primCompAux0(xuu50000, xuu51000, xuu189, ee) -> new_primCompAux00(xuu189, new_compare30(xuu50000, xuu51000, ee)) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_lt12(xuu50001, xuu51001, ty_Float) -> new_lt9(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, fg), fh), ga), eh) -> new_ltEs15(xuu50000, xuu51000, fg, fh, ga) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs8(GT, GT) -> True new_fsEs(xuu163) -> new_not(new_esEs8(xuu163, GT)) new_compare9(xuu50000, xuu51000) -> new_compare210(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs7(xuu311000, xuu600, bgb, bgc, bgd) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], dgh), bfg) -> new_esEs11(xuu3110000, xuu6000, dgh) new_ltEs19(xuu5000, xuu5100, app(ty_[], ee)) -> new_ltEs6(xuu5000, xuu5100, ee) new_esEs24(xuu50000, xuu51000, app(app(ty_@2, cfd), cfe)) -> new_esEs4(xuu50000, xuu51000, cfd, cfe) new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu50002, xuu51002, ty_Int) -> new_ltEs17(xuu50002, xuu51002) new_esEs28(xuu50000, xuu51000, app(ty_[], hg)) -> new_esEs11(xuu50000, xuu51000, hg) new_esEs8(EQ, EQ) -> True new_esEs24(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_esEs27(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Float) -> new_esEs19(xuu50001, xuu51001) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_not(True) -> False new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs7(xuu3110001, xuu6001, bg, bh, ca) new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Right(xuu600), xuu61, xuu45, xuu64, app(app(ty_Either, h), ba), bb) new_ltEs20(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCompAux00(xuu203, LT) -> LT new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(app(ty_@3, chc), chd), che)) -> new_lt17(xuu50001, xuu51001, chc, chd, che) new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu45, True, h, ba, bb) -> new_mkBranch(Zero, Right(xuu600), xuu61, xuu45, xuu64, app(app(ty_Either, h), ba), bb) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs15(xuu50000, xuu51000, ceb, cec, ced) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_compare25(xuu50000, xuu51000, bcd) -> new_compare26(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bcd), bcd) new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(ty_[], bhg)) -> new_esEs11(xuu3110002, xuu6002, bhg) new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs15(xuu39, xuu34) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, de)) -> new_esEs16(xuu3110000, xuu6000, de) new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, ty_Ordering) -> new_compare15(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu45, h, ba, bb) -> new_sizeFM(xuu45, h, ba, bb) new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, db), dc), dd)) -> new_esEs7(xuu3110000, xuu6000, db, dc, dd) new_lt11(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(ty_Either, dca), dcb)) -> new_ltEs7(xuu5000, xuu5100, dca, dcb) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_addToFM_C24(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bae, baf, bag) -> new_mkBalBranch0(xuu34, xuu35, new_addToFM_C0(xuu37, Right(xuu39), xuu40, bae, baf, bag), xuu38, bae, baf, bag) new_esEs14(@0, @0) -> True new_ltEs18(xuu50002, xuu51002, ty_Float) -> new_ltEs13(xuu50002, xuu51002) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Bool, eh) -> new_ltEs4(xuu50000, xuu51000) new_lt11(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), xuu53, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu53, new_lt19(new_sizeFM(xuu643, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba, bb))), h, ba, bb) new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(Left(xuu5000), Right(xuu5100), False, dbb, dbc) -> LT new_lt12(xuu50001, xuu51001, ty_Integer) -> new_lt10(xuu50001, xuu51001) new_primCompAux00(xuu203, GT) -> GT new_primMinusNat0(Succ(xuu53200), Zero) -> Pos(Succ(xuu53200)) new_esEs24(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_ltEs14(EQ, EQ) -> True new_primCmpNat2(Zero, xuu5000) -> LT new_esEs20(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Left(xuu600), xuu61, xuu53, xuu64, app(app(ty_Either, h), ba), bb) new_esEs10(xuu3110000, xuu6000, app(ty_[], da)) -> new_esEs11(xuu3110000, xuu6000, da) new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs14(xuu39, xuu34) new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs18(xuu22, xuu17) new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT new_ltEs18(xuu50002, xuu51002, ty_Char) -> new_ltEs5(xuu50002, xuu51002) new_esEs20(xuu3110002, xuu6002, app(ty_Ratio, cac)) -> new_esEs16(xuu3110002, xuu6002, cac) new_esEs20(xuu3110002, xuu6002, app(app(ty_@2, cad), cae)) -> new_esEs4(xuu3110002, xuu6002, cad, cae) new_ltEs14(EQ, LT) -> False new_lt5(xuu50000, xuu51000, ef, eg) -> new_esEs8(new_compare8(xuu50000, xuu51000, ef, eg), LT) new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, h, ba), GT), h, ba, bb) new_mkBalBranch(xuu600, xuu61, xuu53, xuu64, h, ba, bb) -> new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu53, new_esEs8(new_primCmpInt0(xuu53, xuu600, xuu61, xuu64, h, ba, bb), LT), h, ba, bb) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, EmptyFM, True, h, ba, bb) -> error([]) new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch0(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Left(xuu311000), xuu31101, h, ba, bb), h, ba, bb) new_lt11(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_addToFM_C0(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C25(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, h), h, ba), LT), h, ba, bb) new_ltEs18(xuu50002, xuu51002, ty_Integer) -> new_ltEs10(xuu50002, xuu51002) new_primPlusNat1(Succ(xuu53200), Succ(xuu12100)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu12100))) new_lt12(xuu50001, xuu51001, app(ty_[], chg)) -> new_lt7(xuu50001, xuu51001, chg) new_ltEs21(xuu50001, xuu51001, ty_@0) -> new_ltEs12(xuu50001, xuu51001) new_lt11(xuu50000, xuu51000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt17(xuu50000, xuu51000, cga, cgb, cgc) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(ty_Maybe, eaa)) -> new_esEs5(xuu3110000, xuu6000, eaa) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bfc, bfd, bfe) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfc), new_asAs(new_esEs21(xuu3110001, xuu6001, bfd), new_esEs20(xuu3110002, xuu6002, bfe))) new_compare210(xuu50000, xuu51000, True) -> EQ new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu39, xuu34, bbb, bbc, bbd) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_addToFM_C24(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bae, baf, bag) -> new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare23(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, baf), bae, baf), GT), bae, baf, bag) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Ratio, cee)) -> new_ltEs16(xuu50000, xuu51000, cee) new_sr(Integer(xuu510000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu510000, xuu500010)) new_compare110(xuu50000, xuu51000, False, bab, bac, bad) -> GT new_lt9(xuu50000, xuu51000) -> new_esEs8(new_compare17(xuu50000, xuu51000), LT) new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu45, h, ba, bb) -> new_sizeFM(xuu64, h, ba, bb) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_pePe(False, xuu179) -> xuu179 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, gd), eh)) -> new_ltEs7(xuu5000, xuu5100, gd, eh) new_esEs27(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, app(ty_[], dgf)) -> new_compare4(xuu50000, xuu51000, dgf) new_esEs23(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare17(xuu5000, xuu5100)) new_lt11(xuu50000, xuu51000, app(ty_Ratio, cgd)) -> new_lt18(xuu50000, xuu51000, cgd) new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, be)) -> new_esEs5(xuu3110001, xuu6001, be) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu53, h, ba, bb) -> new_sizeFM(xuu64, h, ba, bb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dgg), bfg) -> new_esEs5(xuu3110000, xuu6000, dgg) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cdb), cdc)) -> new_esEs6(xuu3110000, xuu6000, cdb, cdc) new_esEs11(:(xuu3110000, xuu3110001), [], bfb) -> False new_esEs11([], :(xuu6000, xuu6001), bfb) -> False new_primMinusNat0(Succ(xuu53200), Succ(xuu12100)) -> new_primMinusNat0(xuu53200, xuu12100) new_ltEs18(xuu50002, xuu51002, ty_Double) -> new_ltEs8(xuu50002, xuu51002) new_lt11(xuu50000, xuu51000, app(ty_Maybe, cff)) -> new_lt14(xuu50000, xuu51000, cff) new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, xuu45, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Right(xuu600), xuu61, xuu45, xuu6433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs23(xuu50001, xuu51001, ty_Double) -> new_esEs18(xuu50001, xuu51001) new_lt12(xuu50001, xuu51001, ty_Int) -> new_lt19(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, cbe)) -> new_esEs16(xuu3110001, xuu6001, cbe) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, bfg) -> new_esEs8(xuu3110000, xuu6000) new_compare23(xuu500, xuu510, True, dbb, dbc) -> EQ new_lt15(xuu50000, xuu51000, bhd, bhe) -> new_esEs8(new_compare13(xuu50000, xuu51000, bhd, bhe), LT) new_ltEs8(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu50000, xuu51000, False, ef, eg) -> GT new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu3110001, xuu6001, cbf, cbg) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, xuu53, new_gt(new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu53, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu53, h, ba, bb))), h, ba, bb) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_lt11(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(ty_Either, cha), chb)) -> new_lt15(xuu50001, xuu51001, cha, chb) new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, bfg) -> new_esEs13(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, app(ty_[], chg)) -> new_esEs11(xuu50001, xuu51001, chg) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, app(ty_Ratio, dge)) -> new_compare16(xuu50000, xuu51000, dge) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Int, eh) -> new_ltEs17(xuu50000, xuu51000) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, cah)) -> new_esEs5(xuu3110001, xuu6001, cah) new_lt12(xuu50001, xuu51001, ty_Bool) -> new_lt6(xuu50001, xuu51001) new_ltEs14(EQ, GT) -> True new_esEs5(Nothing, Nothing, bdg) -> True new_ltEs14(GT, EQ) -> False new_ltEs20(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Float) -> new_ltEs13(xuu50001, xuu51001) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(ty_Ratio, eaf)) -> new_esEs16(xuu3110000, xuu6000, eaf) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, cb)) -> new_esEs16(xuu3110001, xuu6001, cb) new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs5(Nothing, Just(xuu6000), bdg) -> False new_esEs5(Just(xuu3110000), Nothing, bdg) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_emptyFM(h, ba, bb) -> EmptyFM new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, beh), bfa)) -> new_esEs6(xuu3110000, xuu6000, beh, bfa) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, EmptyFM, xuu53, True, h, ba, bb) -> error([]) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(app(ty_Either, gh), ha)) -> new_ltEs7(xuu50000, xuu51000, gh, ha) new_ltEs14(LT, GT) -> True new_esEs24(xuu50000, xuu51000, app(app(ty_Either, cfg), cfh)) -> new_esEs6(xuu50000, xuu51000, cfg, cfh) new_ltEs14(GT, GT) -> True new_compare18(xuu153, xuu154, False, ceg, ceh) -> GT new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, cc), cd)) -> new_esEs4(xuu3110001, xuu6001, cc, cd) new_ltEs21(xuu50001, xuu51001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs15(xuu50001, xuu51001, deh, dfa, dfb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dhg), dhh), bfg) -> new_esEs6(xuu3110000, xuu6000, dhg, dhh) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, beb), bec), bed)) -> new_esEs7(xuu3110000, xuu6000, beb, bec, bed) new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs7(xuu3110000, xuu6000, ccd, cce, ccf) new_esEs32(xuu39, xuu34, app(ty_Maybe, bah)) -> new_esEs5(xuu39, xuu34, bah) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, df), dg)) -> new_esEs4(xuu3110000, xuu6000, df, dg) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, dh), ea)) -> new_esEs6(xuu3110000, xuu6000, dh, ea) new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) new_lt11(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Ordering, eh) -> new_ltEs14(xuu50000, xuu51000) new_mkBalBranch6MkBalBranch4(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, xuu45, new_gt(new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu45, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu45, h, ba, bb))), h, ba, bb) new_compare13(xuu50000, xuu51000, bhd, bhe) -> new_compare23(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bhd, bhe), bhd, bhe) new_lt18(xuu50000, xuu51000, deb) -> new_esEs8(new_compare16(xuu50000, xuu51000, deb), LT) new_esEs24(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_primPlusInt(Pos(xuu5320), Pos(xuu1210)) -> Pos(new_primPlusNat1(xuu5320, xuu1210)) new_compare26(xuu50000, xuu51000, True, bcd) -> EQ new_esEs23(xuu50001, xuu51001, app(ty_Maybe, cgh)) -> new_esEs5(xuu50001, xuu51001, cgh) new_esEs24(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bae, baf, bag) -> new_mkBalBranch0(xuu34, xuu35, xuu37, new_addToFM_C0(xuu38, Right(xuu39), xuu40, bae, baf, bag), bae, baf, bag) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare27(xuu50000, xuu51000, True, bab, bac, bad) -> EQ new_compare30(xuu50000, xuu51000, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_compare29(xuu50000, xuu51000, dgb, dgc, dgd) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(ty_Ratio, he)) -> new_ltEs16(xuu50000, xuu51000, he) new_compare18(xuu153, xuu154, True, ceg, ceh) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs7(xuu3110000, xuu6000, eac, ead, eae) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(LT, LT) -> True new_lt12(xuu50001, xuu51001, ty_Char) -> new_lt16(xuu50001, xuu51001) new_compare19(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) new_compare111(xuu50000, xuu51000, True) -> LT new_ltEs20(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, bfg) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Integer, eh) -> new_ltEs10(xuu50000, xuu51000) new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, EmptyFM, False, h, ba, bb) -> error([]) new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) new_primPlusNat1(Zero, Succ(xuu12100)) -> Succ(xuu12100) new_esEs24(xuu50000, xuu51000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs7(xuu50000, xuu51000, cga, cgb, cgc) new_primCmpInt1(Branch(xuu450, xuu451, xuu452, xuu453, xuu454), xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu452, new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, Branch(xuu450, xuu451, xuu452, xuu453, xuu454), h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs18(xuu39, xuu34) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bc, bd) -> new_asAs(new_esEs10(xuu3110000, xuu6000, bc), new_esEs9(xuu3110001, xuu6001, bd)) new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> Branch(Left(xuu311000), new_addListToFM0(xuu61, xuu31101, bb), xuu62, xuu63, xuu64) new_ltEs18(xuu50002, xuu51002, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs15(xuu50002, xuu51002, dae, daf, dag) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(ty_[], eab)) -> new_esEs11(xuu3110000, xuu6000, eab) new_esEs13(True, True) -> True new_esEs11(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bfb) -> new_asAs(new_esEs27(xuu3110000, xuu6000, bfb), new_esEs11(xuu3110001, xuu6001, bfb)) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Maybe, cdg)) -> new_ltEs11(xuu50000, xuu51000, cdg) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs15(xuu5000, xuu5100, dcc, dcd, dce) new_primCmpInt1(EmptyFM, xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, EmptyFM, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs23(xuu50001, xuu51001, app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(xuu50001, xuu51001, chc, chd, che) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(ty_Maybe, gg)) -> new_ltEs11(xuu50000, xuu51000, gg) new_lt12(xuu50001, xuu51001, app(ty_Maybe, cgh)) -> new_lt14(xuu50001, xuu51001, cgh) new_ltEs18(xuu50002, xuu51002, ty_@0) -> new_ltEs12(xuu50002, xuu51002) new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, xuu534, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu530, xuu531, xuu533, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Left(xuu600), xuu61, xuu534, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs14(xuu22, xuu17) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs24(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, cg)) -> new_esEs5(xuu3110000, xuu6000, cg) new_addListToFM0(xuu18, xuu23, ed) -> xuu23 new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, xuu454, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu450, xuu451, xuu453, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Right(xuu600), xuu61, xuu454, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, ccb)) -> new_esEs5(xuu3110000, xuu6000, ccb) new_ltEs5(xuu5000, xuu5100) -> new_fsEs(new_compare7(xuu5000, xuu5100)) new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare9(xuu50000, xuu51000), LT) new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, xuu53, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Left(xuu600), xuu61, xuu53, xuu6433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs23(xuu50001, xuu51001, app(ty_Ratio, chf)) -> new_esEs16(xuu50001, xuu51001, chf) new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_primCmpInt0(EmptyFM, xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, EmptyFM, h, ba, bb)), Pos(Succ(Succ(Zero)))) new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs15(xuu5000, xuu5100, cfa, cfb, cfc) new_compare4([], :(xuu51000, xuu51001), ee) -> LT new_lt12(xuu50001, xuu51001, ty_Double) -> new_lt13(xuu50001, xuu51001) new_compare28(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) new_lt19(xuu500, xuu510) -> new_esEs8(new_compare28(xuu500, xuu510), LT) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bdh)) -> new_esEs5(xuu3110000, xuu6000, bdh) new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs6(xuu5000, xuu5100, ee) -> new_fsEs(new_compare4(xuu5000, xuu5100, ee)) new_esEs23(xuu50001, xuu51001, app(app(ty_Either, cha), chb)) -> new_esEs6(xuu50001, xuu51001, cha, chb) new_esEs23(xuu50001, xuu51001, app(app(ty_@2, cgf), cgg)) -> new_esEs4(xuu50001, xuu51001, cgf, cgg) new_ltEs21(xuu50001, xuu51001, app(app(ty_@2, dec), ded)) -> new_ltEs9(xuu50001, xuu51001, dec, ded) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_[], cef)) -> new_ltEs6(xuu50000, xuu51000, cef) new_ltEs14(GT, LT) -> False new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, cbh), cca)) -> new_esEs6(xuu3110001, xuu6001, cbh, cca) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, ccg)) -> new_esEs16(xuu3110000, xuu6000, ccg) new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_ltEs7(Left(xuu50000), Right(xuu51000), gd, eh) -> True new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, bfg) -> 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_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs11(xuu3110000, xuu6000, bea) new_esEs12(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, app(ty_Ratio, chf)) -> new_lt18(xuu50001, xuu51001, chf) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dhe), dhf), bfg) -> new_esEs4(xuu3110000, xuu6000, dhe, dhf) new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, EmptyFM, xuu644, xuu45, False, h, ba, bb) -> error([]) new_compare211(xuu50000, xuu51000, False, ef, eg) -> new_compare11(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000, ef, eg), ef, eg) new_esEs20(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, app(ty_[], bba)) -> new_esEs11(xuu39, xuu34, bba) new_compare23(Left(xuu5000), Left(xuu5100), False, dbb, dbc) -> new_compare18(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, dbb), dbb, dbc) new_ltEs20(xuu5000, xuu5100, app(ty_Maybe, dbh)) -> new_ltEs11(xuu5000, xuu5100, dbh) new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(xuu5000, xuu510) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cch), cda)) -> new_esEs4(xuu3110000, xuu6000, cch, cda) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(app(ty_Either, eba), ebb)) -> new_esEs6(xuu3110000, xuu6000, eba, ebb) new_primCmpNat1(Succ(xuu50000), Zero) -> GT new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, app(app(ty_Either, cfg), cfh)) -> new_lt15(xuu50000, xuu51000, cfg, cfh) new_primPlusInt(Neg(xuu5320), Neg(xuu1210)) -> Neg(new_primPlusNat1(xuu5320, xuu1210)) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_esEs29(xuu22, xuu17, app(ty_Maybe, bce)) -> new_esEs5(xuu22, xuu17, bce) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Char, eh) -> new_ltEs5(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_Either, cdh), cea)) -> new_ltEs7(xuu50000, xuu51000, cdh, cea) new_esEs13(False, False) -> True new_lt20(xuu50000, xuu51000, app(ty_[], hg)) -> new_lt7(xuu50000, xuu51000, hg) new_primCmpNat0(xuu5000, Zero) -> GT new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, bfg) -> new_esEs19(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs7(xuu50000, xuu51000, bab, bac, bad) new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_compare30(xuu50000, xuu51000, ty_@0) -> new_compare6(xuu50000, xuu51000) new_primCmpInt0(Branch(xuu530, xuu531, xuu532, xuu533, xuu534), xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu532, new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, Branch(xuu530, xuu531, xuu532, xuu533, xuu534), h, ba, bb)), Pos(Succ(Succ(Zero)))) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu53, True, h, ba, bb) -> new_mkBranch(Zero, Left(xuu600), xuu61, xuu53, xuu64, app(app(ty_Either, h), ba), bb) new_asAs(True, xuu148) -> xuu148 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare19(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, ce), cf)) -> new_esEs6(xuu3110001, xuu6001, ce, cf) new_esEs24(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Right(xuu311000), Left(xuu600), False, h, ba), GT), h, ba, bb) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(ty_@2, dbf), dbg)) -> new_ltEs9(xuu5000, xuu5100, dbf, dbg) 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_lt20(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Right(xuu6000), bff, bfg) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), bff, bfg) -> False new_esEs22(xuu3110000, xuu6000, app(ty_[], ccc)) -> new_esEs11(xuu3110000, xuu6000, ccc) new_esEs20(xuu3110002, xuu6002, app(ty_Maybe, bhf)) -> new_esEs5(xuu3110002, xuu6002, bhf) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bef), beg)) -> new_esEs4(xuu3110000, xuu6000, bef, beg) new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs24(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_primPlusInt(Pos(xuu5320), Neg(xuu1210)) -> new_primMinusNat0(xuu5320, xuu1210) new_primPlusInt(Neg(xuu5320), Pos(xuu1210)) -> new_primMinusNat0(xuu1210, xuu5320) new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, Branch(xuu5340, xuu5341, xuu5342, xuu5343, xuu5344), False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu5340, xuu5341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu530, xuu531, xuu533, xuu5343, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Left(xuu600), xuu61, xuu5344, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, dbd), dbe)) -> new_ltEs9(xuu5000, xuu5100, dbd, dbe) new_gt(xuu114, xuu113) -> new_esEs8(new_compare28(xuu114, xuu113), GT) new_lt16(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) new_ltEs21(xuu50001, xuu51001, ty_Bool) -> new_ltEs4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, ty_Int) -> new_ltEs17(xuu50001, xuu51001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, bee)) -> new_esEs16(xuu3110000, xuu6000, bee) new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu64, xuu53, new_gt(new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu53, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu53, h, ba, bb))), h, ba, bb) new_primCompAux00(xuu203, EQ) -> xuu203 new_ltEs21(xuu50001, xuu51001, ty_Double) -> new_ltEs8(xuu50001, xuu51001) new_ltEs21(xuu50001, xuu51001, app(app(ty_Either, def), deg)) -> new_ltEs7(xuu50001, xuu51001, def, deg) new_addToFM_C25(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, eb, ec, ed) -> new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, eb), eb, ec), GT), eb, ec, ed) new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare4(:(xuu50000, xuu50001), [], ee) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(Left(xuu50000), Left(xuu51000), ty_@0, eh) -> new_ltEs12(xuu50000, xuu51000) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat2(xuu510, xuu5000) new_esEs27(xuu3110000, xuu6000, app(ty_Ratio, dde)) -> new_esEs16(xuu3110000, xuu6000, dde) new_compare10(xuu50000, xuu51000, False) -> GT new_esEs27(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu50001, xuu51001, ty_Char) -> new_esEs12(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_Maybe, cff)) -> new_esEs5(xuu50000, xuu51000, cff) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba, bb) -> xuu642 new_esEs30(xuu311000, xuu600, app(ty_Maybe, bdg)) -> new_esEs5(xuu311000, xuu600, bdg) new_esEs9(xuu3110001, xuu6001, app(ty_[], bf)) -> new_esEs11(xuu3110001, xuu6001, bf) new_primCmpNat1(Zero, Zero) -> EQ new_compare111(xuu50000, xuu51000, False) -> GT new_ltEs18(xuu50002, xuu51002, app(ty_Maybe, dab)) -> new_ltEs11(xuu50002, xuu51002, dab) new_esEs32(xuu39, xuu34, app(app(ty_Either, bbh), bca)) -> new_esEs6(xuu39, xuu34, bbh, bca) new_ltEs16(xuu5000, xuu5100, hh) -> new_fsEs(new_compare16(xuu5000, xuu5100, hh)) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_ltEs11(Nothing, Just(xuu51000), cdd) -> True new_ltEs21(xuu50001, xuu51001, ty_Ordering) -> new_ltEs14(xuu50001, xuu51001) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, Branch(xuu450, xuu451, xuu452, xuu453, xuu454), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, xuu454, new_lt19(new_sizeFM(xuu454, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu453, h, ba, bb))), h, ba, bb) new_esEs31(xuu311000, xuu600, app(ty_Maybe, bfh)) -> new_esEs5(xuu311000, xuu600, bfh) new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba, bb) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba, bb) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs31(xuu311000, xuu600, app(app(ty_Either, bgh), bha)) -> new_esEs6(xuu311000, xuu600, bgh, bha) new_compare210(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs4(xuu50000, xuu51000)) new_lt12(xuu50001, xuu51001, ty_Ordering) -> new_lt8(xuu50001, xuu51001) new_compare24(xuu50000, xuu51000, False) -> new_compare10(xuu50000, xuu51000, new_ltEs14(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, cdd)) -> new_ltEs11(xuu5000, xuu5100, cdd) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, bfg) -> new_esEs15(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) new_lt12(xuu50001, xuu51001, ty_@0) -> new_lt4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, app(ty_[], dda)) -> new_esEs11(xuu3110000, xuu6000, dda) new_compare30(xuu50000, xuu51000, ty_Float) -> new_compare17(xuu50000, xuu51000) new_lt20(xuu50000, xuu51000, app(ty_Maybe, bcd)) -> new_lt14(xuu50000, xuu51000, bcd) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare15(xuu50000, xuu51000), LT) new_ltEs4(True, False) -> False new_ltEs17(xuu5000, xuu5100) -> new_fsEs(new_compare28(xuu5000, xuu5100)) new_esEs32(xuu39, xuu34, app(app(ty_@2, bbf), bbg)) -> new_esEs4(xuu39, xuu34, bbf, bbg) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, app(app(ty_@2, eag), eah)) -> new_esEs4(xuu3110000, xuu6000, eag, eah) new_ltEs18(xuu50002, xuu51002, app(ty_[], dba)) -> new_ltEs6(xuu50002, xuu51002, dba) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs18(xuu50002, xuu51002, app(app(ty_@2, chh), daa)) -> new_ltEs9(xuu50002, xuu51002, chh, daa) new_compare24(xuu50000, xuu51000, True) -> EQ new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, app(app(ty_Either, caf), cag)) -> new_esEs6(xuu3110002, xuu6002, caf, cag) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Right(xuu311000), xuu31101, h, ba, bb), h, ba, bb) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs32(xuu39, xuu34, app(ty_Ratio, bbe)) -> new_esEs16(xuu39, xuu34, bbe) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_compare4([], [], ee) -> EQ new_lt4(xuu50000, xuu51000) -> new_esEs8(new_compare6(xuu50000, xuu51000), LT) new_compare211(xuu50000, xuu51000, True, ef, eg) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu3110001, xuu6001, app(ty_[], cba)) -> new_esEs11(xuu3110001, xuu6001, cba) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_@2, cde), cdf)) -> new_ltEs9(xuu50000, xuu51000, cde, cdf) new_lt11(xuu50000, xuu51000, app(ty_[], cge)) -> new_lt7(xuu50000, xuu51000, cge) new_ltEs4(False, False) -> True new_esEs28(xuu50000, xuu51000, app(ty_Maybe, bcd)) -> new_esEs5(xuu50000, xuu51000, bcd) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), baa) -> new_asAs(new_esEs26(xuu3110000, xuu6000, baa), new_esEs25(xuu3110001, xuu6001, baa)) new_sizeFM0(Branch(xuu2360, xuu2361, xuu2362, xuu2363, xuu2364), bcb, bcc) -> xuu2362 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat2(Zero, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare110(xuu50000, xuu51000, True, bab, bac, bad) -> LT new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) new_ltEs20(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Integer) -> new_ltEs10(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_lt17(xuu50000, xuu51000, bab, bac, bad) -> new_esEs8(new_compare29(xuu50000, xuu51000, bab, bac, bad), LT) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, ty_Integer) -> new_compare19(xuu50000, xuu51000) new_esEs29(xuu22, xuu17, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs7(xuu22, xuu17, bcg, bch, bda) new_esEs31(xuu311000, xuu600, app(app(ty_@2, bgf), bgg)) -> new_esEs4(xuu311000, xuu600, bgf, bgg) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs17(xuu39, xuu34) new_compare15(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_not(False) -> True new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(xuu600, xuu61, xuu64, xuu45, new_gt(new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu45, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu45, h, ba, bb))), h, ba, bb) new_ltEs20(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, eb, ec, ed) -> Branch(Left(xuu22), new_addListToFM0(xuu18, xuu23, ed), xuu19, xuu20, xuu21) new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(xuu3110002, xuu6002, bhh, caa, cab) new_compare7(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, EmptyFM, False, h, ba, bb) -> error([]) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_compare30(xuu50000, xuu51000, ty_Bool) -> new_compare9(xuu50000, xuu51000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs21(xuu50001, xuu51001, app(ty_Maybe, dee)) -> new_ltEs11(xuu50001, xuu51001, dee) new_esEs29(xuu22, xuu17, app(app(ty_Either, bde), bdf)) -> new_esEs6(xuu22, xuu17, bde, bdf) new_ltEs12(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) new_lt20(xuu50000, xuu51000, app(app(ty_@2, ef), eg)) -> new_lt5(xuu50000, xuu51000, ef, eg) new_addToFM_C0(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Left(xuu311000), Right(xuu600), False, h, ba), LT), h, ba, bb) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs7(xuu311000, xuu600, bfc, bfd, bfe) new_mkBranch(xuu232, xuu233, xuu234, xuu235, xuu236, bcb, bcc) -> Branch(xuu233, xuu234, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu235, bcb, bcc)), new_sizeFM0(xuu236, bcb, bcc)), xuu235, xuu236) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, bfg) -> new_esEs18(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_compare30(xuu50000, xuu51000, ty_Double) -> new_compare14(xuu50000, xuu51000) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs31(xuu311000, xuu600, app(ty_Ratio, bge)) -> new_esEs16(xuu311000, xuu600, bge) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, bfg) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu3110000, xuu6000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs7(xuu3110000, xuu6000, ddb, ddc, ddd) new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch0(xuu600, xuu61, new_addToFM_C0(xuu63, Left(xuu311000), xuu31101, h, ba, bb), xuu64, h, ba, bb) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_primPlusNat0(Succ(xuu1300), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1300, xuu600000))) new_compare30(xuu50000, xuu51000, app(ty_Maybe, dfg)) -> new_compare25(xuu50000, xuu51000, dfg) new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_compare11(xuu50000, xuu51000, True, ef, eg) -> LT new_ltEs20(xuu5000, xuu5100, app(ty_[], dcg)) -> new_ltEs6(xuu5000, xuu5100, dcg) new_primCmpNat1(Zero, Succ(xuu51000)) -> LT new_esEs30(xuu311000, xuu600, app(app(ty_Either, bff), bfg)) -> new_esEs6(xuu311000, xuu600, bff, bfg) new_sr0(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare30(xuu50000, xuu51000, ty_Char) -> new_compare7(xuu50000, xuu51000) new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs19(xuu39, xuu34) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dhd), bfg) -> new_esEs16(xuu3110000, xuu6000, dhd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(xuu50000, xuu51000, True) -> LT new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs17(xuu311000, xuu600) new_primPlusNat1(Zero, Zero) -> Zero new_compare26(xuu50000, xuu51000, False, bcd) -> new_compare112(xuu50000, xuu51000, new_ltEs11(xuu50000, xuu51000, bcd), bcd) new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, app(ty_Ratio, dah)) -> new_ltEs16(xuu50002, xuu51002, dah) new_ltEs14(LT, EQ) -> True new_lt20(xuu50000, xuu51000, app(app(ty_Either, bhd), bhe)) -> new_lt15(xuu50000, xuu51000, bhd, bhe) new_lt12(xuu50001, xuu51001, app(app(ty_@2, cgf), cgg)) -> new_lt5(xuu50001, xuu51001, cgf, cgg) new_ltEs15(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), cfa, cfb, cfc) -> new_pePe(new_lt11(xuu50000, xuu51000, cfa), new_asAs(new_esEs24(xuu50000, xuu51000, cfa), new_pePe(new_lt12(xuu50001, xuu51001, cfb), new_asAs(new_esEs23(xuu50001, xuu51001, cfb), new_ltEs18(xuu50002, xuu51002, cfc))))) new_esEs31(xuu311000, xuu600, app(ty_[], bga)) -> new_esEs11(xuu311000, xuu600, bga) new_compare27(xuu50000, xuu51000, False, bab, bac, bad) -> new_compare110(xuu50000, xuu51000, new_ltEs15(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare23(Right(xuu5000), Left(xuu5100), False, dbb, dbc) -> GT new_esEs27(xuu3110000, xuu6000, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu3110000, xuu6000, ddf, ddg) new_esEs27(xuu3110000, xuu6000, app(app(ty_Either, ddh), dea)) -> new_esEs6(xuu3110000, xuu6000, ddh, dea) new_compare30(xuu50000, xuu51000, app(app(ty_@2, dfe), dff)) -> new_compare8(xuu50000, xuu51000, dfe, dff) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Ratio, gb), eh) -> new_ltEs16(xuu50000, xuu51000, gb) new_mkBalBranch6MkBalBranch4(xuu600, xuu61, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), xuu45, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu45, new_lt19(new_sizeFM(xuu643, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba, bb))), h, ba, bb) new_compare6(@0, @0) -> EQ new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, eb, ec, ed) -> new_mkBalBranch(xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, Left(xuu22), xuu23, eb, ec, ed), eb, ec, ed) new_esEs29(xuu22, xuu17, app(ty_[], bcf)) -> new_esEs11(xuu22, xuu17, bcf) new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, Branch(xuu4540, xuu4541, xuu4542, xuu4543, xuu4544), False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4540, xuu4541, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu450, xuu451, xuu453, xuu4543, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Right(xuu600), xuu61, xuu4544, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_esEs28(xuu50000, xuu51000, app(app(ty_@2, ef), eg)) -> new_esEs4(xuu50000, xuu51000, ef, eg) new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, EmptyFM, xuu644, xuu53, False, h, ba, bb) -> error([]) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, Branch(xuu530, xuu531, xuu532, xuu533, xuu534), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, xuu534, new_lt19(new_sizeFM(xuu534, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu533, h, ba, bb))), h, ba, bb) new_lt11(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_mkBalBranch6MkBalBranch4(xuu600, xuu61, EmptyFM, xuu45, True, h, ba, bb) -> error([]) new_mkBalBranch0(xuu600, xuu61, xuu45, xuu64, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu45, new_esEs8(new_primCmpInt1(xuu45, xuu600, xuu61, xuu64, h, ba, bb), LT), h, ba, bb) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dha), dhb), dhc), bfg) -> new_esEs7(xuu3110000, xuu6000, dha, dhb, dhc) new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs12(xuu311000, xuu600) new_compare29(xuu50000, xuu51000, bab, bac, bad) -> new_compare27(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bae, baf, bag) -> Branch(Right(xuu39), new_addListToFM0(xuu35, xuu40, bag), xuu36, xuu37, xuu38) new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu53, h, ba, bb) -> new_sizeFM(xuu53, h, ba, bb) new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, EmptyFM, True, h, ba, bb) -> error([]) new_ltEs18(xuu50002, xuu51002, ty_Bool) -> new_ltEs4(xuu50002, xuu51002) new_ltEs11(Just(xuu50000), Nothing, cdd) -> False new_esEs28(xuu50000, xuu51000, app(ty_Ratio, deb)) -> new_esEs16(xuu50000, xuu51000, deb) new_primMinusNat0(Zero, Succ(xuu12100)) -> Neg(Succ(xuu12100)) new_ltEs11(Nothing, Nothing, cdd) -> True new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, app(ty_Ratio, dfc)) -> new_ltEs16(xuu50001, xuu51001, dfc) new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch(xuu600, xuu61, new_addToFM_C0(xuu63, Right(xuu311000), xuu31101, h, ba, bb), xuu64, h, ba, bb) new_esEs27(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare8(xuu50000, xuu51000, ef, eg) -> new_compare211(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, ef, eg), ef, eg) new_primCmpNat2(Succ(xuu5100), xuu5000) -> new_primCmpNat1(xuu5100, xuu5000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu45, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Right(xuu600), xuu61, xuu45, xuu643, app(app(ty_Either, h), ba), bb), xuu644, app(app(ty_Either, h), ba), bb) new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs12(xuu39, xuu34) new_esEs29(xuu22, xuu17, app(app(ty_@2, bdc), bdd)) -> new_esEs4(xuu22, xuu17, bdc, bdd) new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs19(xuu22, xuu17) new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> Branch(Right(xuu311000), new_addListToFM0(xuu61, xuu31101, bb), xuu62, xuu63, xuu64) new_esEs29(xuu22, xuu17, app(ty_Ratio, bdb)) -> new_esEs16(xuu22, xuu17, bdb) new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bhd), bhe)) -> new_esEs6(xuu50000, xuu51000, bhd, bhe) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, ty_Integer) -> new_esEs15(xuu50001, xuu51001) new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), gd, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs15(xuu50000, xuu51000, hb, hc, hd) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu53, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Left(xuu600), xuu61, xuu53, xuu643, app(app(ty_Either, h), ba), bb), xuu644, app(app(ty_Either, h), ba), bb) new_esEs20(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_ltEs20(xuu5000, xuu5100, app(ty_Ratio, dcf)) -> new_ltEs16(xuu5000, xuu5100, dcf) new_esEs11([], [], bfb) -> True new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_esEs30(xuu311000, xuu600, app(ty_[], bfb)) -> new_esEs11(xuu311000, xuu600, bfb) new_asAs(False, xuu148) -> False new_addToFM_C25(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, eb, ec, ed) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, Left(xuu22), xuu23, eb, ec, ed), xuu21, eb, ec, ed) new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) new_compare23(Right(xuu5000), Right(xuu5100), False, dbb, dbc) -> new_compare12(xuu5000, xuu5100, new_ltEs20(xuu5000, xuu5100, dbc), dbb, dbc) new_ltEs14(LT, LT) -> True new_esEs20(xuu3110002, xuu6002, ty_Char) -> new_esEs12(xuu3110002, xuu6002) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Maybe, fc), eh) -> new_ltEs11(xuu50000, xuu51000, fc) new_ltEs21(xuu50001, xuu51001, ty_Char) -> new_ltEs5(xuu50001, xuu51001) new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt17(xuu50000, xuu51000, bab, bac, bad) new_lt10(xuu50000, xuu51000) -> new_esEs8(new_compare19(xuu50000, xuu51000), LT) new_esEs27(xuu3110000, xuu6000, app(ty_Maybe, dch)) -> new_esEs5(xuu3110000, xuu6000, dch) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_@2, fa), fb), eh) -> new_ltEs9(xuu50000, xuu51000, fa, fb) new_esEs23(xuu50001, xuu51001, ty_@0) -> new_esEs14(xuu50001, xuu51001) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(xuu50000, xuu51000, False, bcd) -> GT new_sizeFM0(EmptyFM, bcb, bcc) -> Pos(Zero) new_ltEs7(Right(xuu50000), Right(xuu51000), gd, ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_compare12(xuu160, xuu161, True, bhb, bhc) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Float, eh) -> new_ltEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), bff, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs21(xuu50001, xuu51001, app(ty_[], dfd)) -> new_ltEs6(xuu50001, xuu51001, dfd) The set Q consists of the following terms: new_esEs8(EQ, EQ) new_compare30(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Float) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4, x5) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, x2, x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare4(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13, x14) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs6(x0, x1, x2) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_compare30(x0, x1, ty_Double) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) new_compare25(x0, x1, x2) new_lt14(x0, x1, x2) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8, x9) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Float) new_primCmpNat1(Zero, Zero) new_pePe(False, x0) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_ltEs19(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Bool) new_esEs5(Nothing, Just(x0), x1) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMinusNat0(Zero, Zero) new_esEs27(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs12(Char(x0), Char(x1)) new_primCmpNat1(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Double) new_lt15(x0, x1, x2, x3) new_esEs30(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs30(x0, x1, ty_Ordering) new_ltEs14(LT, LT) new_esEs27(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_compare27(x0, x1, True, x2, x3, x4) new_lt11(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8, x9) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, True, x2, x3, x4) new_compare6(@0, @0) new_lt12(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_sIZE_RATIO new_esEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare10(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt9(x0, x1) new_compare9(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13, x14) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat1(Succ(x0), Zero) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt13(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch40(x0, x1, EmptyFM, x2, True, x3, x4, x5) new_lt11(x0, x1, ty_Ordering) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13, x14) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_compare211(x0, x1, False, x2, x3) new_compare24(x0, x1, False) new_esEs28(x0, x1, ty_@0) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_primPlusInt(Neg(x0), Neg(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_[], x2)) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_esEs11([], [], x0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_primEqNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_primMulInt(Neg(x0), Neg(x1)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_compare28(x0, x1) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_compare110(x0, x1, False, x2, x3, x4) new_compare111(x0, x1, False) new_primCompAux0(x0, x1, x2, x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) new_esEs29(x0, x1, ty_@0) new_compare4(:(x0, x1), [], x2) new_compare23(Left(x0), Left(x1), False, x2, x3) new_esEs10(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_ltEs14(LT, GT) new_esEs21(x0, x1, ty_Double) new_ltEs14(GT, LT) new_compare30(x0, x1, ty_Integer) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs23(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch30(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_esEs32(x0, x1, ty_Integer) new_compare23(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5) new_ltEs11(Nothing, Nothing, x0) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs10(x0, x1) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs8(GT, GT) new_esEs5(Nothing, Nothing, x0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare19(Integer(x0), Integer(x1)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare26(x0, x1, True, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(False, True) new_esEs13(True, False) new_esEs27(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_compare23(Right(x0), Right(x1), False, x2, x3) new_lt11(x0, x1, ty_Bool) new_esEs8(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs8(x0, x1) new_esEs28(x0, x1, app(ty_[], x2)) 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_primMinusNat0(Succ(x0), Zero) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Float) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare30(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs32(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_sr(Integer(x0), Integer(x1)) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, True, x4, x5, x6) new_esEs27(x0, x1, ty_Integer) new_fsEs(x0) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5, x6) new_compare11(x0, x1, True, x2, x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt1(EmptyFM, x0, x1, x2, x3, x4, x5) new_esEs31(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_lt17(x0, x1, x2, x3, x4) new_esEs20(x0, x1, ty_Char) new_primCmpNat0(x0, Zero) new_ltEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare210(x0, x1, False) new_esEs24(x0, x1, ty_Int) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_compare30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_compare4([], [], x0) new_esEs11([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Bool) new_compare18(x0, x1, False, x2, x3) new_compare23(Left(x0), Right(x1), False, x2, x3) new_compare23(Right(x0), Left(x1), False, x2, x3) new_gt(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Float) new_sizeFM0(EmptyFM, x0, x1) new_sizeFM(EmptyFM, x0, x1, x2) new_lt20(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare18(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_@0) new_compare4([], :(x0, x1), x2) new_compare111(x0, x1, True) new_sr0(x0, x1) new_esEs31(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_esEs30(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_primMinusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Float) new_lt18(x0, x1, x2) new_compare29(x0, x1, x2, x3, x4) new_esEs10(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13, x14) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True) new_ltEs14(EQ, EQ) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Int) new_compare112(x0, x1, True, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs17(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt16(x0, x1) new_lt12(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) new_primMinusNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs15(Integer(x0), Integer(x1)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_compare15(x0, x1) new_lt11(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Succ(x0)) new_mkBalBranch6MkBalBranch40(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat2(Zero, x0) new_esEs29(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare211(x0, x1, True, x2, x3) new_ltEs18(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_ltEs11(Just(x0), Just(x1), ty_Int) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5, x6) new_esEs20(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, ty_Char) new_compare12(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_ltEs18(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_not(True) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare26(x0, x1, False, x2) new_ltEs21(x0, x1, ty_Char) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt6(x0, x1) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs9(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs31(x0, x1, ty_Char) new_compare10(x0, x1, True) new_ltEs18(x0, x1, ty_Double) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs9(x0, x1, ty_Ordering) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_esEs22(x0, x1, ty_Int) new_addListToFM0(x0, x1, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs10(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_esEs11(:(x0, x1), :(x2, x3), x4) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Bool) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpNat2(Succ(x0), x1) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) new_primCompAux00(x0, LT) new_esEs22(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_compare13(x0, x1, x2, x3) new_compare12(x0, x1, False, x2, x3) new_esEs32(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_compare27(x0, x1, False, x2, x3, x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Float) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_@0) new_ltEs11(Nothing, Just(x0), x1) new_esEs5(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs14(@0, @0) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_ltEs14(GT, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt12(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs29(x0, x1, ty_Bool) new_lt5(x0, x1, x2, x3) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Integer) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs19(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs4(False, False) new_primPlusInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs19(Float(x0, x1), Float(x2, x3)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs20(x0, x1, ty_@0) new_pePe(True, x0) new_compare210(x0, x1, True) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, False, x4, x5, x6) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_compare11(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Double) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs32(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8, x9) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt12(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt7(x0, x1, x2) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs13(False, False) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_lt8(x0, x1) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_ltEs13(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_ltEs11(Just(x0), Nothing, x1) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_esEs24(x0, x1, ty_Double) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) new_ltEs5(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_emptyFM(x0, x1, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, ty_Integer) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt12(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8, x9) new_compare112(x0, x1, False, x2) new_ltEs16(x0, x1, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs11(:(x0, x1), [], x2) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs10(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_primMulNat0(Succ(x0), Zero) new_compare7(Char(x0), Char(x1)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_mkBalBranch6MkBalBranch30(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Double) 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_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 ---------------------------------------- (31) YES ---------------------------------------- (32) 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. ---------------------------------------- (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_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) 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_primCompAux(xuu50000, xuu51000, xuu189, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare5(xuu50000, xuu51000, bfb, bfc, bfd) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), bda) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) new_lt2(xuu50000, xuu51000, bf, bg, bh) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], bdb), bda) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu50001, xuu51001, cf, cg) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bab), bac), bad)), he), hf), bda) -> new_lt2(xuu50000, xuu51000, bab, bac, bad) new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_Maybe, fa)), eh), bda) -> new_ltEs0(xuu50000, xuu51000, fa) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(ty_Either, cf), cg)), bda) -> new_ltEs1(xuu50001, xuu51001, cf, cg) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(ty_Maybe, bcb)) -> new_ltEs0(xuu50002, xuu51002, bcb) new_compare3(xuu50000, xuu51000, bd, be) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_Maybe, bc), bb) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) new_ltEs3(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_compare(xuu50001, xuu51001, bdb) new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(ty_@2, gb), gc)) -> new_ltEs(xuu50000, xuu51000, gb, gc) new_primCompAux(xuu50000, xuu51000, xuu189, app(app(ty_@2, bee), bef)) -> new_compare0(xuu50000, xuu51000, bee, bef) new_lt(xuu50000, xuu51000, h, ba) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(ty_Maybe, gd)) -> new_ltEs0(xuu50000, xuu51000, gd) new_lt3(xuu50000, xuu51000, ca) -> new_compare(xuu50000, xuu51000, ca) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_@2, hc), hd), he, hf) -> new_lt(xuu50000, xuu51000, hc, hd) new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_Either, fb), fc)), eh), bda) -> new_ltEs1(xuu50000, xuu51000, fb, fc) new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(xuu50000, xuu51000, ge, gf) new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(ty_[], hb)) -> new_ltEs3(xuu50000, xuu51000, hb) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(ty_Maybe, ce)) -> new_ltEs0(xuu50001, xuu51001, ce) new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_[], fh)), eh), bda) -> new_ltEs3(xuu50000, xuu51000, fh) new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(ty_@2, gb), gc)), bda) -> new_ltEs(xuu50000, xuu51000, gb, gc) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(xuu50001, xuu51001, da, db, dc) new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(ty_Maybe, bdf)) -> new_ltEs0(xuu5000, xuu5100, bdf) new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs2(xuu5000, xuu5100, bea, beb, bec) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_Maybe, hg)), he), hf), bda) -> new_lt0(xuu50000, xuu51000, hg) new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(ty_@2, bdd), bde)) -> new_ltEs(xuu5000, xuu5100, bdd, bde) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_Either, hh), baa)), he), hf), bda) -> new_lt1(xuu50000, xuu51000, hh, baa) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(ty_[], bch)), bda) -> new_ltEs3(xuu50002, xuu51002, bch) new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_@2, ef), eg), eh) -> new_ltEs(xuu50000, xuu51000, ef, eg) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(ty_Maybe, bcb)), bda) -> new_ltEs0(xuu50002, xuu51002, bcb) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_Either, bd), be), bb) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(ty_Maybe, bba), hf) -> new_lt0(xuu50001, xuu51001, bba) new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_Maybe, dg)) -> new_ltEs0(xuu50000, xuu51000, dg) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_Maybe, hg), he, hf) -> new_lt0(xuu50000, xuu51000, hg) new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_@2, de), df)), bda) -> new_ltEs(xuu50000, xuu51000, de, df) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(ty_Either, bbb), bbc), hf) -> new_lt1(xuu50001, xuu51001, bbb, bbc) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(ty_@2, bbh), bca)), bda) -> new_ltEs(xuu50002, xuu51002, bbh, bca) new_compare0(xuu50000, xuu51000, h, ba) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(ty_Either, bdg), bdh)) -> new_ltEs1(xuu5000, xuu5100, bdg, bdh) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_@2, h), ba), bb) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu50001, xuu51001, cc, cd) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_Either, bd), be)), bb), bda) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(ty_Either, bbb), bbc)), hf), bda) -> new_lt1(xuu50001, xuu51001, bbb, bbc) new_compare5(xuu50000, xuu51000, bf, bg, bh) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), bda) -> new_ltEs(xuu50001, xuu51001, cc, cd) new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_Maybe, fa), eh) -> new_ltEs0(xuu50000, xuu51000, fa) new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(ty_Either, ge), gf)), bda) -> new_ltEs1(xuu50000, xuu51000, ge, gf) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(app(ty_@3, bab), bac), bad), he, hf) -> new_lt2(xuu50000, xuu51000, bab, bac, bad) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_[], ca), bb) -> new_compare(xuu50000, xuu51000, ca) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_Maybe, bc)), bb), bda) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(ty_Maybe, bba)), hf), bda) -> new_lt0(xuu50001, xuu51001, bba) new_lt1(xuu50000, xuu51000, bd, be) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(app(ty_@3, gg), gh), ha)), bda) -> new_ltEs2(xuu50000, xuu51000, gg, gh, ha) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(ty_[], bbg)), hf), bda) -> new_lt3(xuu50001, xuu51001, bbg) new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_@2, de), df)) -> new_ltEs(xuu50000, xuu51000, de, df) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(ty_[], dd)) -> new_ltEs3(xuu50001, xuu51001, dd) new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(xuu50000, xuu51000, eb, ec, ed) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_Either, hh), baa), he, hf) -> new_lt1(xuu50000, xuu51000, hh, baa) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(ty_[], bch)) -> new_ltEs3(xuu50002, xuu51002, bch) new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(ty_[], hb)), bda) -> new_ltEs3(xuu50000, xuu51000, hb) new_primCompAux(xuu50000, xuu51000, xuu189, app(ty_Maybe, beg)) -> new_compare1(xuu50000, xuu51000, beg) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_[], ca)), bb), bda) -> new_compare(xuu50000, xuu51000, ca) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(ty_Maybe, ce)), bda) -> new_ltEs0(xuu50001, xuu51001, ce) new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_Either, dh), ea)) -> new_ltEs1(xuu50000, xuu51000, dh, ea) new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(ty_[], bed)) -> new_ltEs3(xuu5000, xuu5100, bed) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_@2, hc), hd)), he), hf), bda) -> new_lt(xuu50000, xuu51000, hc, hd) new_ltEs3(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(ty_Either, bcc), bcd)) -> new_ltEs1(xuu50002, xuu51002, bcc, bcd) new_compare1(xuu50000, xuu51000, bc) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(ty_[], dd)), bda) -> new_ltEs3(xuu50001, xuu51001, dd) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(ty_Either, bcc), bcd)), bda) -> new_ltEs1(xuu50002, xuu51002, bcc, bcd) new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], bdb), bda) -> new_compare(xuu50001, xuu51001, bdb) new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, fd), ff), fg), eh) -> new_ltEs2(xuu50000, xuu51000, fd, ff, fg) new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(xuu50000, xuu51000, gg, gh, ha) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(ty_@2, bag), bah)), hf), bda) -> new_lt(xuu50001, xuu51001, bag, bah) new_compare20(xuu50000, xuu51000, False, bc) -> new_ltEs0(xuu50000, xuu51000, bc) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(ty_[], bbg), hf) -> new_lt3(xuu50001, xuu51001, bbg) new_lt0(xuu50000, xuu51000, bc) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed)), bda) -> new_ltEs2(xuu50000, xuu51000, eb, ec, ed) new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_Either, fb), fc), eh) -> new_ltEs1(xuu50000, xuu51000, fb, fc) new_compare22(xuu50000, xuu51000, False, bf, bg, bh) -> new_ltEs2(xuu50000, xuu51000, bf, bg, bh) new_primCompAux(xuu50000, xuu51000, xuu189, app(ty_[], bfe)) -> new_compare(xuu50000, xuu51000, bfe) new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(app(ty_@3, bf), bg), bh), bb) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xuu50002, xuu51002, bce, bcf, bcg) new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_[], ee)), bda) -> new_ltEs3(xuu50000, xuu51000, ee) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_[], bae)), he), hf), bda) -> new_lt3(xuu50000, xuu51000, bae) new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_Maybe, dg)), bda) -> new_ltEs0(xuu50000, xuu51000, dg) new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_[], ee)) -> new_ltEs3(xuu50000, xuu51000, ee) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(ty_@2, bbh), bca)) -> new_ltEs(xuu50002, xuu51002, bbh, bca) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(ty_@2, bag), bah), hf) -> new_lt(xuu50001, xuu51001, bag, bah) new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(app(ty_@3, fd), ff), fg)), eh), bda) -> new_ltEs2(xuu50000, xuu51000, fd, ff, fg) new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_[], fh), eh) -> new_ltEs3(xuu50000, xuu51000, fh) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(app(ty_@3, bbd), bbe), bbf)), hf), bda) -> new_lt2(xuu50001, xuu51001, bbd, bbe, bbf) new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_compare(xuu50001, xuu51001, bdb) new_compare2(xuu50000, xuu51000, False, h, ba) -> new_ltEs(xuu50000, xuu51000, h, ba) new_primCompAux(xuu50000, xuu51000, xuu189, app(app(ty_Either, beh), bfa)) -> new_compare3(xuu50000, xuu51000, beh, bfa) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, da), db), dc)), bda) -> new_ltEs2(xuu50001, xuu51001, da, db, dc) new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(app(ty_@3, bce), bcf), bcg)), bda) -> new_ltEs2(xuu50002, xuu51002, bce, bcf, bcg) new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(ty_Maybe, gd)), bda) -> new_ltEs0(xuu50000, xuu51000, gd) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(app(ty_@3, bbd), bbe), bbf), hf) -> new_lt2(xuu50001, xuu51001, bbd, bbe, bbf) new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), bda) -> new_ltEs1(xuu50000, xuu51000, dh, ea) new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_[], bae), he, hf) -> new_lt3(xuu50000, xuu51000, bae) new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(app(ty_@3, bf), bg), bh)), bb), bda) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_@2, ef), eg)), eh), bda) -> new_ltEs(xuu50000, xuu51000, ef, eg) The TRS R consists of the following rules: new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_Either, fb), fc), eh) -> new_ltEs7(xuu50000, xuu51000, fb, fc) new_ltEs7(Right(xuu50000), Left(xuu51000), ga, eh) -> False new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(ty_[], hb)) -> new_ltEs6(xuu50000, xuu51000, hb) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare28(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) new_lt11(xuu50000, xuu51000, app(app(ty_@2, hc), hd)) -> new_lt5(xuu50000, xuu51000, hc, hd) new_lt14(xuu50000, xuu51000, bc) -> new_esEs8(new_compare25(xuu50000, xuu51000, bc), LT) new_pePe(True, xuu179) -> True new_primCmpNat0(xuu5000, Succ(xuu5100)) -> new_primCmpNat1(xuu5000, xuu5100) new_compare12(xuu160, xuu161, False, cca, ccb) -> GT new_ltEs18(xuu50002, xuu51002, app(app(ty_Either, bcc), bcd)) -> new_ltEs7(xuu50002, xuu51002, bcc, bcd) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_ltEs18(xuu50002, xuu51002, ty_Ordering) -> new_ltEs14(xuu50002, xuu51002) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs7(xuu3110001, xuu6001, ceb, cec, ced) new_lt7(xuu50000, xuu51000, ca) -> new_esEs8(new_compare4(xuu50000, xuu51000, ca), LT) new_compare112(xuu50000, xuu51000, True, bc) -> LT new_esEs23(xuu50001, xuu51001, ty_Int) -> new_esEs17(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_[], bae)) -> new_esEs11(xuu50000, xuu51000, bae) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt20(xuu50000, xuu51000, app(ty_Ratio, dba)) -> new_lt18(xuu50000, xuu51000, dba) new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_esEs24(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, cgd)) -> new_ltEs16(xuu5000, xuu5100, cgd) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_ltEs9(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, bb) -> new_pePe(new_lt20(xuu50000, xuu51000, cb), new_asAs(new_esEs28(xuu50000, xuu51000, cb), new_ltEs21(xuu50001, xuu51001, bb))) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_[], fh), eh) -> new_ltEs6(xuu50000, xuu51000, fh) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Double, eh) -> new_ltEs8(xuu50000, xuu51000) new_compare4(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_primCompAux0(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) new_ltEs10(xuu5000, xuu5100) -> new_fsEs(new_compare19(xuu5000, xuu5100)) new_compare30(xuu50000, xuu51000, ty_Int) -> new_compare28(xuu50000, xuu51000) new_ltEs4(False, True) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(app(ty_@2, gb), gc)) -> new_ltEs9(xuu50000, xuu51000, gb, gc) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_compare30(xuu50000, xuu51000, app(app(ty_Either, beh), bfa)) -> new_compare13(xuu50000, xuu51000, beh, bfa) new_esEs24(xuu50000, xuu51000, app(ty_Ratio, cha)) -> new_esEs16(xuu50000, xuu51000, cha) new_primCmpNat1(Succ(xuu50000), Succ(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs9(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primCompAux0(xuu50000, xuu51000, xuu189, bdb) -> new_primCompAux00(xuu189, new_compare30(xuu50000, xuu51000, bdb)) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_lt12(xuu50001, xuu51001, ty_Float) -> new_lt9(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, fd), ff), fg), eh) -> new_ltEs15(xuu50000, xuu51000, fd, ff, fg) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs27(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs8(GT, GT) -> True new_fsEs(xuu163) -> new_not(new_esEs8(xuu163, GT)) new_compare9(xuu50000, xuu51000) -> new_compare210(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_[], dbf), dbe) -> new_esEs11(xuu3110000, xuu6000, dbf) new_ltEs19(xuu5000, xuu5100, app(ty_[], bdb)) -> new_ltEs6(xuu5000, xuu5100, bdb) new_esEs24(xuu50000, xuu51000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu50000, xuu51000, hc, hd) new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(xuu50002, xuu51002, ty_Int) -> new_ltEs17(xuu50002, xuu51002) new_esEs28(xuu50000, xuu51000, app(ty_[], ca)) -> new_esEs11(xuu50000, xuu51000, ca) new_esEs8(EQ, EQ) -> True new_esEs24(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs27(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs5(xuu5000, xuu5100) new_esEs23(xuu50001, xuu51001, ty_Float) -> new_esEs19(xuu50001, xuu51001) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_not(True) -> False new_esEs9(xuu3110001, xuu6001, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs7(xuu3110001, xuu6001, bgb, bgc, bgd) new_ltEs20(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_primCompAux00(xuu203, LT) -> LT new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt17(xuu50001, xuu51001, bbd, bbe, bbf) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(xuu50000, xuu51000, eb, ec, ed) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_compare25(xuu50000, xuu51000, bc) -> new_compare26(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(ty_[], ccg)) -> new_esEs11(xuu3110002, xuu6002, ccg) new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs10(xuu5000, xuu5100) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, bhg)) -> new_esEs16(xuu3110000, xuu6000, bhg) new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, ty_Ordering) -> new_compare15(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhd, bhe, bhf) new_lt11(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, app(app(ty_Either, bdg), bdh)) -> new_ltEs7(xuu5000, xuu5100, bdg, bdh) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs14(@0, @0) -> True new_ltEs18(xuu50002, xuu51002, ty_Float) -> new_ltEs13(xuu50002, xuu51002) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Bool, eh) -> new_ltEs4(xuu50000, xuu51000) new_lt11(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_compare23(Left(xuu5000), Right(xuu5100), False, bdc, bda) -> LT new_lt12(xuu50001, xuu51001, ty_Integer) -> new_lt10(xuu50001, xuu51001) new_primCompAux00(xuu203, GT) -> GT new_esEs24(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs13(xuu5000, xuu5100) new_ltEs14(EQ, EQ) -> True new_primCmpNat2(Zero, xuu5000) -> LT new_esEs20(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_esEs10(xuu3110000, xuu6000, app(ty_[], bhc)) -> new_esEs11(xuu3110000, xuu6000, bhc) new_ltEs18(xuu50002, xuu51002, ty_Char) -> new_ltEs5(xuu50002, xuu51002) new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT new_esEs20(xuu3110002, xuu6002, app(ty_Ratio, cdc)) -> new_esEs16(xuu3110002, xuu6002, cdc) new_esEs20(xuu3110002, xuu6002, app(app(ty_@2, cdd), cde)) -> new_esEs4(xuu3110002, xuu6002, cdd, cde) new_ltEs14(EQ, LT) -> False new_lt5(xuu50000, xuu51000, h, ba) -> new_esEs8(new_compare8(xuu50000, xuu51000, h, ba), LT) new_lt11(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Integer) -> new_ltEs10(xuu50002, xuu51002) new_primPlusNat1(Succ(xuu53200), Succ(xuu12100)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu12100))) new_lt12(xuu50001, xuu51001, app(ty_[], bbg)) -> new_lt7(xuu50001, xuu51001, bbg) new_ltEs21(xuu50001, xuu51001, ty_@0) -> new_ltEs12(xuu50001, xuu51001) new_lt11(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt17(xuu50000, xuu51000, bab, bac, bad) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(ty_Maybe, dch)) -> new_esEs5(xuu3110000, xuu6000, dch) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ccc, ccd, cce) -> new_asAs(new_esEs22(xuu3110000, xuu6000, ccc), new_asAs(new_esEs21(xuu3110001, xuu6001, ccd), new_esEs20(xuu3110002, xuu6002, cce))) new_compare210(xuu50000, xuu51000, True) -> EQ new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Ratio, cgf)) -> new_ltEs16(xuu50000, xuu51000, cgf) new_sr(Integer(xuu510000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu510000, xuu500010)) new_compare110(xuu50000, xuu51000, False, bf, bg, bh) -> GT new_lt9(xuu50000, xuu51000) -> new_esEs8(new_compare17(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs5(xuu50000, xuu51000) new_pePe(False, xuu179) -> xuu179 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, ga), eh)) -> new_ltEs7(xuu5000, xuu5100, ga, eh) new_esEs27(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu50000, xuu51000, app(ty_[], bfe)) -> new_compare4(xuu50000, xuu51000, bfe) new_esEs23(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare17(xuu5000, xuu5100)) new_lt11(xuu50000, xuu51000, app(ty_Ratio, cha)) -> new_lt18(xuu50000, xuu51000, cha) new_esEs9(xuu3110001, xuu6001, app(ty_Maybe, bfh)) -> new_esEs5(xuu3110001, xuu6001, bfh) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dbd), dbe) -> new_esEs5(xuu3110000, xuu6000, dbd) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cgb), cgc)) -> new_esEs6(xuu3110000, xuu6000, cgb, cgc) new_esEs11(:(xuu3110000, xuu3110001), [], chf) -> False new_esEs11([], :(xuu6000, xuu6001), chf) -> False new_ltEs18(xuu50002, xuu51002, ty_Double) -> new_ltEs8(xuu50002, xuu51002) new_lt11(xuu50000, xuu51000, app(ty_Maybe, hg)) -> new_lt14(xuu50000, xuu51000, hg) new_esEs23(xuu50001, xuu51001, ty_Double) -> new_esEs18(xuu50001, xuu51001) new_lt12(xuu50001, xuu51001, ty_Int) -> new_lt19(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, cee)) -> new_esEs16(xuu3110001, xuu6001, cee) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Ordering, dbe) -> new_esEs8(xuu3110000, xuu6000) new_compare23(xuu500, xuu510, True, bdc, bda) -> EQ new_lt15(xuu50000, xuu51000, bd, be) -> new_esEs8(new_compare13(xuu50000, xuu51000, bd, be), LT) new_ltEs8(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(xuu50000, xuu51000, False, h, ba) -> GT new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, cef), ceg)) -> new_esEs4(xuu3110001, xuu6001, cef, ceg) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_lt11(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_lt12(xuu50001, xuu51001, app(app(ty_Either, bbb), bbc)) -> new_lt15(xuu50001, xuu51001, bbb, bbc) new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs14(xuu5000, xuu5100) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Bool, dbe) -> new_esEs13(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, app(ty_[], bbg)) -> new_esEs11(xuu50001, xuu51001, bbg) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, app(ty_Ratio, dbc)) -> new_compare16(xuu50000, xuu51000, dbc) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Int, eh) -> new_ltEs17(xuu50000, xuu51000) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, cdh)) -> new_esEs5(xuu3110001, xuu6001, cdh) new_lt12(xuu50001, xuu51001, ty_Bool) -> new_lt6(xuu50001, xuu51001) new_ltEs14(EQ, GT) -> True new_esEs5(Nothing, Nothing, cad) -> True new_ltEs14(GT, EQ) -> False new_ltEs20(xuu5000, xuu5100, ty_@0) -> new_ltEs12(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Float) -> new_ltEs13(xuu50001, xuu51001) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(ty_Ratio, dde)) -> new_esEs16(xuu3110000, xuu6000, dde) new_esEs9(xuu3110001, xuu6001, app(ty_Ratio, bge)) -> new_esEs16(xuu3110001, xuu6001, bge) 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), cad) -> False new_esEs5(Just(xuu3110000), Nothing, cad) -> False new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cbe), cbf)) -> new_esEs6(xuu3110000, xuu6000, cbe, cbf) new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(app(ty_Either, ge), gf)) -> new_ltEs7(xuu50000, xuu51000, ge, gf) new_ltEs14(LT, GT) -> True new_esEs24(xuu50000, xuu51000, app(app(ty_Either, hh), baa)) -> new_esEs6(xuu50000, xuu51000, hh, baa) new_ltEs14(GT, GT) -> True new_compare18(xuu153, xuu154, False, cgg, cgh) -> GT new_esEs9(xuu3110001, xuu6001, app(app(ty_@2, bgf), bgg)) -> new_esEs4(xuu3110001, xuu6001, bgf, bgg) new_ltEs21(xuu50001, xuu51001, app(app(app(ty_@3, da), db), dc)) -> new_ltEs15(xuu50001, xuu51001, da, db, dc) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dce), dcf), dbe) -> new_esEs6(xuu3110000, xuu6000, dce, dcf) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cag), cah), cba)) -> new_esEs7(xuu3110000, xuu6000, cag, cah, cba) new_esEs9(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs7(xuu3110000, xuu6000, cfd, cfe, cff) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs4(xuu3110000, xuu6000, bhh, caa) new_primMulNat0(Succ(xuu311000100), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600000)) -> Zero new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, cab), cac)) -> new_esEs6(xuu3110000, xuu6000, cab, cac) new_lt11(xuu50000, xuu51000, ty_Double) -> new_lt13(xuu50000, xuu51000) new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Ordering, eh) -> new_ltEs14(xuu50000, xuu51000) new_compare13(xuu50000, xuu51000, bd, be) -> new_compare23(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) new_lt18(xuu50000, xuu51000, dba) -> new_esEs8(new_compare16(xuu50000, xuu51000, dba), LT) new_esEs24(xuu50000, xuu51000, ty_Char) -> new_esEs12(xuu50000, xuu51000) new_compare26(xuu50000, xuu51000, True, bc) -> EQ new_esEs23(xuu50001, xuu51001, app(ty_Maybe, bba)) -> new_esEs5(xuu50001, xuu51001, bba) new_esEs24(xuu50000, xuu51000, ty_Int) -> new_esEs17(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare27(xuu50000, xuu51000, True, bf, bg, bh) -> EQ new_compare30(xuu50000, xuu51000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare29(xuu50000, xuu51000, bfb, bfc, bfd) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(ty_Ratio, cbh)) -> new_ltEs16(xuu50000, xuu51000, cbh) new_compare18(xuu153, xuu154, True, cgg, cgh) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs7(xuu3110000, xuu6000, ddb, ddc, ddd) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(LT, LT) -> True new_lt12(xuu50001, xuu51001, ty_Char) -> new_lt16(xuu50001, xuu51001) new_compare19(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_compare111(xuu50000, xuu51000, True) -> LT new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs10(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Char, dbe) -> new_esEs12(xuu3110000, xuu6000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Integer, eh) -> new_ltEs10(xuu50000, xuu51000) new_esEs24(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs7(xuu50000, xuu51000, bab, bac, bad) new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) new_primPlusNat1(Zero, Succ(xuu12100)) -> Succ(xuu12100) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bff, bfg) -> new_asAs(new_esEs10(xuu3110000, xuu6000, bff), new_esEs9(xuu3110001, xuu6001, bfg)) new_esEs17(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs18(xuu50002, xuu51002, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs15(xuu50002, xuu51002, bce, bcf, bcg) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(ty_[], dda)) -> new_esEs11(xuu3110000, xuu6000, dda) new_esEs13(True, True) -> True new_esEs11(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), chf) -> new_asAs(new_esEs27(xuu3110000, xuu6000, chf), new_esEs11(xuu3110001, xuu6001, chf)) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_Maybe, dg)) -> new_ltEs11(xuu50000, xuu51000, dg) new_lt11(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs15(xuu5000, xuu5100, bea, beb, bec) new_esEs23(xuu50001, xuu51001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs7(xuu50001, xuu51001, bbd, bbe, bbf) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(ty_Maybe, gd)) -> new_ltEs11(xuu50000, xuu51000, gd) new_lt12(xuu50001, xuu51001, app(ty_Maybe, bba)) -> new_lt14(xuu50001, xuu51001, bba) new_ltEs18(xuu50002, xuu51002, ty_@0) -> new_ltEs12(xuu50002, xuu51002) new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) new_esEs24(xuu50000, xuu51000, ty_Float) -> new_esEs19(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, bhb)) -> new_esEs5(xuu3110000, xuu6000, bhb) new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cfb)) -> new_esEs5(xuu3110000, xuu6000, cfb) new_ltEs5(xuu5000, xuu5100) -> new_fsEs(new_compare7(xuu5000, xuu5100)) new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare9(xuu50000, xuu51000), LT) new_esEs23(xuu50001, xuu51001, app(ty_Ratio, chb)) -> new_esEs16(xuu50001, xuu51001, chb) new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, baf), he), hf)) -> new_ltEs15(xuu5000, xuu5100, baf, he, hf) new_compare4([], :(xuu51000, xuu51001), bdb) -> LT new_lt12(xuu50001, xuu51001, ty_Double) -> new_lt13(xuu50001, xuu51001) new_compare28(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, cae)) -> new_esEs5(xuu3110000, xuu6000, cae) new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs8(xuu5000, xuu5100) new_lt19(xuu500, xuu510) -> new_esEs8(new_compare28(xuu500, xuu510), LT) new_esEs23(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs6(xuu5000, xuu5100, bdb) -> new_fsEs(new_compare4(xuu5000, xuu5100, bdb)) new_esEs23(xuu50001, xuu51001, app(app(ty_Either, bbb), bbc)) -> new_esEs6(xuu50001, xuu51001, bbb, bbc) new_esEs23(xuu50001, xuu51001, app(app(ty_@2, bag), bah)) -> new_esEs4(xuu50001, xuu51001, bag, bah) new_ltEs21(xuu50001, xuu51001, app(app(ty_@2, cc), cd)) -> new_ltEs9(xuu50001, xuu51001, cc, cd) new_ltEs11(Just(xuu50000), Just(xuu51000), app(ty_[], ee)) -> new_ltEs6(xuu50000, xuu51000, ee) new_ltEs14(GT, LT) -> False new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, ceh), cfa)) -> new_esEs6(xuu3110001, xuu6001, ceh, cfa) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cfg)) -> new_esEs16(xuu3110000, xuu6000, cfg) new_ltEs7(Left(xuu50000), Right(xuu51000), ga, eh) -> True new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Int, dbe) -> new_esEs17(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], caf)) -> new_esEs11(xuu3110000, xuu6000, caf) new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) new_esEs12(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, app(ty_Ratio, chb)) -> new_lt18(xuu50001, xuu51001, chb) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dcc), dcd), dbe) -> new_esEs4(xuu3110000, xuu6000, dcc, dcd) new_esEs20(xuu3110002, xuu6002, ty_Integer) -> new_esEs15(xuu3110002, xuu6002) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare211(xuu50000, xuu51000, False, h, ba) -> new_compare11(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000, h, ba), h, ba) new_compare23(Left(xuu5000), Left(xuu5100), False, bdc, bda) -> new_compare18(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, bdc), bdc, bda) new_ltEs20(xuu5000, xuu5100, app(ty_Maybe, bdf)) -> new_ltEs11(xuu5000, xuu5100, bdf) new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(xuu5000, xuu510) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cfh), cga)) -> new_esEs4(xuu3110000, xuu6000, cfh, cga) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(app(ty_Either, ddh), dea)) -> new_esEs6(xuu3110000, xuu6000, ddh, dea) new_primCmpNat1(Succ(xuu50000), Zero) -> GT new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, app(app(ty_Either, hh), baa)) -> new_lt15(xuu50000, xuu51000, hh, baa) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Char, eh) -> new_ltEs5(xuu50000, xuu51000) new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_Either, dh), ea)) -> new_ltEs7(xuu50000, xuu51000, dh, ea) new_esEs13(False, False) -> True new_lt20(xuu50000, xuu51000, app(ty_[], ca)) -> new_lt7(xuu50000, xuu51000, ca) new_primCmpNat0(xuu5000, Zero) -> GT new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Float, dbe) -> new_esEs19(xuu3110000, xuu6000) new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs7(xuu50000, xuu51000, bf, bg, bh) new_compare30(xuu50000, xuu51000, ty_@0) -> new_compare6(xuu50000, xuu51000) new_esEs15(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_asAs(True, xuu148) -> xuu148 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare19(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) new_esEs9(xuu3110001, xuu6001, app(app(ty_Either, bgh), bha)) -> new_esEs6(xuu3110001, xuu6001, bgh, bha) new_esEs24(xuu50000, xuu51000, ty_@0) -> new_esEs14(xuu50000, xuu51000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs20(xuu5000, xuu5100, app(app(ty_@2, bdd), bde)) -> new_ltEs9(xuu5000, xuu5100, bdd, bde) new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt9(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Right(xuu6000), dcg, dbe) -> False new_esEs6(Right(xuu3110000), Left(xuu6000), dcg, dbe) -> False new_esEs22(xuu3110000, xuu6000, app(ty_[], cfc)) -> new_esEs11(xuu3110000, xuu6000, cfc) new_esEs20(xuu3110002, xuu6002, app(ty_Maybe, ccf)) -> new_esEs5(xuu3110002, xuu6002, ccf) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cbc), cbd)) -> new_esEs4(xuu3110000, xuu6000, cbc, cbd) new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs15(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs24(xuu50000, xuu51000, ty_Integer) -> new_esEs15(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, cb), bb)) -> new_ltEs9(xuu5000, xuu5100, cb, bb) new_ltEs21(xuu50001, xuu51001, ty_Bool) -> new_ltEs4(xuu50001, xuu51001) new_lt16(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, ty_Int) -> new_ltEs17(xuu50001, xuu51001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cbb)) -> new_esEs16(xuu3110000, xuu6000, cbb) new_primCompAux00(xuu203, EQ) -> xuu203 new_ltEs21(xuu50001, xuu51001, ty_Double) -> new_ltEs8(xuu50001, xuu51001) new_ltEs21(xuu50001, xuu51001, app(app(ty_Either, cf), cg)) -> new_ltEs7(xuu50001, xuu51001, cf, cg) new_esEs9(xuu3110001, xuu6001, ty_Int) -> new_esEs17(xuu3110001, xuu6001) new_esEs27(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare4(:(xuu50000, xuu50001), [], bdb) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(Left(xuu50000), Left(xuu51000), ty_@0, eh) -> new_ltEs12(xuu50000, xuu51000) new_compare17(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare17(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat2(xuu510, xuu5000) new_esEs27(xuu3110000, xuu6000, app(ty_Ratio, dad)) -> new_esEs16(xuu3110000, xuu6000, dad) new_compare10(xuu50000, xuu51000, False) -> GT new_esEs27(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_lt11(xuu50000, xuu51000, ty_Integer) -> new_lt10(xuu50000, xuu51000) new_esEs23(xuu50001, xuu51001, ty_Char) -> new_esEs12(xuu50001, xuu51001) new_esEs24(xuu50000, xuu51000, app(ty_Maybe, hg)) -> new_esEs5(xuu50000, xuu51000, hg) new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(xuu5100, Zero) new_esEs9(xuu3110001, xuu6001, app(ty_[], bga)) -> new_esEs11(xuu3110001, xuu6001, bga) new_primCmpNat1(Zero, Zero) -> EQ new_compare111(xuu50000, xuu51000, False) -> GT new_ltEs18(xuu50002, xuu51002, app(ty_Maybe, bcb)) -> new_ltEs11(xuu50002, xuu51002, bcb) new_ltEs16(xuu5000, xuu5100, cgd) -> new_fsEs(new_compare16(xuu5000, xuu5100, cgd)) new_ltEs11(Nothing, Just(xuu51000), cge) -> True new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Neg(xuu500010), xuu51000)) new_compare14(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Neg(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_ltEs21(xuu50001, xuu51001, ty_Ordering) -> new_ltEs14(xuu50001, xuu51001) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_compare210(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs4(xuu50000, xuu51000)) new_lt12(xuu50001, xuu51001, ty_Ordering) -> new_lt8(xuu50001, xuu51001) new_compare24(xuu50000, xuu51000, False) -> new_compare10(xuu50000, xuu51000, new_ltEs14(xuu50000, xuu51000)) new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, cge)) -> new_ltEs11(xuu5000, xuu5100, cge) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Integer, dbe) -> new_esEs15(xuu3110000, xuu6000) new_lt12(xuu50001, xuu51001, ty_@0) -> new_lt4(xuu50001, xuu51001) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_esEs27(xuu3110000, xuu6000, app(ty_[], chh)) -> new_esEs11(xuu3110000, xuu6000, chh) new_compare30(xuu50000, xuu51000, ty_Float) -> new_compare17(xuu50000, xuu51000) new_lt20(xuu50000, xuu51000, app(ty_Maybe, bc)) -> new_lt14(xuu50000, xuu51000, bc) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare15(xuu50000, xuu51000), LT) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs4(True, False) -> False new_ltEs17(xuu5000, xuu5100) -> new_fsEs(new_compare28(xuu5000, xuu5100)) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu3110000, xuu6000, ddf, ddg) new_ltEs18(xuu50002, xuu51002, app(ty_[], bch)) -> new_ltEs6(xuu50002, xuu51002, bch) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs9(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) new_ltEs18(xuu50002, xuu51002, app(app(ty_@2, bbh), bca)) -> new_ltEs9(xuu50002, xuu51002, bbh, bca) new_compare24(xuu50000, xuu51000, True) -> EQ new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, app(app(ty_Either, cdf), cdg)) -> new_esEs6(xuu3110002, xuu6002, cdf, cdg) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Bool) -> new_ltEs4(xuu50000, xuu51000) new_compare4([], [], bdb) -> EQ new_lt4(xuu50000, xuu51000) -> new_esEs8(new_compare6(xuu50000, xuu51000), LT) new_compare211(xuu50000, xuu51000, True, h, ba) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu3110001, xuu6001, app(ty_[], cea)) -> new_esEs11(xuu3110001, xuu6001, cea) new_ltEs11(Just(xuu50000), Just(xuu51000), app(app(ty_@2, de), df)) -> new_ltEs9(xuu50000, xuu51000, de, df) new_lt11(xuu50000, xuu51000, app(ty_[], bae)) -> new_lt7(xuu50000, xuu51000, bae) new_ltEs4(False, False) -> True new_esEs28(xuu50000, xuu51000, app(ty_Maybe, bc)) -> new_esEs5(xuu50000, xuu51000, bc) new_esEs16(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), chd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, chd), new_esEs25(xuu3110001, xuu6001, chd)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat2(Zero, xuu5100) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare110(xuu50000, xuu51000, True, bf, bg, bh) -> LT new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt19(xuu50000, xuu51000) new_ltEs20(xuu5000, xuu5100, ty_Int) -> new_ltEs17(xuu5000, xuu5100) new_ltEs21(xuu50001, xuu51001, ty_Integer) -> new_ltEs10(xuu50001, xuu51001) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_lt17(xuu50000, xuu51000, bf, bg, bh) -> new_esEs8(new_compare29(xuu50000, xuu51000, bf, bg, bh), LT) new_compare14(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare28(new_sr0(xuu50000, Pos(xuu510010)), new_sr0(Pos(xuu500010), xuu51000)) new_compare30(xuu50000, xuu51000, ty_Integer) -> new_compare19(xuu50000, xuu51000) new_esEs9(xuu3110001, xuu6001, ty_Integer) -> new_esEs15(xuu3110001, xuu6001) new_compare15(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) new_not(False) -> True new_ltEs20(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt4(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs13(xuu50000, xuu51000) new_esEs20(xuu3110002, xuu6002, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs7(xuu3110002, xuu6002, cch, cda, cdb) new_compare7(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat1(xuu50000, xuu51000) new_esEs9(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_compare30(xuu50000, xuu51000, ty_Bool) -> new_compare9(xuu50000, xuu51000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs21(xuu50001, xuu51001, app(ty_Maybe, ce)) -> new_ltEs11(xuu50001, xuu51001, ce) new_ltEs12(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) new_lt20(xuu50000, xuu51000, app(app(ty_@2, h), ba)) -> new_lt5(xuu50000, xuu51000, h, ba) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_Double, dbe) -> new_esEs18(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) new_compare30(xuu50000, xuu51000, ty_Double) -> new_compare14(xuu50000, xuu51000) new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs12(xuu3110001, xuu6001) new_esEs6(Left(xuu3110000), Left(xuu6000), ty_@0, dbe) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu3110000, xuu6000, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(xuu3110000, xuu6000, daa, dab, dac) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_@0) -> new_ltEs12(xuu50000, xuu51000) new_primPlusNat0(Succ(xuu1300), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1300, xuu600000))) new_compare30(xuu50000, xuu51000, app(ty_Maybe, beg)) -> new_compare25(xuu50000, xuu51000, beg) new_esEs9(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_compare11(xuu50000, xuu51000, True, h, ba) -> LT new_ltEs20(xuu5000, xuu5100, app(ty_[], bed)) -> new_ltEs6(xuu5000, xuu5100, bed) new_primCmpNat1(Zero, Succ(xuu51000)) -> LT new_sr0(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) new_compare30(xuu50000, xuu51000, ty_Char) -> new_compare7(xuu50000, xuu51000) new_ltEs11(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dcb), dbe) -> new_esEs16(xuu3110000, xuu6000, dcb) new_compare10(xuu50000, xuu51000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_compare26(xuu50000, xuu51000, False, bc) -> new_compare112(xuu50000, xuu51000, new_ltEs11(xuu50000, xuu51000, bc), bc) new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs18(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, app(ty_Ratio, chc)) -> new_ltEs16(xuu50002, xuu51002, chc) new_ltEs14(LT, EQ) -> True new_lt20(xuu50000, xuu51000, app(app(ty_Either, bd), be)) -> new_lt15(xuu50000, xuu51000, bd, be) new_lt12(xuu50001, xuu51001, app(app(ty_@2, bag), bah)) -> new_lt5(xuu50001, xuu51001, bag, bah) new_ltEs15(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, hf) -> new_pePe(new_lt11(xuu50000, xuu51000, baf), new_asAs(new_esEs24(xuu50000, xuu51000, baf), new_pePe(new_lt12(xuu50001, xuu51001, he), new_asAs(new_esEs23(xuu50001, xuu51001, he), new_ltEs18(xuu50002, xuu51002, hf))))) new_compare27(xuu50000, xuu51000, False, bf, bg, bh) -> new_compare110(xuu50000, xuu51000, new_ltEs15(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare23(Right(xuu5000), Left(xuu5100), False, bdc, bda) -> GT new_esEs27(xuu3110000, xuu6000, app(app(ty_@2, dae), daf)) -> new_esEs4(xuu3110000, xuu6000, dae, daf) new_esEs27(xuu3110000, xuu6000, app(app(ty_Either, dag), dah)) -> new_esEs6(xuu3110000, xuu6000, dag, dah) new_compare30(xuu50000, xuu51000, app(app(ty_@2, bee), bef)) -> new_compare8(xuu50000, xuu51000, bee, bef) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Ratio, cbg), eh) -> new_ltEs16(xuu50000, xuu51000, cbg) new_compare6(@0, @0) -> EQ new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs4(xuu5000, xuu5100) new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Ordering) -> new_ltEs14(xuu50000, xuu51000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) new_esEs28(xuu50000, xuu51000, app(app(ty_@2, h), ba)) -> new_esEs4(xuu50000, xuu51000, h, ba) new_lt11(xuu50000, xuu51000, ty_Ordering) -> new_lt8(xuu50000, xuu51000) new_esEs6(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dbg), dbh), dca), dbe) -> new_esEs7(xuu3110000, xuu6000, dbg, dbh, dca) new_compare29(xuu50000, xuu51000, bf, bg, bh) -> new_compare27(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt16(xuu50000, xuu51000) new_ltEs18(xuu50002, xuu51002, ty_Bool) -> new_ltEs4(xuu50002, xuu51002) new_ltEs11(Just(xuu50000), Nothing, cge) -> False new_esEs28(xuu50000, xuu51000, app(ty_Ratio, dba)) -> new_esEs16(xuu50000, xuu51000, dba) new_ltEs11(Nothing, Nothing, cge) -> True new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) new_ltEs21(xuu50001, xuu51001, app(ty_Ratio, dbb)) -> new_ltEs16(xuu50001, xuu51001, dbb) new_esEs27(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare8(xuu50000, xuu51000, h, ba) -> new_compare211(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) new_primCmpNat2(Succ(xuu5100), xuu5000) -> new_primCmpNat1(xuu5100, xuu5000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu50000, xuu51000, bd, be) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Char) -> new_esEs12(xuu3110000, xuu6000) new_esEs23(xuu50001, xuu51001, ty_Integer) -> new_esEs15(xuu50001, xuu51001) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(xuu50000), Right(xuu51000), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs15(xuu50000, xuu51000, gg, gh, ha) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs17(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs20(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_ltEs20(xuu5000, xuu5100, app(ty_Ratio, che)) -> new_ltEs16(xuu5000, xuu5100, che) new_esEs11([], [], chf) -> True new_asAs(False, xuu148) -> False new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) new_compare23(Right(xuu5000), Right(xuu5100), False, bdc, bda) -> new_compare12(xuu5000, xuu5100, new_ltEs20(xuu5000, xuu5100, bda), bdc, bda) new_ltEs14(LT, LT) -> True new_esEs20(xuu3110002, xuu6002, ty_Char) -> new_esEs12(xuu3110002, xuu6002) new_ltEs7(Left(xuu50000), Left(xuu51000), app(ty_Maybe, fa), eh) -> new_ltEs11(xuu50000, xuu51000, fa) new_ltEs21(xuu50001, xuu51001, ty_Char) -> new_ltEs5(xuu50001, xuu51001) new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt17(xuu50000, xuu51000, bf, bg, bh) new_lt10(xuu50000, xuu51000) -> new_esEs8(new_compare19(xuu50000, xuu51000), LT) new_esEs27(xuu3110000, xuu6000, app(ty_Maybe, chg)) -> new_esEs5(xuu3110000, xuu6000, chg) new_ltEs7(Left(xuu50000), Left(xuu51000), app(app(ty_@2, ef), eg), eh) -> new_ltEs9(xuu50000, xuu51000, ef, eg) new_esEs23(xuu50001, xuu51001, ty_@0) -> new_esEs14(xuu50001, xuu51001) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(xuu50000, xuu51000, False, bc) -> GT new_ltEs7(Right(xuu50000), Right(xuu51000), ga, ty_Int) -> new_ltEs17(xuu50000, xuu51000) new_compare12(xuu160, xuu161, True, cca, ccb) -> LT new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Int) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(xuu3110002, xuu6002, ty_Int) -> new_esEs17(xuu3110002, xuu6002) new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt6(xuu50000, xuu51000) new_ltEs7(Left(xuu50000), Left(xuu51000), ty_Float, eh) -> new_ltEs13(xuu50000, xuu51000) new_esEs6(Right(xuu3110000), Right(xuu6000), dcg, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_ltEs21(xuu50001, xuu51001, app(ty_[], dd)) -> new_ltEs6(xuu50001, xuu51001, dd) The set Q consists of the following terms: new_esEs8(EQ, EQ) new_lt12(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_Float) new_lt18(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2, x3) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare112(x0, x1, True, x2) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, Zero) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_primCmpNat1(Zero, Zero) new_pePe(False, x0) new_ltEs19(x0, x1, ty_Integer) new_compare11(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs27(x0, x1, ty_Int) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs12(Char(x0), Char(x1)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, GT) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs14(LT, LT) new_esEs27(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_esEs5(Nothing, Nothing, x0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpNat1(Succ(x0), Succ(x1)) new_compare6(@0, @0) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs20(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(Just(x0), Nothing, x1) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs12(x0, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_lt9(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1) new_lt19(x0, x1) new_primPlusNat1(Succ(x0), Zero) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(ty_Ratio, x2)) new_compare12(x0, x1, False, x2, x3) new_lt13(x0, x1) new_esEs27(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt11(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare23(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, True, x2, x3) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare24(x0, x1, False) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_primMulInt(Neg(x0), Neg(x1)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(:(x0, x1), :(x2, x3), x4) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_compare28(x0, x1) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_compare112(x0, x1, False, x2) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs14(LT, GT) new_esEs21(x0, x1, ty_Double) new_ltEs14(GT, LT) new_compare30(x0, x1, ty_Integer) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Integer) new_compare4(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs21(x0, x1, ty_Ordering) new_lt4(x0, x1) new_ltEs10(x0, x1) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs8(GT, GT) new_ltEs11(Nothing, Just(x0), x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare19(Integer(x0), Integer(x1)) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(False, True) new_esEs13(True, False) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare29(x0, x1, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_lt11(x0, x1, ty_Bool) new_esEs8(LT, LT) new_ltEs8(x0, x1) 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_esEs6(Left(x0), Left(x1), ty_Double, x2) new_compare23(Left(x0), Left(x1), False, x2, x3) new_lt11(x0, x1, ty_Float) new_compare25(x0, x1, x2) new_compare23(Left(x0), Right(x1), False, x2, x3) new_esEs24(x0, x1, ty_Float) new_compare23(Right(x0), Left(x1), False, x2, x3) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare30(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt14(x0, x1, x2) new_compare12(x0, x1, True, x2, x3) new_sr(Integer(x0), Integer(x1)) new_primPlusNat0(Zero, x0) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_compare4([], [], x0) new_esEs27(x0, x1, ty_Integer) new_fsEs(x0) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare11(x0, x1, False, x2, x3) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt11(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Char) new_primCmpNat0(x0, Zero) new_ltEs19(x0, x1, ty_Double) new_compare211(x0, x1, True, x2, x3) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_compare210(x0, x1, False) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_lt7(x0, x1, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs6(x0, x1, x2) new_compare27(x0, x1, False, x2, x3, x4) new_esEs20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Float) new_compare23(Right(x0), Right(x1), False, x2, x3) new_lt20(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare111(x0, x1, True) new_sr0(x0, x1) new_primCompAux00(x0, EQ) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), x1) new_esEs9(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare24(x0, x1, True) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(EQ, EQ) new_esEs9(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs17(x0, x1) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt16(x0, x1) new_lt12(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs15(Integer(x0), Integer(x1)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_compare15(x0, x1) new_lt11(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_compare4([], :(x0, x1), x2) new_primPlusNat1(Zero, Succ(x0)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat2(Zero, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs11([], [], x0) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare110(x0, x1, True, x2, x3, x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Nothing, Just(x0), x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_compare18(x0, x1, False, x2, x3) new_ltEs18(x0, x1, ty_@0) new_compare110(x0, x1, False, x2, x3, x4) new_esEs27(x0, x1, app(ty_[], x2)) new_not(True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Char) new_lt6(x0, x1) new_esEs9(x0, x1, ty_Bool) new_compare10(x0, x1, True) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Double) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs9(x0, x1, ty_Ordering) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt17(x0, x1, x2, x3, x4) new_ltEs11(Just(x0), Nothing, x1) new_esEs22(x0, x1, ty_Int) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs21(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare211(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Integer) new_esEs13(True, True) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_[], x2)) new_lt10(x0, x1) new_lt12(x0, x1, ty_Bool) new_ltEs4(False, True) new_ltEs4(True, False) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCmpNat2(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_primCompAux00(x0, LT) new_esEs22(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_compare26(x0, x1, True, x2) new_esEs26(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare8(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs10(x0, x1, ty_Integer) new_esEs14(@0, @0) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(GT, GT) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_Ordering) new_lt12(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare26(x0, x1, False, x2) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(False, False) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs19(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_@0) new_pePe(True, x0) new_compare210(x0, x1, True) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_ltEs11(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, ty_Double) new_esEs13(False, False) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs17(x0, x1) new_not(False) new_esEs9(x0, x1, ty_@0) new_ltEs13(x0, x1) new_lt12(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare4(:(x0, x1), :(x2, x3), x4) new_ltEs5(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs11(:(x0, x1), [], x2) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(x0, x1, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs11(Nothing, Nothing, x0) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt12(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare13(x0, x1, x2, x3) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs10(x0, x1, ty_Char) new_asAs(True, x0) new_primMulNat0(Succ(x0), Zero) new_compare7(Char(x0), Char(x1)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) 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_compare5(xuu50000, xuu51000, bf, bg, bh) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare2(xuu50000, xuu51000, False, h, ba) -> new_ltEs(xuu50000, xuu51000, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare22(xuu50000, xuu51000, False, bf, bg, bh) -> new_ltEs2(xuu50000, xuu51000, bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt2(xuu50000, xuu51000, bf, bg, bh) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_@2, de), df)) -> new_ltEs(xuu50000, xuu51000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(xuu50000, xuu51000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], bdb), bda) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_Either, bd), be)), bb), bda) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(xuu50000, xuu51000, xuu189, app(app(ty_Either, beh), bfa)) -> new_compare3(xuu50000, xuu51000, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare20(xuu50000, xuu51000, False, bc) -> new_ltEs0(xuu50000, xuu51000, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_primCompAux(xuu50000, xuu51000, new_compare4(xuu50001, xuu51001, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_[], ee)) -> new_ltEs3(xuu50000, xuu51000, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_compare(xuu50001, xuu51001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_Either, bd), be), bb) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu50001, xuu51001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(ty_@2, bbh), bca)) -> new_ltEs(xuu50002, xuu51002, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_Either, dh), ea)) -> new_ltEs1(xuu50000, xuu51000, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_Maybe, dg)) -> new_ltEs0(xuu50000, xuu51000, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(xuu50001, xuu51001, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xuu50002, xuu51002, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(ty_[], dd)) -> new_ltEs3(xuu50001, xuu51001, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(ty_[], bch)) -> new_ltEs3(xuu50002, xuu51002, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu50001, xuu51001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(app(ty_Either, bcc), bcd)) -> new_ltEs1(xuu50002, xuu51002, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare0(xuu50000, xuu51000, h, ba) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt(xuu50000, xuu51000, h, ba) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bdb) -> new_compare(xuu50001, xuu51001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(xuu50000, xuu51000, bc) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt1(xuu50000, xuu51000, bd, be) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare3(xuu50000, xuu51000, bd, be) -> new_compare21(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bd, be), bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cb, app(ty_Maybe, ce)) -> new_ltEs0(xuu50001, xuu51001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, he, app(ty_Maybe, bcb)) -> new_ltEs0(xuu50002, xuu51002, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(xuu50000, xuu51000, xuu189, app(app(ty_@2, bee), bef)) -> new_compare0(xuu50000, xuu51000, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu50000, xuu51000, xuu189, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_compare5(xuu50000, xuu51000, bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_lt3(xuu50000, xuu51000, ca) -> new_compare(xuu50000, xuu51000, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(xuu50000, xuu51000, bc) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_primCompAux(xuu50000, xuu51000, xuu189, app(ty_Maybe, beg)) -> new_compare1(xuu50000, xuu51000, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu50000, xuu51000, xuu189, app(ty_[], bfe)) -> new_compare(xuu50000, xuu51000, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_Maybe, bc)), bb), bda) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_Maybe, bc), bb) -> new_compare20(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, bc), bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(app(ty_@3, bf), bg), bh)), bb), bda) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(app(ty_@3, bf), bg), bh), bb) -> new_compare22(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bf, bg, bh), bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), bda) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_[], ca), bb) -> new_compare(xuu50000, xuu51000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_@2, h), ba), bb) -> new_compare2(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bab), bac), bad)), he), hf), bda) -> new_lt2(xuu50000, xuu51000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(app(ty_@3, bbd), bbe), bbf)), hf), bda) -> new_lt2(xuu50001, xuu51001, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(app(ty_@3, bab), bac), bad), he, hf) -> new_lt2(xuu50000, xuu51000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(app(ty_@3, bbd), bbe), bbf), hf) -> new_lt2(xuu50001, xuu51001, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(ty_@2, gb), gc)) -> new_ltEs(xuu50000, xuu51000, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_@2, ef), eg), eh) -> new_ltEs(xuu50000, xuu51000, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, fd), ff), fg), eh) -> new_ltEs2(xuu50000, xuu51000, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(xuu50000, xuu51000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(ty_[], hb)) -> new_ltEs3(xuu50000, xuu51000, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_[], fh), eh) -> new_ltEs3(xuu50000, xuu51000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(xuu50000, xuu51000, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_Either, fb), fc), eh) -> new_ltEs1(xuu50000, xuu51000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu50000), Right(xuu51000), ga, app(ty_Maybe, gd)) -> new_ltEs0(xuu50000, xuu51000, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_Maybe, fa), eh) -> new_ltEs0(xuu50000, xuu51000, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(ty_@2, gb), gc)), bda) -> new_ltEs(xuu50000, xuu51000, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(ty_@2, bdd), bde)) -> new_ltEs(xuu5000, xuu5100, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_@2, de), df)), bda) -> new_ltEs(xuu50000, xuu51000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(ty_@2, bbh), bca)), bda) -> new_ltEs(xuu50002, xuu51002, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), bda) -> new_ltEs(xuu50001, xuu51001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_@2, ef), eg)), eh), bda) -> new_ltEs(xuu50000, xuu51000, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs2(xuu5000, xuu5100, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(app(ty_@3, gg), gh), ha)), bda) -> new_ltEs2(xuu50000, xuu51000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed)), bda) -> new_ltEs2(xuu50000, xuu51000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(app(ty_@3, fd), ff), fg)), eh), bda) -> new_ltEs2(xuu50000, xuu51000, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, da), db), dc)), bda) -> new_ltEs2(xuu50001, xuu51001, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(app(ty_@3, bce), bcf), bcg)), bda) -> new_ltEs2(xuu50002, xuu51002, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_[], fh)), eh), bda) -> new_ltEs3(xuu50000, xuu51000, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(ty_[], bch)), bda) -> new_ltEs3(xuu50002, xuu51002, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(ty_[], hb)), bda) -> new_ltEs3(xuu50000, xuu51000, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(ty_[], bed)) -> new_ltEs3(xuu5000, xuu5100, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(ty_[], dd)), bda) -> new_ltEs3(xuu50001, xuu51001, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_[], ee)), bda) -> new_ltEs3(xuu50000, xuu51000, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(app(ty_Either, cf), cg)), bda) -> new_ltEs1(xuu50001, xuu51001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_Either, fb), fc)), eh), bda) -> new_ltEs1(xuu50000, xuu51000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(app(ty_Either, bdg), bdh)) -> new_ltEs1(xuu5000, xuu5100, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(app(ty_Either, ge), gf)), bda) -> new_ltEs1(xuu50000, xuu51000, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(app(ty_Either, bcc), bcd)), bda) -> new_ltEs1(xuu50002, xuu51002, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), bda) -> new_ltEs1(xuu50000, xuu51000, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_@2, hc), hd)), he), hf), bda) -> new_lt(xuu50000, xuu51000, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(ty_@2, bag), bah)), hf), bda) -> new_lt(xuu50001, xuu51001, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(ty_[], bbg)), hf), bda) -> new_lt3(xuu50001, xuu51001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_[], bae)), he), hf), bda) -> new_lt3(xuu50000, xuu51000, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_Maybe, fa)), eh), bda) -> new_ltEs0(xuu50000, xuu51000, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu5000), Right(xuu5100), False, bdc, app(ty_Maybe, bdf)) -> new_ltEs0(xuu5000, xuu5100, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), he), app(ty_Maybe, bcb)), bda) -> new_ltEs0(xuu50002, xuu51002, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, cb), app(ty_Maybe, ce)), bda) -> new_ltEs0(xuu50001, xuu51001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_Maybe, dg)), bda) -> new_ltEs0(xuu50000, xuu51000, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, ga), app(ty_Maybe, gd)), bda) -> new_ltEs0(xuu50000, xuu51000, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_Either, hh), baa)), he), hf), bda) -> new_lt1(xuu50000, xuu51000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(app(ty_Either, bbb), bbc)), hf), bda) -> new_lt1(xuu50001, xuu51001, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_Maybe, hg)), he), hf), bda) -> new_lt0(xuu50000, xuu51000, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, baf), app(ty_Maybe, bba)), hf), bda) -> new_lt0(xuu50001, xuu51001, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_[], ca)), bb), bda) -> new_compare(xuu50000, xuu51000, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], bdb), bda) -> new_compare(xuu50001, xuu51001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_@2, hc), hd), he, hf) -> new_lt(xuu50000, xuu51000, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(ty_@2, bag), bah), hf) -> new_lt(xuu50001, xuu51001, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(ty_[], bbg), hf) -> new_lt3(xuu50001, xuu51001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_[], bae), he, hf) -> new_lt3(xuu50000, xuu51000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(app(ty_Either, bbb), bbc), hf) -> new_lt1(xuu50001, xuu51001, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_Either, hh), baa), he, hf) -> new_lt1(xuu50000, xuu51000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), baf, app(ty_Maybe, bba), hf) -> new_lt0(xuu50001, xuu51001, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_Maybe, hg), he, hf) -> new_lt0(xuu50000, xuu51000, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (37) YES ---------------------------------------- (38) 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), hc, app(ty_[], he)) -> new_esEs0(xuu3110001, xuu6001, he) new_esEs3(Right(xuu3110000), Right(xuu6000), bda, app(ty_[], bdc)) -> new_esEs0(xuu3110000, xuu6000, bdc) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(ty_@2, baa), bab)) -> new_esEs2(xuu3110001, xuu6001, baa, bab) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, cg), da)) -> new_esEs2(xuu3110000, xuu6000, cg, da) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, gd), ge), gf), de, eh) -> new_esEs1(xuu3110000, xuu6000, gd, ge, gf) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bag), baf) -> new_esEs0(xuu3110000, xuu6000, bag) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(xuu3110000, xuu6000, bbe, bbf) 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, cd), ce), cf)) -> new_esEs1(xuu3110000, xuu6000, cd, ce, cf) 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, gg), gh), de, eh) -> new_esEs2(xuu3110000, xuu6000, gg, gh) 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_[], cc)) -> new_esEs0(xuu3110000, xuu6000, cc) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110001, xuu6001, hd) 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, bbc), bbd), baf) -> new_esEs2(xuu3110000, xuu6000, bbc, bbd) 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), dd, de, app(ty_Maybe, df)) -> new_esEs(xuu3110002, xuu6002, df) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bae), baf) -> new_esEs(xuu3110000, xuu6000, bae) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ca) -> new_esEs0(xuu3110001, xuu6001, ca) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(ty_Maybe, eg), eh) -> new_esEs(xuu3110001, xuu6001, eg) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, ha), hb), de, eh) -> new_esEs3(xuu3110000, xuu6000, ha, hb) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(xuu3110001, xuu6001, bac, bad) 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, gb), de, eh) -> new_esEs(xuu3110000, xuu6000, gb) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, cb)) -> new_esEs(xuu3110000, xuu6000, cb) 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), dd, app(ty_[], fa), eh) -> new_esEs0(xuu3110001, xuu6001, fa) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, de, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(xuu3110002, xuu6002, dh, ea, eb) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs1(xuu3110001, xuu6001, hf, hg, hh) 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), dd, app(app(ty_Either, fh), ga), eh) -> new_esEs3(xuu3110001, xuu6001, fh, ga) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, de, app(ty_[], dg)) -> new_esEs0(xuu3110002, xuu6002, dg) 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), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu3110002, xuu6002, ee, ef) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], gc), de, eh) -> new_esEs0(xuu3110000, xuu6000, gc) new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], ba)) -> new_esEs0(xuu3110000, xuu6000, ba) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(app(ty_@2, ff), fg), eh) -> new_esEs2(xuu3110001, xuu6001, ff, fg) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(app(app(ty_@3, fb), fc), fd), eh) -> new_esEs1(xuu3110001, xuu6001, fb, fc, fd) new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, de, app(app(ty_@2, ec), ed)) -> new_esEs2(xuu3110002, xuu6002, ec, ed) new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bah), bba), bbb), baf) -> new_esEs1(xuu3110000, xuu6000, bah, bba, bbb) new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, db), dc)) -> new_esEs3(xuu3110000, xuu6000, db, dc) 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_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, cb)) -> new_esEs(xuu3110000, xuu6000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, db), dc)) -> new_esEs3(xuu3110000, xuu6000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, cg), da)) -> new_esEs2(xuu3110000, xuu6000, cg, da) 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, cd), ce), cf)) -> new_esEs1(xuu3110000, xuu6000, cd, ce, cf) 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), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110001, xuu6001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bae), baf) -> new_esEs(xuu3110000, xuu6000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(xuu3110000, xuu6000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(xuu3110001, xuu6001, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(ty_@2, baa), bab)) -> new_esEs2(xuu3110001, xuu6001, baa, bab) 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, bbc), bbd), baf) -> new_esEs2(xuu3110000, xuu6000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(ty_[], he)) -> new_esEs0(xuu3110001, xuu6001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bag), baf) -> new_esEs0(xuu3110000, xuu6000, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), hc, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs1(xuu3110001, xuu6001, hf, hg, hh) 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, bah), bba), bbb), baf) -> new_esEs1(xuu3110000, xuu6000, bah, bba, bbb) 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), dd, de, app(ty_Maybe, df)) -> new_esEs(xuu3110002, xuu6002, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(ty_Maybe, eg), eh) -> new_esEs(xuu3110001, xuu6001, eg) 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, gb), de, eh) -> new_esEs(xuu3110000, xuu6000, gb) 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, ha), hb), de, eh) -> new_esEs3(xuu3110000, xuu6000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(app(ty_Either, fh), ga), eh) -> 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), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu3110002, xuu6002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], cc)) -> new_esEs0(xuu3110000, xuu6000, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ca) -> new_esEs0(xuu3110001, xuu6001, ca) 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, gg), gh), de, eh) -> new_esEs2(xuu3110000, xuu6000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(app(ty_@2, ff), fg), eh) -> 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), dd, de, app(app(ty_@2, ec), ed)) -> new_esEs2(xuu3110002, xuu6002, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dd, app(ty_[], fa), eh) -> 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), dd, de, app(ty_[], dg)) -> new_esEs0(xuu3110002, xuu6002, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], gc), de, eh) -> new_esEs0(xuu3110000, xuu6000, gc) 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, gd), ge), gf), de, eh) -> new_esEs1(xuu3110000, xuu6000, gd, ge, gf) 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), dd, de, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(xuu3110002, xuu6002, dh, ea, eb) 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), dd, app(app(app(ty_@3, fb), fc), fd), eh) -> new_esEs1(xuu3110001, xuu6001, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (40) YES ---------------------------------------- (41) 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. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu53200), Succ(xuu12100)) -> new_primMinusNat(xuu53200, xuu12100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu53200), Succ(xuu12100)) -> new_primMinusNat(xuu53200, xuu12100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu53200), Succ(xuu12100)) -> new_primPlusNat(xuu53200, xuu12100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu53200), Succ(xuu12100)) -> new_primPlusNat(xuu53200, xuu12100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (49) YES