26.53/11.48 YES 28.63/12.11 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 28.63/12.11 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.63/12.11 28.63/12.11 28.63/12.11 H-Termination with start terms of the given HASKELL could be proven: 28.63/12.11 28.63/12.11 (0) HASKELL 28.63/12.11 (1) LR [EQUIVALENT, 0 ms] 28.63/12.11 (2) HASKELL 28.63/12.11 (3) CR [EQUIVALENT, 0 ms] 28.63/12.11 (4) HASKELL 28.63/12.11 (5) IFR [EQUIVALENT, 0 ms] 28.63/12.11 (6) HASKELL 28.63/12.11 (7) BR [EQUIVALENT, 2 ms] 28.63/12.11 (8) HASKELL 28.63/12.11 (9) COR [EQUIVALENT, 0 ms] 28.63/12.11 (10) HASKELL 28.63/12.11 (11) LetRed [EQUIVALENT, 0 ms] 28.63/12.11 (12) HASKELL 28.63/12.11 (13) NumRed [SOUND, 0 ms] 28.63/12.11 (14) HASKELL 28.63/12.11 (15) Narrow [SOUND, 0 ms] 28.63/12.11 (16) AND 28.63/12.11 (17) QDP 28.63/12.11 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (19) YES 28.63/12.11 (20) QDP 28.63/12.11 (21) QDPSizeChangeProof [EQUIVALENT, 30 ms] 28.63/12.11 (22) YES 28.63/12.11 (23) QDP 28.63/12.11 (24) QDPSizeChangeProof [EQUIVALENT, 57 ms] 28.63/12.11 (25) YES 28.63/12.11 (26) QDP 28.63/12.11 (27) DependencyGraphProof [EQUIVALENT, 0 ms] 28.63/12.11 (28) AND 28.63/12.11 (29) QDP 28.63/12.11 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (31) YES 28.63/12.11 (32) QDP 28.63/12.11 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (34) YES 28.63/12.11 (35) QDP 28.63/12.11 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (37) YES 28.63/12.11 (38) QDP 28.63/12.11 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (40) YES 28.63/12.11 (41) QDP 28.63/12.11 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (43) YES 28.63/12.11 (44) QDP 28.63/12.11 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (46) YES 28.63/12.11 (47) QDP 28.63/12.11 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.63/12.11 (49) YES 28.63/12.11 28.63/12.11 28.63/12.11 ---------------------------------------- 28.63/12.11 28.63/12.11 (0) 28.63/12.11 Obligation: 28.63/12.11 mainModule Main 28.63/12.11 module FiniteMap where { 28.63/12.11 import qualified Main; 28.63/12.11 import qualified Maybe; 28.63/12.11 import qualified Prelude; 28.63/12.11 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.63/12.11 28.63/12.11 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.63/12.11 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.63/12.11 } 28.63/12.11 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.63/12.11 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 28.63/12.11 28.63/12.11 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.63/12.11 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.63/12.11 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.63/12.11 }; 28.63/12.11 28.63/12.11 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.63/12.11 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.63/12.11 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 28.63/12.11 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.63/12.11 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.63/12.11 28.63/12.11 emptyFM :: FiniteMap b a; 28.63/12.11 emptyFM = EmptyFM; 28.63/12.11 28.63/12.11 findMax :: FiniteMap a b -> (a,b); 28.63/12.11 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.63/12.11 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.63/12.11 28.63/12.11 findMin :: FiniteMap a b -> (a,b); 28.63/12.11 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.63/12.11 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.63/12.11 28.63/12.11 fmToList :: FiniteMap b a -> [(b,a)]; 28.96/12.11 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.96/12.11 28.96/12.11 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 28.96/12.11 foldFM k z EmptyFM = z; 28.96/12.11 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.96/12.11 28.96/12.11 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.96/12.11 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.96/12.11 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.96/12.11 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.96/12.11 | otherwise -> double_L fm_L fm_R; 28.96/12.11 } 28.96/12.11 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.96/12.11 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.96/12.11 | otherwise -> double_R fm_L fm_R; 28.96/12.11 } 28.96/12.11 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.96/12.11 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); 28.96/12.11 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); 28.96/12.11 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; 28.96/12.11 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); 28.96/12.11 size_l = sizeFM fm_L; 28.96/12.11 size_r = sizeFM fm_R; 28.96/12.11 }; 28.96/12.11 28.96/12.11 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.96/12.11 mkBranch which key elt fm_l fm_r = let { 28.96/12.11 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.96/12.11 } in result where { 28.96/12.11 balance_ok = True; 28.96/12.11 left_ok = case fm_l of { 28.96/12.11 EmptyFM-> True; 28.96/12.11 Branch left_key _ _ _ _-> let { 28.96/12.11 biggest_left_key = fst (findMax fm_l); 28.96/12.11 } in biggest_left_key < key; 28.96/12.11 } ; 28.96/12.11 left_size = sizeFM fm_l; 28.96/12.11 right_ok = case fm_r of { 28.96/12.11 EmptyFM-> True; 28.96/12.11 Branch right_key _ _ _ _-> let { 28.96/12.11 smallest_right_key = fst (findMin fm_r); 28.96/12.11 } in key < smallest_right_key; 28.96/12.11 } ; 28.96/12.11 right_size = sizeFM fm_r; 28.96/12.11 unbox :: Int -> Int; 28.96/12.11 unbox x = x; 28.96/12.11 }; 28.96/12.11 28.96/12.11 sIZE_RATIO :: Int; 28.96/12.11 sIZE_RATIO = 5; 28.96/12.11 28.96/12.11 sizeFM :: FiniteMap a b -> Int; 28.96/12.11 sizeFM EmptyFM = 0; 28.96/12.11 sizeFM (Branch _ _ size _ _) = size; 28.96/12.11 28.96/12.11 unitFM :: b -> a -> FiniteMap b a; 28.96/12.11 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.96/12.11 28.96/12.11 } 28.96/12.11 module Maybe where { 28.96/12.11 import qualified FiniteMap; 28.96/12.11 import qualified Main; 28.96/12.11 import qualified Prelude; 28.96/12.11 } 28.96/12.11 module Main where { 28.96/12.11 import qualified FiniteMap; 28.96/12.11 import qualified Maybe; 28.96/12.11 import qualified Prelude; 28.96/12.11 } 28.96/12.11 28.96/12.11 ---------------------------------------- 28.96/12.11 28.96/12.11 (1) LR (EQUIVALENT) 28.96/12.11 Lambda Reductions: 28.96/12.11 The following Lambda expression 28.96/12.11 "\oldnew->new" 28.96/12.11 is transformed to 28.96/12.11 "addListToFM0 old new = new; 28.96/12.11 " 28.96/12.11 The following Lambda expression 28.96/12.11 "\keyeltrest->(key,elt) : rest" 28.96/12.11 is transformed to 28.96/12.11 "fmToList0 key elt rest = (key,elt) : rest; 28.96/12.11 " 28.96/12.11 28.96/12.11 ---------------------------------------- 28.96/12.11 28.96/12.11 (2) 28.96/12.11 Obligation: 28.96/12.11 mainModule Main 28.96/12.11 module FiniteMap where { 28.96/12.11 import qualified Main; 28.96/12.11 import qualified Maybe; 28.96/12.11 import qualified Prelude; 28.96/12.11 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.96/12.11 28.96/12.11 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.96/12.11 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.96/12.11 } 28.96/12.11 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.96/12.11 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.96/12.11 28.96/12.11 addListToFM0 old new = new; 28.96/12.11 28.96/12.11 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.96/12.11 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.96/12.11 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.96/12.11 }; 28.96/12.11 28.96/12.11 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.96/12.11 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.96/12.11 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 28.96/12.11 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.96/12.11 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.96/12.11 28.96/12.11 emptyFM :: FiniteMap b a; 28.96/12.11 emptyFM = EmptyFM; 28.96/12.11 28.96/12.11 findMax :: FiniteMap b a -> (b,a); 28.96/12.11 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.96/12.11 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.96/12.11 28.96/12.11 findMin :: FiniteMap b a -> (b,a); 28.96/12.11 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.96/12.11 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.96/12.11 28.96/12.11 fmToList :: FiniteMap a b -> [(a,b)]; 28.96/12.11 fmToList fm = foldFM fmToList0 [] fm; 28.96/12.11 28.96/12.11 fmToList0 key elt rest = (key,elt) : rest; 28.96/12.11 28.96/12.11 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.96/12.11 foldFM k z EmptyFM = z; 28.96/12.11 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.96/12.11 28.96/12.11 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.96/12.11 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.96/12.11 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.96/12.11 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.96/12.11 | otherwise -> double_L fm_L fm_R; 28.96/12.11 } 28.96/12.11 | size_l > sIZE_RATIO * size_r = case fm_L of { 29.77/12.39 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 29.77/12.39 | otherwise -> double_R fm_L fm_R; 29.77/12.39 } 29.77/12.39 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 }; 29.77/12.39 29.77/12.39 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.77/12.39 mkBranch which key elt fm_l fm_r = let { 29.77/12.39 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.77/12.39 } in result where { 29.77/12.39 balance_ok = True; 29.77/12.39 left_ok = case fm_l of { 29.77/12.39 EmptyFM-> True; 29.77/12.39 Branch left_key _ _ _ _-> let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 } ; 29.77/12.39 left_size = sizeFM fm_l; 29.77/12.39 right_ok = case fm_r of { 29.77/12.39 EmptyFM-> True; 29.77/12.39 Branch right_key _ _ _ _-> let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 } ; 29.77/12.39 right_size = sizeFM fm_r; 29.77/12.39 unbox :: Int -> Int; 29.77/12.39 unbox x = x; 29.77/12.39 }; 29.77/12.39 29.77/12.39 sIZE_RATIO :: Int; 29.77/12.39 sIZE_RATIO = 5; 29.77/12.39 29.77/12.39 sizeFM :: FiniteMap b a -> Int; 29.77/12.39 sizeFM EmptyFM = 0; 29.77/12.39 sizeFM (Branch _ _ size _ _) = size; 29.77/12.39 29.77/12.39 unitFM :: a -> b -> FiniteMap a b; 29.77/12.39 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.77/12.39 29.77/12.39 } 29.77/12.39 module Maybe where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 module Main where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (3) CR (EQUIVALENT) 29.77/12.39 Case Reductions: 29.77/12.39 The following Case expression 29.77/12.39 "case compare x y of { 29.77/12.39 EQ -> o; 29.77/12.39 LT -> LT; 29.77/12.39 GT -> GT} 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "primCompAux0 o EQ = o; 29.77/12.39 primCompAux0 o LT = LT; 29.77/12.39 primCompAux0 o GT = GT; 29.77/12.39 " 29.77/12.39 The following Case expression 29.77/12.39 "case fm_r of { 29.77/12.39 EmptyFM -> True; 29.77/12.39 Branch right_key _ _ _ _ -> let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key} 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "right_ok0 fm_r key EmptyFM = True; 29.77/12.39 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 " 29.77/12.39 The following Case expression 29.77/12.39 "case fm_l of { 29.77/12.39 EmptyFM -> True; 29.77/12.39 Branch left_key _ _ _ _ -> let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key} 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "left_ok0 fm_l key EmptyFM = True; 29.77/12.39 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 " 29.77/12.39 The following Case expression 29.77/12.39 "case fm_R of { 29.77/12.39 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "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; 29.77/12.39 " 29.77/12.39 The following Case expression 29.77/12.39 "case fm_L of { 29.77/12.39 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "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; 29.77/12.39 " 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (4) 29.77/12.39 Obligation: 29.77/12.39 mainModule Main 29.77/12.39 module FiniteMap where { 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.77/12.39 29.77/12.39 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.77/12.39 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.77/12.39 } 29.77/12.39 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.77/12.39 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.77/12.39 29.77/12.39 addListToFM0 old new = new; 29.77/12.39 29.77/12.39 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.77/12.39 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.77/12.39 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.77/12.39 }; 29.77/12.39 29.77/12.39 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 29.77/12.39 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 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 29.77/12.39 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.77/12.39 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.77/12.39 29.77/12.39 emptyFM :: FiniteMap b a; 29.77/12.39 emptyFM = EmptyFM; 29.77/12.39 29.77/12.39 findMax :: FiniteMap a b -> (a,b); 29.77/12.39 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.77/12.39 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.77/12.39 29.77/12.39 findMin :: FiniteMap a b -> (a,b); 29.77/12.39 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.77/12.39 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.77/12.39 29.77/12.39 fmToList :: FiniteMap b a -> [(b,a)]; 29.77/12.39 fmToList fm = foldFM fmToList0 [] fm; 29.77/12.39 29.77/12.39 fmToList0 key elt rest = (key,elt) : rest; 29.77/12.39 29.77/12.39 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.77/12.39 foldFM k z EmptyFM = z; 29.77/12.39 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.77/12.39 29.77/12.39 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.77/12.39 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.77/12.39 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.77/12.39 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.77/12.39 | otherwise = double_L fm_L fm_R; 29.77/12.39 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.77/12.39 | otherwise = double_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 }; 29.77/12.39 29.77/12.39 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.77/12.39 mkBranch which key elt fm_l fm_r = let { 29.77/12.39 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.77/12.39 } in result where { 29.77/12.39 balance_ok = True; 29.77/12.39 left_ok = left_ok0 fm_l key fm_l; 29.77/12.39 left_ok0 fm_l key EmptyFM = True; 29.77/12.39 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 left_size = sizeFM fm_l; 29.77/12.39 right_ok = right_ok0 fm_r key fm_r; 29.77/12.39 right_ok0 fm_r key EmptyFM = True; 29.77/12.39 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 right_size = sizeFM fm_r; 29.77/12.39 unbox :: Int -> Int; 29.77/12.39 unbox x = x; 29.77/12.39 }; 29.77/12.39 29.77/12.39 sIZE_RATIO :: Int; 29.77/12.39 sIZE_RATIO = 5; 29.77/12.39 29.77/12.39 sizeFM :: FiniteMap b a -> Int; 29.77/12.39 sizeFM EmptyFM = 0; 29.77/12.39 sizeFM (Branch _ _ size _ _) = size; 29.77/12.39 29.77/12.39 unitFM :: b -> a -> FiniteMap b a; 29.77/12.39 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.77/12.39 29.77/12.39 } 29.77/12.39 module Maybe where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 module Main where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (5) IFR (EQUIVALENT) 29.77/12.39 If Reductions: 29.77/12.39 The following If expression 29.77/12.39 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 29.77/12.39 is transformed to 29.77/12.39 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 29.77/12.39 primDivNatS0 x y False = Zero; 29.77/12.39 " 29.77/12.39 The following If expression 29.77/12.39 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 29.77/12.39 is transformed to 29.77/12.39 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 29.77/12.39 primModNatS0 x y False = Succ x; 29.77/12.39 " 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (6) 29.77/12.39 Obligation: 29.77/12.39 mainModule Main 29.77/12.39 module FiniteMap where { 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.77/12.39 29.77/12.39 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.77/12.39 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.77/12.39 } 29.77/12.39 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.77/12.39 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.77/12.39 29.77/12.39 addListToFM0 old new = new; 29.77/12.39 29.77/12.39 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.77/12.39 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.77/12.39 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.77/12.39 }; 29.77/12.39 29.77/12.39 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 29.77/12.39 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 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 29.77/12.39 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.77/12.39 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.77/12.39 29.77/12.39 emptyFM :: FiniteMap b a; 29.77/12.39 emptyFM = EmptyFM; 29.77/12.39 29.77/12.39 findMax :: FiniteMap b a -> (b,a); 29.77/12.39 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.77/12.39 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.77/12.39 29.77/12.39 findMin :: FiniteMap a b -> (a,b); 29.77/12.39 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.77/12.39 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.77/12.39 29.77/12.39 fmToList :: FiniteMap a b -> [(a,b)]; 29.77/12.39 fmToList fm = foldFM fmToList0 [] fm; 29.77/12.39 29.77/12.39 fmToList0 key elt rest = (key,elt) : rest; 29.77/12.39 29.77/12.39 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 29.77/12.39 foldFM k z EmptyFM = z; 29.77/12.39 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.77/12.39 29.77/12.39 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.77/12.39 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.77/12.39 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.77/12.39 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.77/12.39 | otherwise = double_L fm_L fm_R; 29.77/12.39 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.77/12.39 | otherwise = double_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 }; 29.77/12.39 29.77/12.39 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBranch which key elt fm_l fm_r = let { 29.77/12.39 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.77/12.39 } in result where { 29.77/12.39 balance_ok = True; 29.77/12.39 left_ok = left_ok0 fm_l key fm_l; 29.77/12.39 left_ok0 fm_l key EmptyFM = True; 29.77/12.39 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 left_size = sizeFM fm_l; 29.77/12.39 right_ok = right_ok0 fm_r key fm_r; 29.77/12.39 right_ok0 fm_r key EmptyFM = True; 29.77/12.39 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 right_size = sizeFM fm_r; 29.77/12.39 unbox :: Int -> Int; 29.77/12.39 unbox x = x; 29.77/12.39 }; 29.77/12.39 29.77/12.39 sIZE_RATIO :: Int; 29.77/12.39 sIZE_RATIO = 5; 29.77/12.39 29.77/12.39 sizeFM :: FiniteMap a b -> Int; 29.77/12.39 sizeFM EmptyFM = 0; 29.77/12.39 sizeFM (Branch _ _ size _ _) = size; 29.77/12.39 29.77/12.39 unitFM :: a -> b -> FiniteMap a b; 29.77/12.39 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.77/12.39 29.77/12.39 } 29.77/12.39 module Maybe where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 module Main where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (7) BR (EQUIVALENT) 29.77/12.39 Replaced joker patterns by fresh variables and removed binding patterns. 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (8) 29.77/12.39 Obligation: 29.77/12.39 mainModule Main 29.77/12.39 module FiniteMap where { 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.77/12.39 29.77/12.39 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.77/12.39 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.77/12.39 } 29.77/12.39 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.77/12.39 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.77/12.39 29.77/12.39 addListToFM0 old new = new; 29.77/12.39 29.77/12.39 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.77/12.39 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.77/12.39 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.77/12.39 }; 29.77/12.39 29.77/12.39 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 29.77/12.39 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 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 29.77/12.39 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.77/12.39 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.77/12.39 29.77/12.39 emptyFM :: FiniteMap a b; 29.77/12.39 emptyFM = EmptyFM; 29.77/12.39 29.77/12.39 findMax :: FiniteMap a b -> (a,b); 29.77/12.39 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 29.77/12.39 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 29.77/12.39 29.77/12.39 findMin :: FiniteMap b a -> (b,a); 29.77/12.39 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 29.77/12.39 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 29.77/12.39 29.77/12.39 fmToList :: FiniteMap a b -> [(a,b)]; 29.77/12.39 fmToList fm = foldFM fmToList0 [] fm; 29.77/12.39 29.77/12.39 fmToList0 key elt rest = (key,elt) : rest; 29.77/12.39 29.77/12.39 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.77/12.39 foldFM k z EmptyFM = z; 29.77/12.39 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.77/12.39 29.77/12.39 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.77/12.39 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.77/12.39 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.77/12.39 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 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 29.77/12.39 | otherwise = double_L fm_L fm_R; 29.77/12.39 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 29.77/12.39 | otherwise = double_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 }; 29.77/12.39 29.77/12.39 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBranch which key elt fm_l fm_r = let { 29.77/12.39 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.77/12.39 } in result where { 29.77/12.39 balance_ok = True; 29.77/12.39 left_ok = left_ok0 fm_l key fm_l; 29.77/12.39 left_ok0 fm_l key EmptyFM = True; 29.77/12.39 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 left_size = sizeFM fm_l; 29.77/12.39 right_ok = right_ok0 fm_r key fm_r; 29.77/12.39 right_ok0 fm_r key EmptyFM = True; 29.77/12.39 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 right_size = sizeFM fm_r; 29.77/12.39 unbox :: Int -> Int; 29.77/12.39 unbox x = x; 29.77/12.39 }; 29.77/12.39 29.77/12.39 sIZE_RATIO :: Int; 29.77/12.39 sIZE_RATIO = 5; 29.77/12.39 29.77/12.39 sizeFM :: FiniteMap b a -> Int; 29.77/12.39 sizeFM EmptyFM = 0; 29.77/12.39 sizeFM (Branch vyu vyv size vyw vyx) = size; 29.77/12.39 29.77/12.39 unitFM :: b -> a -> FiniteMap b a; 29.77/12.39 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.77/12.39 29.77/12.39 } 29.77/12.39 module Maybe where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 module Main where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (9) COR (EQUIVALENT) 29.77/12.39 Cond Reductions: 29.77/12.39 The following Function with conditions 29.77/12.39 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "compare x y = compare3 x y; 29.77/12.39 " 29.77/12.39 "compare1 x y True = LT; 29.77/12.39 compare1 x y False = compare0 x y otherwise; 29.77/12.39 " 29.77/12.39 "compare0 x y True = GT; 29.77/12.39 " 29.77/12.39 "compare2 x y True = EQ; 29.77/12.39 compare2 x y False = compare1 x y (x <= y); 29.77/12.39 " 29.77/12.39 "compare3 x y = compare2 x y (x == y); 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "absReal x|x >= 0x|otherwise`negate` x; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "absReal x = absReal2 x; 29.77/12.39 " 29.77/12.39 "absReal0 x True = `negate` x; 29.77/12.39 " 29.77/12.39 "absReal1 x True = x; 29.77/12.39 absReal1 x False = absReal0 x otherwise; 29.77/12.39 " 29.77/12.39 "absReal2 x = absReal1 x (x >= 0); 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "gcd' x 0 = x; 29.77/12.39 gcd' x y = gcd' y (x `rem` y); 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "gcd' x vzw = gcd'2 x vzw; 29.77/12.39 gcd' x y = gcd'0 x y; 29.77/12.39 " 29.77/12.39 "gcd'0 x y = gcd' y (x `rem` y); 29.77/12.39 " 29.77/12.39 "gcd'1 True x vzw = x; 29.77/12.39 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 29.77/12.39 " 29.77/12.39 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 29.77/12.39 gcd'2 wuu wuv = gcd'0 wuu wuv; 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "gcd 0 0 = error []; 29.77/12.39 gcd x y = gcd' (abs x) (abs y) where { 29.77/12.39 gcd' x 0 = x; 29.77/12.39 gcd' x y = gcd' y (x `rem` y); 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "gcd wuw wux = gcd3 wuw wux; 29.77/12.39 gcd x y = gcd0 x y; 29.77/12.39 " 29.77/12.39 "gcd0 x y = gcd' (abs x) (abs y) where { 29.77/12.39 gcd' x vzw = gcd'2 x vzw; 29.77/12.39 gcd' x y = gcd'0 x y; 29.77/12.39 ; 29.77/12.39 gcd'0 x y = gcd' y (x `rem` y); 29.77/12.39 ; 29.77/12.39 gcd'1 True x vzw = x; 29.77/12.39 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 29.77/12.39 ; 29.77/12.39 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 29.77/12.39 gcd'2 wuu wuv = gcd'0 wuu wuv; 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 "gcd1 True wuw wux = error []; 29.77/12.39 gcd1 wuy wuz wvu = gcd0 wuz wvu; 29.77/12.39 " 29.77/12.39 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 29.77/12.39 gcd2 wvv wvw wvx = gcd0 wvw wvx; 29.77/12.39 " 29.77/12.39 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 29.77/12.39 gcd3 wvy wvz = gcd0 wvy wvz; 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "undefined |Falseundefined; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "undefined = undefined1; 29.77/12.39 " 29.77/12.39 "undefined0 True = undefined; 29.77/12.39 " 29.77/12.39 "undefined1 = undefined0 False; 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.77/12.39 d = gcd x y; 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "reduce x y = reduce2 x y; 29.77/12.39 " 29.77/12.39 "reduce2 x y = reduce1 x y (y == 0) where { 29.77/12.39 d = gcd x y; 29.77/12.39 ; 29.77/12.39 reduce0 x y True = x `quot` d :% (y `quot` d); 29.77/12.39 ; 29.77/12.39 reduce1 x y True = error []; 29.77/12.39 reduce1 x y False = reduce0 x y otherwise; 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 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; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 29.77/12.39 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; 29.77/12.39 " 29.77/12.39 "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; 29.77/12.39 " 29.77/12.39 "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); 29.77/12.39 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; 29.77/12.39 " 29.77/12.39 "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; 29.77/12.39 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); 29.77/12.39 " 29.77/12.39 "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); 29.77/12.39 " 29.77/12.39 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "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; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "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); 29.77/12.39 " 29.77/12.39 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 " 29.77/12.39 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.77/12.39 " 29.77/12.39 "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); 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "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; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "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); 29.77/12.39 " 29.77/12.39 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.77/12.39 " 29.77/12.39 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.77/12.39 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; 29.77/12.39 " 29.77/12.39 "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); 29.77/12.39 " 29.77/12.39 The following Function with conditions 29.77/12.39 "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 { 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 ; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 is transformed to 29.77/12.39 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.77/12.39 " 29.77/12.39 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.77/12.39 ; 29.77/12.39 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.77/12.39 ; 29.77/12.39 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.77/12.39 ; 29.77/12.39 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.77/12.39 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.77/12.39 ; 29.77/12.39 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.77/12.39 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.77/12.39 ; 29.77/12.39 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.77/12.39 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.77/12.39 ; 29.77/12.39 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; 29.77/12.39 ; 29.77/12.39 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); 29.77/12.39 ; 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 ; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 } 29.77/12.39 ; 29.77/12.39 " 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (10) 29.77/12.39 Obligation: 29.77/12.39 mainModule Main 29.77/12.39 module FiniteMap where { 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.77/12.39 29.77/12.39 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.77/12.39 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.77/12.39 } 29.77/12.39 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.77/12.39 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.77/12.39 29.77/12.39 addListToFM0 old new = new; 29.77/12.39 29.77/12.39 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.77/12.39 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.77/12.39 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.77/12.39 }; 29.77/12.39 29.77/12.39 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 29.77/12.39 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 29.77/12.39 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; 29.77/12.39 29.77/12.39 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; 29.77/12.39 29.77/12.39 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); 29.77/12.39 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; 29.77/12.39 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 29.77/12.39 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); 29.77/12.39 29.77/12.39 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 29.77/12.39 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 29.77/12.39 29.77/12.39 emptyFM :: FiniteMap a b; 29.77/12.39 emptyFM = EmptyFM; 29.77/12.39 29.77/12.39 findMax :: FiniteMap b a -> (b,a); 29.77/12.39 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 29.77/12.39 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 29.77/12.39 29.77/12.39 findMin :: FiniteMap b a -> (b,a); 29.77/12.39 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 29.77/12.39 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 29.77/12.39 29.77/12.39 fmToList :: FiniteMap b a -> [(b,a)]; 29.77/12.39 fmToList fm = foldFM fmToList0 [] fm; 29.77/12.39 29.77/12.39 fmToList0 key elt rest = (key,elt) : rest; 29.77/12.39 29.77/12.39 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 29.77/12.39 foldFM k z EmptyFM = z; 29.77/12.39 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.77/12.39 29.77/12.39 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.77/12.39 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.77/12.39 29.77/12.39 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.77/12.39 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 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); 29.77/12.39 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.77/12.39 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.77/12.39 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.77/12.39 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.77/12.39 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.77/12.39 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.77/12.39 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.77/12.39 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.77/12.39 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; 29.77/12.39 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); 29.77/12.39 size_l = sizeFM fm_L; 29.77/12.39 size_r = sizeFM fm_R; 29.77/12.39 }; 29.77/12.39 29.77/12.39 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.77/12.39 mkBranch which key elt fm_l fm_r = let { 29.77/12.39 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.77/12.39 } in result where { 29.77/12.39 balance_ok = True; 29.77/12.39 left_ok = left_ok0 fm_l key fm_l; 29.77/12.39 left_ok0 fm_l key EmptyFM = True; 29.77/12.39 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 29.77/12.39 biggest_left_key = fst (findMax fm_l); 29.77/12.39 } in biggest_left_key < key; 29.77/12.39 left_size = sizeFM fm_l; 29.77/12.39 right_ok = right_ok0 fm_r key fm_r; 29.77/12.39 right_ok0 fm_r key EmptyFM = True; 29.77/12.39 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 29.77/12.39 smallest_right_key = fst (findMin fm_r); 29.77/12.39 } in key < smallest_right_key; 29.77/12.39 right_size = sizeFM fm_r; 29.77/12.39 unbox :: Int -> Int; 29.77/12.39 unbox x = x; 29.77/12.39 }; 29.77/12.39 29.77/12.39 sIZE_RATIO :: Int; 29.77/12.39 sIZE_RATIO = 5; 29.77/12.39 29.77/12.39 sizeFM :: FiniteMap a b -> Int; 29.77/12.39 sizeFM EmptyFM = 0; 29.77/12.39 sizeFM (Branch vyu vyv size vyw vyx) = size; 29.77/12.39 29.77/12.39 unitFM :: b -> a -> FiniteMap b a; 29.77/12.39 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.77/12.39 29.77/12.39 } 29.77/12.39 module Maybe where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Main; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 module Main where { 29.77/12.39 import qualified FiniteMap; 29.77/12.39 import qualified Maybe; 29.77/12.39 import qualified Prelude; 29.77/12.39 } 29.77/12.39 29.77/12.39 ---------------------------------------- 29.77/12.39 29.77/12.39 (11) LetRed (EQUIVALENT) 29.77/12.39 Let/Where Reductions: 29.77/12.39 The bindings of the following Let/Where expression 29.77/12.39 "gcd' (abs x) (abs y) where { 29.77/12.39 gcd' x vzw = gcd'2 x vzw; 29.77/12.39 gcd' x y = gcd'0 x y; 29.77/12.39 ; 29.77/12.39 gcd'0 x y = gcd' y (x `rem` y); 29.77/12.39 ; 29.77/12.39 gcd'1 True x vzw = x; 29.77/12.39 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 29.77/12.39 ; 29.77/12.39 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 30.13/12.41 gcd'2 wuu wuv = gcd'0 wuu wuv; 30.13/12.41 } 30.13/12.41 " 30.13/12.41 are unpacked to the following functions on top level 30.13/12.41 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 30.13/12.41 " 30.13/12.41 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 30.13/12.41 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 30.13/12.41 " 30.13/12.41 "gcd0Gcd'1 True x vzw = x; 30.13/12.41 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 30.13/12.41 " 30.13/12.41 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 30.13/12.41 gcd0Gcd' x y = gcd0Gcd'0 x y; 30.13/12.41 " 30.13/12.41 The bindings of the following Let/Where expression 30.13/12.41 "reduce1 x y (y == 0) where { 30.13/12.41 d = gcd x y; 30.13/12.41 ; 30.13/12.41 reduce0 x y True = x `quot` d :% (y `quot` d); 30.13/12.41 ; 30.13/12.41 reduce1 x y True = error []; 30.13/12.41 reduce1 x y False = reduce0 x y otherwise; 30.13/12.41 } 30.13/12.41 " 30.13/12.41 are unpacked to the following functions on top level 30.13/12.41 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 30.13/12.41 " 30.13/12.41 "reduce2Reduce1 wxw wxx x y True = error []; 30.13/12.41 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 30.13/12.41 " 30.13/12.41 "reduce2D wxw wxx = gcd wxw wxx; 30.13/12.41 " 30.13/12.41 The bindings of the following Let/Where expression 30.13/12.41 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 30.13/12.41 ; 30.13/12.41 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 30.13/12.41 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; 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 30.13/12.41 ; 30.13/12.41 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 30.13/12.41 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; 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.13/12.41 ; 30.13/12.41 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 30.13/12.41 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 30.13/12.41 ; 30.13/12.41 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 30.13/12.41 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 30.13/12.41 ; 30.13/12.41 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.13/12.41 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 30.13/12.41 ; 30.13/12.41 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; 30.13/12.41 ; 30.13/12.41 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); 30.13/12.41 ; 30.13/12.41 size_l = sizeFM fm_L; 30.13/12.41 ; 30.13/12.41 size_r = sizeFM fm_R; 30.13/12.41 } 30.13/12.41 " 30.13/12.41 are unpacked to the following functions on top level 30.13/12.41 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.13/12.41 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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; 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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; 30.13/12.41 " 30.13/12.41 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.13/12.41 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); 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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; 30.13/12.41 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; 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 "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; 30.13/12.41 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; 30.13/12.41 " 30.13/12.41 "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; 30.13/12.41 " 30.13/12.41 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 30.13/12.41 " 30.13/12.41 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.13/12.41 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); 30.13/12.41 " 30.13/12.41 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.13/12.41 " 30.13/12.41 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.13/12.41 " 30.13/12.41 "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); 30.13/12.41 " 30.13/12.41 The bindings of the following Let/Where expression 30.13/12.41 "foldl add fm key_elt_pairs where { 30.13/12.41 add fmap (key,elt) = addToFM_C combiner fmap key elt; 30.13/12.41 } 30.13/12.41 " 30.13/12.41 are unpacked to the following functions on top level 30.13/12.41 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.13/12.41 " 30.13/12.41 The bindings of the following Let/Where expression 30.13/12.41 "let { 30.13/12.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.13/12.41 } in result where { 30.13/12.41 balance_ok = True; 30.13/12.41 ; 30.13/12.41 left_ok = left_ok0 fm_l key fm_l; 30.13/12.41 ; 30.13/12.41 left_ok0 fm_l key EmptyFM = True; 30.13/12.41 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 30.13/12.41 biggest_left_key = fst (findMax fm_l); 30.13/12.41 } in biggest_left_key < key; 30.13/12.41 ; 30.13/12.41 left_size = sizeFM fm_l; 30.13/12.41 ; 30.13/12.41 right_ok = right_ok0 fm_r key fm_r; 30.13/12.41 ; 30.13/12.41 right_ok0 fm_r key EmptyFM = True; 30.13/12.41 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 30.13/12.41 smallest_right_key = fst (findMin fm_r); 30.13/12.41 } in key < smallest_right_key; 30.13/12.41 ; 30.13/12.41 right_size = sizeFM fm_r; 30.13/12.41 ; 30.13/12.41 unbox x = x; 30.13/12.41 } 30.13/12.41 " 30.13/12.41 are unpacked to the following functions on top level 30.13/12.41 "mkBranchUnbox wyx wyy wyz x = x; 30.13/12.41 " 30.13/12.41 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 30.13/12.41 " 30.13/12.41 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.13/12.41 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.13/12.41 " 30.13/12.41 "mkBranchRight_size wyx wyy wyz = sizeFM wyz; 30.13/12.41 " 30.13/12.41 "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.13/12.41 " 30.13/12.41 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 30.13/12.44 " 30.13/12.44 "mkBranchBalance_ok wyx wyy wyz = True; 30.13/12.44 " 30.13/12.44 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.13/12.44 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.13/12.44 " 30.13/12.44 The bindings of the following Let/Where expression 30.13/12.44 "let { 30.13/12.44 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.13/12.44 } in result" 30.13/12.44 are unpacked to the following functions on top level 30.13/12.44 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; 30.13/12.44 " 30.13/12.44 The bindings of the following Let/Where expression 30.13/12.44 "let { 30.13/12.44 biggest_left_key = fst (findMax fm_l); 30.13/12.44 } in biggest_left_key < key" 30.13/12.44 are unpacked to the following functions on top level 30.13/12.44 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.13/12.44 " 30.13/12.44 The bindings of the following Let/Where expression 30.13/12.44 "let { 30.13/12.44 smallest_right_key = fst (findMin fm_r); 30.13/12.44 } in key < smallest_right_key" 30.13/12.44 are unpacked to the following functions on top level 30.13/12.44 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.13/12.44 " 30.13/12.44 30.13/12.44 ---------------------------------------- 30.13/12.44 30.13/12.44 (12) 30.13/12.44 Obligation: 30.13/12.44 mainModule Main 30.13/12.44 module FiniteMap where { 30.13/12.44 import qualified Main; 30.13/12.44 import qualified Maybe; 30.13/12.44 import qualified Prelude; 30.13/12.44 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.13/12.44 30.13/12.44 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.13/12.44 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.13/12.44 } 30.13/12.44 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 30.13/12.44 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 30.13/12.44 30.13/12.44 addListToFM0 old new = new; 30.13/12.44 30.13/12.44 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 30.13/12.44 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 30.13/12.44 30.13/12.44 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.13/12.44 30.13/12.44 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 30.13/12.44 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 30.13/12.44 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 30.13/12.44 30.13/12.44 emptyFM :: FiniteMap b a; 30.13/12.44 emptyFM = EmptyFM; 30.13/12.44 30.13/12.44 findMax :: FiniteMap b a -> (b,a); 30.13/12.44 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 30.13/12.44 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 30.13/12.44 30.13/12.44 findMin :: FiniteMap b a -> (b,a); 30.13/12.44 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 30.13/12.44 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 30.13/12.44 30.13/12.44 fmToList :: FiniteMap b a -> [(b,a)]; 30.13/12.44 fmToList fm = foldFM fmToList0 [] fm; 30.13/12.44 30.13/12.44 fmToList0 key elt rest = (key,elt) : rest; 30.13/12.44 30.13/12.44 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 30.13/12.44 foldFM k z EmptyFM = z; 30.13/12.44 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.13/12.44 30.13/12.44 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.13/12.44 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.13/12.44 30.13/12.44 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.13/12.44 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 30.13/12.44 30.13/12.44 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.13/12.44 30.13/12.44 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.13/12.44 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 30.13/12.44 30.13/12.44 mkBranchBalance_ok wyx wyy wyz = True; 30.13/12.44 30.13/12.44 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 30.13/12.44 30.13/12.44 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.13/12.44 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.13/12.44 30.13/12.44 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.13/12.44 30.13/12.44 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.13/12.44 30.13/12.44 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; 30.13/12.44 30.13/12.44 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 30.13/12.44 30.13/12.44 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.13/12.44 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.13/12.44 30.13/12.44 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.13/12.44 30.13/12.44 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 30.13/12.44 30.13/12.44 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 30.13/12.44 mkBranchUnbox wyx wyy wyz x = x; 30.13/12.44 30.13/12.44 sIZE_RATIO :: Int; 30.13/12.44 sIZE_RATIO = 5; 30.13/12.44 30.13/12.44 sizeFM :: FiniteMap b a -> Int; 30.13/12.44 sizeFM EmptyFM = 0; 30.13/12.44 sizeFM (Branch vyu vyv size vyw vyx) = size; 30.13/12.44 30.13/12.44 unitFM :: a -> b -> FiniteMap a b; 30.13/12.44 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 30.13/12.44 30.13/12.44 } 30.13/12.44 module Maybe where { 30.13/12.44 import qualified FiniteMap; 30.13/12.44 import qualified Main; 30.13/12.44 import qualified Prelude; 30.13/12.44 } 30.13/12.44 module Main where { 30.13/12.44 import qualified FiniteMap; 30.13/12.44 import qualified Maybe; 30.13/12.44 import qualified Prelude; 30.13/12.44 } 30.13/12.44 30.13/12.44 ---------------------------------------- 30.13/12.44 30.13/12.44 (13) NumRed (SOUND) 30.13/12.44 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 30.13/12.44 ---------------------------------------- 30.13/12.44 30.13/12.44 (14) 30.13/12.44 Obligation: 30.13/12.44 mainModule Main 30.13/12.44 module FiniteMap where { 30.13/12.44 import qualified Main; 30.13/12.44 import qualified Maybe; 30.13/12.44 import qualified Prelude; 30.13/12.44 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.13/12.44 30.13/12.44 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.13/12.44 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.13/12.44 } 30.13/12.44 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 30.13/12.44 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 30.13/12.44 30.13/12.44 addListToFM0 old new = new; 30.13/12.44 30.13/12.44 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 30.13/12.44 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 30.13/12.44 30.13/12.44 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.13/12.44 30.13/12.44 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 30.13/12.44 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 30.13/12.44 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 30.13/12.44 30.13/12.44 emptyFM :: FiniteMap b a; 30.13/12.44 emptyFM = EmptyFM; 30.13/12.44 30.13/12.44 findMax :: FiniteMap a b -> (a,b); 30.13/12.44 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 30.13/12.44 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 30.13/12.44 30.13/12.44 findMin :: FiniteMap b a -> (b,a); 30.13/12.44 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 30.13/12.44 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 30.13/12.44 30.13/12.44 fmToList :: FiniteMap a b -> [(a,b)]; 30.13/12.44 fmToList fm = foldFM fmToList0 [] fm; 30.13/12.44 30.13/12.44 fmToList0 key elt rest = (key,elt) : rest; 30.13/12.44 30.13/12.44 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 30.13/12.44 foldFM k z EmptyFM = z; 30.13/12.44 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.13/12.44 30.13/12.44 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.13/12.44 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.13/12.44 30.13/12.44 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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; 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.13/12.44 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 30.13/12.44 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); 30.13/12.44 30.13/12.44 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; 30.13/12.44 30.13/12.44 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); 30.13/12.44 30.13/12.44 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 30.13/12.44 30.13/12.44 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.13/12.44 30.13/12.44 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.13/12.44 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 30.13/12.44 30.13/12.44 mkBranchBalance_ok wyx wyy wyz = True; 30.13/12.44 30.13/12.44 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 30.13/12.44 30.13/12.44 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.13/12.44 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.13/12.44 30.13/12.44 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.13/12.44 30.13/12.44 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.13/12.44 30.13/12.44 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; 30.13/12.44 30.13/12.44 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 30.13/12.44 30.13/12.44 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.13/12.44 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.13/12.44 30.13/12.44 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.13/12.44 30.13/12.44 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 30.13/12.44 30.13/12.44 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 30.13/12.44 mkBranchUnbox wyx wyy wyz x = x; 30.13/12.44 30.13/12.44 sIZE_RATIO :: Int; 30.13/12.44 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 30.13/12.44 30.13/12.44 sizeFM :: FiniteMap a b -> Int; 30.13/12.44 sizeFM EmptyFM = Pos Zero; 30.13/12.44 sizeFM (Branch vyu vyv size vyw vyx) = size; 30.13/12.44 30.13/12.44 unitFM :: b -> a -> FiniteMap b a; 30.13/12.44 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 30.13/12.44 30.13/12.44 } 30.13/12.44 module Maybe where { 30.13/12.44 import qualified FiniteMap; 30.13/12.44 import qualified Main; 30.13/12.44 import qualified Prelude; 30.13/12.44 } 30.13/12.44 module Main where { 30.13/12.44 import qualified FiniteMap; 30.13/12.44 import qualified Maybe; 30.13/12.44 import qualified Prelude; 30.13/12.44 } 30.13/12.44 30.13/12.44 ---------------------------------------- 30.13/12.44 30.13/12.44 (15) Narrow (SOUND) 30.13/12.44 Haskell To QDPs 30.13/12.44 30.13/12.44 digraph dp_graph { 30.13/12.44 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 30.13/12.44 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 30.13/12.44 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 30.13/12.44 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 30.13/12.44 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];4388[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 4388[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4388 -> 7[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4389[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4389[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4389 -> 8[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 30.13/12.44 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 30.13/12.44 9 -> 6[label="",style="dashed", color="red", weight=0]; 30.13/12.44 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="xuu41",fontsize=16,color="green",shape="box"];12[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];4390[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];12 -> 4390[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4390 -> 13[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 30.13/12.44 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];4391[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4391[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4391 -> 15[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4392[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 4392[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4392 -> 16[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 30.13/12.44 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 30.13/12.44 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 30.13/12.44 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 30.13/12.44 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 30.13/12.44 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 30.13/12.44 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 30.13/12.44 21 -> 24[label="",style="dashed", color="green", weight=3]; 30.13/12.44 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];22 -> 25[label="",style="solid", color="black", weight=3]; 30.13/12.44 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 30.13/12.44 24 -> 23[label="",style="dashed", color="red", weight=0]; 30.13/12.44 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare3 xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 30.13/12.44 26[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];27[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare2 xuu400 xuu30 (xuu400 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4393[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4393[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4393 -> 28[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4394[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4394[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4394 -> 29[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) xuu30 (Left xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4395[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4395[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4395 -> 30[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4396[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4396[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4396 -> 31[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) xuu30 (Right xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4397[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4397[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4397 -> 32[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4398[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4398[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4398 -> 33[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Left xuu300) (Left xuu4000 == Left xuu300) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 30.13/12.44 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 30.13/12.44 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 30.13/12.44 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Right xuu300) (Right xuu4000 == Right xuu300) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 30.13/12.44 34 -> 198[label="",style="dashed", color="red", weight=0]; 30.13/12.44 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];34 -> 199[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 200[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 201[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 202[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 203[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 204[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 205[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 34 -> 206[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 35 -> 114[label="",style="dashed", color="red", weight=0]; 30.13/12.44 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (compare2 (Left xuu4000) (Right xuu300) False == LT)",fontsize=16,color="magenta"];35 -> 115[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 36 -> 122[label="",style="dashed", color="red", weight=0]; 30.13/12.44 36[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Left xuu300) False == LT)",fontsize=16,color="magenta"];36 -> 123[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 252[label="",style="dashed", color="red", weight=0]; 30.13/12.44 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];37 -> 253[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 254[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 255[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 256[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 257[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 258[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 259[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 37 -> 260[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 199[label="xuu401",fontsize=16,color="green",shape="box"];200[label="xuu33",fontsize=16,color="green",shape="box"];201[label="xuu31",fontsize=16,color="green",shape="box"];202[label="xuu34",fontsize=16,color="green",shape="box"];203[label="xuu4000",fontsize=16,color="green",shape="box"];204[label="xuu300",fontsize=16,color="green",shape="box"];205[label="xuu32",fontsize=16,color="green",shape="box"];206 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 206[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];206 -> 210[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 206 -> 211[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 198[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 xuu41",fontsize=16,color="burlywood",shape="triangle"];4399[label="xuu41/False",fontsize=10,color="white",style="solid",shape="box"];198 -> 4399[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4399 -> 212[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4400[label="xuu41/True",fontsize=10,color="white",style="solid",shape="box"];198 -> 4400[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4400 -> 213[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 115 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 115[label="compare2 (Left xuu4000) (Right xuu300) False == LT",fontsize=16,color="magenta"];115 -> 118[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 115 -> 119[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 114[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 xuu39",fontsize=16,color="burlywood",shape="triangle"];4401[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];114 -> 4401[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4401 -> 120[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4402[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];114 -> 4402[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4402 -> 121[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 123 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 123[label="compare2 (Right xuu4000) (Left xuu300) False == LT",fontsize=16,color="magenta"];123 -> 126[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 123 -> 127[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 122[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 xuu40",fontsize=16,color="burlywood",shape="triangle"];4403[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];122 -> 4403[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4403 -> 128[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4404[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];122 -> 4404[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4404 -> 129[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 253[label="xuu34",fontsize=16,color="green",shape="box"];254[label="xuu31",fontsize=16,color="green",shape="box"];255[label="xuu32",fontsize=16,color="green",shape="box"];256[label="xuu300",fontsize=16,color="green",shape="box"];257[label="xuu33",fontsize=16,color="green",shape="box"];258[label="xuu4000",fontsize=16,color="green",shape="box"];259[label="xuu401",fontsize=16,color="green",shape="box"];260 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 260[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];260 -> 264[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 260 -> 265[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 252[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 xuu51",fontsize=16,color="burlywood",shape="triangle"];4405[label="xuu51/False",fontsize=10,color="white",style="solid",shape="box"];252 -> 4405[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4405 -> 266[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4406[label="xuu51/True",fontsize=10,color="white",style="solid",shape="box"];252 -> 4406[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4406 -> 267[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 210[label="LT",fontsize=16,color="green",shape="box"];211 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 211[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];211 -> 2170[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 211 -> 2171[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 211 -> 2172[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 68[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4407[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 4407[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4407 -> 105[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4408[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 4408[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4408 -> 106[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4409[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 4409[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4409 -> 107[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 212[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 False",fontsize=16,color="black",shape="box"];212 -> 225[label="",style="solid", color="black", weight=3]; 30.13/12.44 213[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];213 -> 226[label="",style="solid", color="black", weight=3]; 30.13/12.44 118[label="LT",fontsize=16,color="green",shape="box"];119 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 119[label="compare2 (Left xuu4000) (Right xuu300) False",fontsize=16,color="magenta"];119 -> 2173[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 119 -> 2174[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 119 -> 2175[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 120[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];120 -> 131[label="",style="solid", color="black", weight=3]; 30.13/12.44 121[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];121 -> 132[label="",style="solid", color="black", weight=3]; 30.13/12.44 126[label="LT",fontsize=16,color="green",shape="box"];127 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 127[label="compare2 (Right xuu4000) (Left xuu300) False",fontsize=16,color="magenta"];127 -> 2176[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 127 -> 2177[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 127 -> 2178[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 128[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];128 -> 215[label="",style="solid", color="black", weight=3]; 30.13/12.44 129[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];129 -> 216[label="",style="solid", color="black", weight=3]; 30.13/12.44 264[label="LT",fontsize=16,color="green",shape="box"];265 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 265[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];265 -> 2179[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 265 -> 2180[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 265 -> 2181[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 266[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 False",fontsize=16,color="black",shape="box"];266 -> 303[label="",style="solid", color="black", weight=3]; 30.13/12.44 267[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];267 -> 304[label="",style="solid", color="black", weight=3]; 30.13/12.44 2170[label="Left xuu300",fontsize=16,color="green",shape="box"];2171[label="Left xuu4000",fontsize=16,color="green",shape="box"];2172[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4410[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4410[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4410 -> 2207[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4411[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4411[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4411 -> 2208[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4412[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4412[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4412 -> 2209[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4413[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4413[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4413 -> 2210[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4414[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4414[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4414 -> 2211[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4415[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4415[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4415 -> 2212[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4416[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4416[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4416 -> 2213[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4417[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4417[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4417 -> 2214[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4418[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4418[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4418 -> 2215[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4419[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4419[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4419 -> 2216[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4420[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4420[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4420 -> 2217[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4421[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4421[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4421 -> 2218[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4422[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4422[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4422 -> 2219[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4423[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4423[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4423 -> 2220[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2169[label="compare2 xuu470 xuu480 xuu145",fontsize=16,color="burlywood",shape="triangle"];4424[label="xuu145/False",fontsize=10,color="white",style="solid",shape="box"];2169 -> 4424[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4424 -> 2221[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4425[label="xuu145/True",fontsize=10,color="white",style="solid",shape="box"];2169 -> 4425[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4425 -> 2222[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 105[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];4426[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];105 -> 4426[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4426 -> 183[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4427[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];105 -> 4427[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4427 -> 184[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4428[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];105 -> 4428[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4428 -> 185[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 106[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];4429[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];106 -> 4429[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4429 -> 186[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4430[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];106 -> 4430[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4430 -> 187[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4431[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];106 -> 4431[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4431 -> 188[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 107[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];4432[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];107 -> 4432[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4432 -> 189[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4433[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];107 -> 4433[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4433 -> 190[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4434[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];107 -> 4434[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4434 -> 191[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 225 -> 296[label="",style="dashed", color="red", weight=0]; 30.13/12.44 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 (Left xuu19 > Left xuu14)",fontsize=16,color="magenta"];225 -> 297[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 226 -> 245[label="",style="dashed", color="red", weight=0]; 30.13/12.44 226[label="FiniteMap.mkBalBranch (Left xuu14) xuu15 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Left xuu19) xuu20) xuu18",fontsize=16,color="magenta"];226 -> 246[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 226 -> 247[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 226 -> 248[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 226 -> 249[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2173[label="Right xuu300",fontsize=16,color="green",shape="box"];2174[label="Left xuu4000",fontsize=16,color="green",shape="box"];2175[label="False",fontsize=16,color="green",shape="box"];131 -> 329[label="",style="dashed", color="red", weight=0]; 30.13/12.44 131[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 (Left xuu4000 > Right xuu300)",fontsize=16,color="magenta"];131 -> 330[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 132 -> 219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 132[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Left xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];132 -> 220[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2176[label="Left xuu300",fontsize=16,color="green",shape="box"];2177[label="Right xuu4000",fontsize=16,color="green",shape="box"];2178[label="False",fontsize=16,color="green",shape="box"];215 -> 344[label="",style="dashed", color="red", weight=0]; 30.13/12.44 215[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 (Right xuu4000 > Left xuu300)",fontsize=16,color="magenta"];215 -> 345[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 216 -> 245[label="",style="dashed", color="red", weight=0]; 30.13/12.44 216[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Right xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];216 -> 250[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2179[label="Right xuu300",fontsize=16,color="green",shape="box"];2180[label="Right xuu4000",fontsize=16,color="green",shape="box"];2181[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4435[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4435[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4435 -> 2223[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4436[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4436[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4436 -> 2224[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4437[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4437[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4437 -> 2225[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4438[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4438[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4438 -> 2226[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4439[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4439[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4439 -> 2227[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4440[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4440[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4440 -> 2228[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4441[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4441[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4441 -> 2229[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4442[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4442[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4442 -> 2230[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4443[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4443[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4443 -> 2231[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4444[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4444[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4444 -> 2232[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4445[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4445[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4445 -> 2233[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4446[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4446[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4446 -> 2234[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4447[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4447[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4447 -> 2235[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4448[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4448 -> 2236[label="",style="solid", color="blue", weight=3]; 30.13/12.44 303 -> 382[label="",style="dashed", color="red", weight=0]; 30.13/12.44 303[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 (Right xuu36 > Right xuu31)",fontsize=16,color="magenta"];303 -> 383[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 304 -> 219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 304[label="FiniteMap.mkBalBranch (Right xuu31) xuu32 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu36) xuu37) xuu35",fontsize=16,color="magenta"];304 -> 333[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 304 -> 334[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 304 -> 335[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 304 -> 336[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2207[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2207 -> 2277[label="",style="solid", color="black", weight=3]; 30.13/12.44 2208[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4449[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];2208 -> 4449[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4449 -> 2278[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2209[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4450[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4450[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4450 -> 2279[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4451[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4451[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4451 -> 2280[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2210[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2210 -> 2281[label="",style="solid", color="black", weight=3]; 30.13/12.44 2211[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4452[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];2211 -> 4452[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4452 -> 2282[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4453[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];2211 -> 4453[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4453 -> 2283[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2212[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2212 -> 2284[label="",style="solid", color="black", weight=3]; 30.13/12.44 2213[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4454[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];2213 -> 4454[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4454 -> 2285[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2214[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4455[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4455[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4455 -> 2286[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2215[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4456[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];2215 -> 4456[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4456 -> 2287[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2216[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4457[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];2216 -> 4457[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4457 -> 2288[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4458[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];2216 -> 4458[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4458 -> 2289[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2217 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2217[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2218[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4459[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];2218 -> 4459[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4459 -> 2290[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4460[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];2218 -> 4460[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4460 -> 2291[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2219[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2219 -> 2292[label="",style="solid", color="black", weight=3]; 30.13/12.44 2220[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4461[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];2220 -> 4461[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4461 -> 2293[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2221[label="compare2 xuu470 xuu480 False",fontsize=16,color="black",shape="box"];2221 -> 2294[label="",style="solid", color="black", weight=3]; 30.13/12.44 2222[label="compare2 xuu470 xuu480 True",fontsize=16,color="black",shape="box"];2222 -> 2295[label="",style="solid", color="black", weight=3]; 30.13/12.44 183[label="LT == LT",fontsize=16,color="black",shape="box"];183 -> 287[label="",style="solid", color="black", weight=3]; 30.13/12.44 184[label="LT == EQ",fontsize=16,color="black",shape="box"];184 -> 288[label="",style="solid", color="black", weight=3]; 30.13/12.44 185[label="LT == GT",fontsize=16,color="black",shape="box"];185 -> 289[label="",style="solid", color="black", weight=3]; 30.13/12.44 186[label="EQ == LT",fontsize=16,color="black",shape="box"];186 -> 290[label="",style="solid", color="black", weight=3]; 30.13/12.44 187[label="EQ == EQ",fontsize=16,color="black",shape="box"];187 -> 291[label="",style="solid", color="black", weight=3]; 30.13/12.44 188[label="EQ == GT",fontsize=16,color="black",shape="box"];188 -> 292[label="",style="solid", color="black", weight=3]; 30.13/12.44 189[label="GT == LT",fontsize=16,color="black",shape="box"];189 -> 293[label="",style="solid", color="black", weight=3]; 30.13/12.44 190[label="GT == EQ",fontsize=16,color="black",shape="box"];190 -> 294[label="",style="solid", color="black", weight=3]; 30.13/12.44 191[label="GT == GT",fontsize=16,color="black",shape="box"];191 -> 295[label="",style="solid", color="black", weight=3]; 30.13/12.44 297[label="Left xuu19 > Left xuu14",fontsize=16,color="black",shape="box"];297 -> 321[label="",style="solid", color="black", weight=3]; 30.13/12.44 296[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 xuu52",fontsize=16,color="burlywood",shape="triangle"];4462[label="xuu52/False",fontsize=10,color="white",style="solid",shape="box"];296 -> 4462[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4462 -> 322[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4463[label="xuu52/True",fontsize=10,color="white",style="solid",shape="box"];296 -> 4463[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4463 -> 323[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 246[label="xuu14",fontsize=16,color="green",shape="box"];247 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 247[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Left xuu19) xuu20",fontsize=16,color="magenta"];247 -> 324[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 247 -> 325[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 247 -> 326[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 248[label="xuu15",fontsize=16,color="green",shape="box"];249[label="xuu18",fontsize=16,color="green",shape="box"];245[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];245 -> 327[label="",style="solid", color="black", weight=3]; 30.13/12.44 330[label="Left xuu4000 > Right xuu300",fontsize=16,color="black",shape="box"];330 -> 337[label="",style="solid", color="black", weight=3]; 30.13/12.44 329[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 xuu60",fontsize=16,color="burlywood",shape="triangle"];4464[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];329 -> 4464[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4464 -> 338[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4465[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];329 -> 4465[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4465 -> 339[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 220 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 220[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Left xuu4000) xuu401",fontsize=16,color="magenta"];220 -> 340[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 220 -> 341[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 219[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];219 -> 342[label="",style="solid", color="black", weight=3]; 30.13/12.44 345[label="Right xuu4000 > Left xuu300",fontsize=16,color="black",shape="box"];345 -> 347[label="",style="solid", color="black", weight=3]; 30.13/12.44 344[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 xuu61",fontsize=16,color="burlywood",shape="triangle"];4466[label="xuu61/False",fontsize=10,color="white",style="solid",shape="box"];344 -> 4466[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4466 -> 348[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4467[label="xuu61/True",fontsize=10,color="white",style="solid",shape="box"];344 -> 4467[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4467 -> 349[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 250 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 250[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Right xuu4000) xuu401",fontsize=16,color="magenta"];250 -> 350[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 250 -> 351[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2223 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2223[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2223 -> 2296[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2223 -> 2297[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2224 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2224[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2224 -> 2298[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2224 -> 2299[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2225 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2225[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2225 -> 2300[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2225 -> 2301[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2226 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2226[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2226 -> 2302[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2226 -> 2303[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2227 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2227[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2227 -> 2304[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2227 -> 2305[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2228 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2228[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2228 -> 2306[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2228 -> 2307[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2229 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2229[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2229 -> 2308[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2229 -> 2309[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2230 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2230[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2230 -> 2310[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2230 -> 2311[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2231 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2231[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2231 -> 2312[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2231 -> 2313[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2232 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2232[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2232 -> 2314[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2232 -> 2315[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2233 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2233[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2233 -> 2316[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2233 -> 2317[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2234 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2234[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2234 -> 2318[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2234 -> 2319[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2235 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2235[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2235 -> 2320[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2235 -> 2321[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2236 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2236[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2236 -> 2322[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2236 -> 2323[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 383[label="Right xuu36 > Right xuu31",fontsize=16,color="black",shape="box"];383 -> 385[label="",style="solid", color="black", weight=3]; 30.13/12.44 382[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 xuu62",fontsize=16,color="burlywood",shape="triangle"];4468[label="xuu62/False",fontsize=10,color="white",style="solid",shape="box"];382 -> 4468[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4468 -> 386[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4469[label="xuu62/True",fontsize=10,color="white",style="solid",shape="box"];382 -> 4469[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4469 -> 387[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 333[label="xuu31",fontsize=16,color="green",shape="box"];334 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 334[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu36) xuu37",fontsize=16,color="magenta"];334 -> 388[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 334 -> 389[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 334 -> 390[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 335[label="xuu32",fontsize=16,color="green",shape="box"];336[label="xuu35",fontsize=16,color="green",shape="box"];2277[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4470[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];2277 -> 4470[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4470 -> 2354[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2278[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4471[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4471[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4471 -> 2355[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2279[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];4472[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4472[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4472 -> 2356[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4473[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4473[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4473 -> 2357[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2280[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4474[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4474[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4474 -> 2358[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4475[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4475[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4475 -> 2359[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2281[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];4476[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4476[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4476 -> 2360[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4477[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4477[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4477 -> 2361[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2282[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4478[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4478[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4478 -> 2362[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4479[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4479[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4479 -> 2363[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2283[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4480[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4480[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4480 -> 2364[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4481[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4481[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4481 -> 2365[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2284[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4482[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4482[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4482 -> 2366[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2285[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];4483[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4483[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4483 -> 2367[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2286[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4484[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];2286 -> 4484[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4484 -> 2368[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2287[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];4485[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];2287 -> 4485[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4485 -> 2369[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2288[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4486[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2288 -> 4486[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4486 -> 2370[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4487[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2288 -> 4487[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4487 -> 2371[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2289[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];4488[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2289 -> 4488[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4488 -> 2372[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4489[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2289 -> 4489[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4489 -> 2373[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2290[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];4490[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4490[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4490 -> 2374[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4491[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4491[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4491 -> 2375[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2291[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];4492[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4492[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4492 -> 2376[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4493[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4493[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4493 -> 2377[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2292[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4494[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2292 -> 4494[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4494 -> 2378[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2293[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];4495[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4495[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4495 -> 2379[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2294[label="compare1 xuu470 xuu480 (xuu470 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4496[label="xuu470/Left xuu4700",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4496[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4496 -> 2380[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4497[label="xuu470/Right xuu4700",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4497[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4497 -> 2381[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2295[label="EQ",fontsize=16,color="green",shape="box"];287[label="True",fontsize=16,color="green",shape="box"];288[label="False",fontsize=16,color="green",shape="box"];289[label="False",fontsize=16,color="green",shape="box"];290[label="False",fontsize=16,color="green",shape="box"];291[label="True",fontsize=16,color="green",shape="box"];292[label="False",fontsize=16,color="green",shape="box"];293[label="False",fontsize=16,color="green",shape="box"];294[label="False",fontsize=16,color="green",shape="box"];295[label="True",fontsize=16,color="green",shape="box"];321 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 321[label="compare (Left xuu19) (Left xuu14) == GT",fontsize=16,color="magenta"];321 -> 418[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 321 -> 419[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 322[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 False",fontsize=16,color="black",shape="box"];322 -> 420[label="",style="solid", color="black", weight=3]; 30.13/12.44 323[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];323 -> 421[label="",style="solid", color="black", weight=3]; 30.13/12.44 324[label="Left xuu19",fontsize=16,color="green",shape="box"];325[label="xuu20",fontsize=16,color="green",shape="box"];326[label="xuu17",fontsize=16,color="green",shape="box"];327[label="FiniteMap.mkBalBranch6 (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="box"];327 -> 422[label="",style="solid", color="black", weight=3]; 30.13/12.44 337 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 337[label="compare (Left xuu4000) (Right xuu300) == GT",fontsize=16,color="magenta"];337 -> 423[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 337 -> 424[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 338[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];338 -> 425[label="",style="solid", color="black", weight=3]; 30.13/12.44 339[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];339 -> 426[label="",style="solid", color="black", weight=3]; 30.13/12.44 340[label="Left xuu4000",fontsize=16,color="green",shape="box"];341[label="xuu33",fontsize=16,color="green",shape="box"];342[label="FiniteMap.mkBalBranch6 (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="box"];342 -> 427[label="",style="solid", color="black", weight=3]; 30.13/12.44 347 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 347[label="compare (Right xuu4000) (Left xuu300) == GT",fontsize=16,color="magenta"];347 -> 429[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 347 -> 430[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 348[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];348 -> 431[label="",style="solid", color="black", weight=3]; 30.13/12.44 349[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];349 -> 432[label="",style="solid", color="black", weight=3]; 30.13/12.44 350[label="Right xuu4000",fontsize=16,color="green",shape="box"];351[label="xuu33",fontsize=16,color="green",shape="box"];2296[label="xuu300",fontsize=16,color="green",shape="box"];2297[label="xuu4000",fontsize=16,color="green",shape="box"];2298[label="xuu300",fontsize=16,color="green",shape="box"];2299[label="xuu4000",fontsize=16,color="green",shape="box"];2300[label="xuu300",fontsize=16,color="green",shape="box"];2301[label="xuu4000",fontsize=16,color="green",shape="box"];2302[label="xuu300",fontsize=16,color="green",shape="box"];2303[label="xuu4000",fontsize=16,color="green",shape="box"];2304[label="xuu300",fontsize=16,color="green",shape="box"];2305[label="xuu4000",fontsize=16,color="green",shape="box"];2306[label="xuu300",fontsize=16,color="green",shape="box"];2307[label="xuu4000",fontsize=16,color="green",shape="box"];2308[label="xuu300",fontsize=16,color="green",shape="box"];2309[label="xuu4000",fontsize=16,color="green",shape="box"];2310[label="xuu300",fontsize=16,color="green",shape="box"];2311[label="xuu4000",fontsize=16,color="green",shape="box"];2312[label="xuu300",fontsize=16,color="green",shape="box"];2313[label="xuu4000",fontsize=16,color="green",shape="box"];2314[label="xuu300",fontsize=16,color="green",shape="box"];2315[label="xuu4000",fontsize=16,color="green",shape="box"];2316[label="xuu300",fontsize=16,color="green",shape="box"];2317[label="xuu4000",fontsize=16,color="green",shape="box"];2318[label="xuu300",fontsize=16,color="green",shape="box"];2319[label="xuu4000",fontsize=16,color="green",shape="box"];2320[label="xuu300",fontsize=16,color="green",shape="box"];2321[label="xuu4000",fontsize=16,color="green",shape="box"];2322[label="xuu300",fontsize=16,color="green",shape="box"];2323[label="xuu4000",fontsize=16,color="green",shape="box"];385 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 385[label="compare (Right xuu36) (Right xuu31) == GT",fontsize=16,color="magenta"];385 -> 434[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 385 -> 435[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 386[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 False",fontsize=16,color="black",shape="box"];386 -> 436[label="",style="solid", color="black", weight=3]; 30.13/12.44 387[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];387 -> 437[label="",style="solid", color="black", weight=3]; 30.13/12.44 388[label="Right xuu36",fontsize=16,color="green",shape="box"];389[label="xuu37",fontsize=16,color="green",shape="box"];390[label="xuu34",fontsize=16,color="green",shape="box"];2354[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4498[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4498[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4498 -> 2450[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2355[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];2355 -> 2451[label="",style="solid", color="black", weight=3]; 30.13/12.44 2356[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2356 -> 2452[label="",style="solid", color="black", weight=3]; 30.13/12.44 2357[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];2357 -> 2453[label="",style="solid", color="black", weight=3]; 30.13/12.44 2358[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];2358 -> 2454[label="",style="solid", color="black", weight=3]; 30.13/12.44 2359[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];2359 -> 2455[label="",style="solid", color="black", weight=3]; 30.13/12.44 2360[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4499[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4499[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4499 -> 2456[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4500[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4500[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4500 -> 2457[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2361[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4501[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4501[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4501 -> 2458[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4502[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4502[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4502 -> 2459[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2362[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2362 -> 2460[label="",style="solid", color="black", weight=3]; 30.13/12.44 2363[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2363 -> 2461[label="",style="solid", color="black", weight=3]; 30.13/12.44 2364[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2364 -> 2462[label="",style="solid", color="black", weight=3]; 30.13/12.44 2365[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2365 -> 2463[label="",style="solid", color="black", weight=3]; 30.13/12.44 2366[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4503[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2366 -> 4503[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4503 -> 2464[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2367[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];2367 -> 2465[label="",style="solid", color="black", weight=3]; 30.13/12.44 2368[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];2368 -> 2466[label="",style="solid", color="black", weight=3]; 30.13/12.44 2369[label="() == ()",fontsize=16,color="black",shape="box"];2369 -> 2467[label="",style="solid", color="black", weight=3]; 30.13/12.44 2370[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2370 -> 2468[label="",style="solid", color="black", weight=3]; 30.13/12.44 2371[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];2371 -> 2469[label="",style="solid", color="black", weight=3]; 30.13/12.44 2372[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2372 -> 2470[label="",style="solid", color="black", weight=3]; 30.13/12.44 2373[label="[] == []",fontsize=16,color="black",shape="box"];2373 -> 2471[label="",style="solid", color="black", weight=3]; 30.13/12.44 2374[label="False == False",fontsize=16,color="black",shape="box"];2374 -> 2472[label="",style="solid", color="black", weight=3]; 30.13/12.44 2375[label="False == True",fontsize=16,color="black",shape="box"];2375 -> 2473[label="",style="solid", color="black", weight=3]; 30.13/12.44 2376[label="True == False",fontsize=16,color="black",shape="box"];2376 -> 2474[label="",style="solid", color="black", weight=3]; 30.13/12.44 2377[label="True == True",fontsize=16,color="black",shape="box"];2377 -> 2475[label="",style="solid", color="black", weight=3]; 30.13/12.44 2378[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4504[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4504[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4504 -> 2476[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2379[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];2379 -> 2477[label="",style="solid", color="black", weight=3]; 30.13/12.44 2380[label="compare1 (Left xuu4700) xuu480 (Left xuu4700 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4505[label="xuu480/Left xuu4800",fontsize=10,color="white",style="solid",shape="box"];2380 -> 4505[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4505 -> 2478[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4506[label="xuu480/Right xuu4800",fontsize=10,color="white",style="solid",shape="box"];2380 -> 4506[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4506 -> 2479[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2381[label="compare1 (Right xuu4700) xuu480 (Right xuu4700 <= xuu480)",fontsize=16,color="burlywood",shape="box"];4507[label="xuu480/Left xuu4800",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4507[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4507 -> 2480[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4508[label="xuu480/Right xuu4800",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4508[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4508 -> 2481[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 418[label="GT",fontsize=16,color="green",shape="box"];419[label="compare (Left xuu19) (Left xuu14)",fontsize=16,color="black",shape="box"];419 -> 476[label="",style="solid", color="black", weight=3]; 30.13/12.44 420[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 otherwise",fontsize=16,color="black",shape="box"];420 -> 477[label="",style="solid", color="black", weight=3]; 30.13/12.44 421 -> 245[label="",style="dashed", color="red", weight=0]; 30.13/12.44 421[label="FiniteMap.mkBalBranch (Left xuu14) xuu15 xuu17 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Left xuu19) xuu20)",fontsize=16,color="magenta"];421 -> 478[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 421 -> 479[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 421 -> 480[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 421 -> 481[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 422 -> 601[label="",style="dashed", color="red", weight=0]; 30.13/12.44 422[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];422 -> 602[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 423[label="GT",fontsize=16,color="green",shape="box"];424[label="compare (Left xuu4000) (Right xuu300)",fontsize=16,color="black",shape="box"];424 -> 483[label="",style="solid", color="black", weight=3]; 30.13/12.44 425[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];425 -> 484[label="",style="solid", color="black", weight=3]; 30.13/12.44 426 -> 219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 426[label="FiniteMap.mkBalBranch (Right xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Left xuu4000) xuu401)",fontsize=16,color="magenta"];426 -> 485[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 426 -> 486[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 427 -> 611[label="",style="dashed", color="red", weight=0]; 30.13/12.44 427[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];427 -> 612[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 429[label="GT",fontsize=16,color="green",shape="box"];430[label="compare (Right xuu4000) (Left xuu300)",fontsize=16,color="black",shape="box"];430 -> 489[label="",style="solid", color="black", weight=3]; 30.13/12.44 431[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];431 -> 490[label="",style="solid", color="black", weight=3]; 30.13/12.44 432 -> 245[label="",style="dashed", color="red", weight=0]; 30.13/12.44 432[label="FiniteMap.mkBalBranch (Left xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu4000) xuu401)",fontsize=16,color="magenta"];432 -> 491[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 432 -> 492[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 434[label="GT",fontsize=16,color="green",shape="box"];435[label="compare (Right xuu36) (Right xuu31)",fontsize=16,color="black",shape="box"];435 -> 503[label="",style="solid", color="black", weight=3]; 30.13/12.44 436[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 otherwise",fontsize=16,color="black",shape="box"];436 -> 504[label="",style="solid", color="black", weight=3]; 30.13/12.44 437 -> 219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 437[label="FiniteMap.mkBalBranch (Right xuu31) xuu32 xuu34 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 (Right xuu36) xuu37)",fontsize=16,color="magenta"];437 -> 505[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 437 -> 506[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 437 -> 507[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 437 -> 508[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2450[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];2450 -> 2514[label="",style="solid", color="black", weight=3]; 30.13/12.44 2451 -> 2281[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2451[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];2451 -> 2515[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2451 -> 2516[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2452[label="True",fontsize=16,color="green",shape="box"];2453[label="False",fontsize=16,color="green",shape="box"];2454[label="False",fontsize=16,color="green",shape="box"];2455[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4509[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4509[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4509 -> 2517[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4510[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4510[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4510 -> 2518[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4511[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4511[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4511 -> 2519[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4512[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4512[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4512 -> 2520[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4513[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4513[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4513 -> 2521[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4514[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4514[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4514 -> 2522[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4515[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4515[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4515 -> 2523[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4516[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4516[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4516 -> 2524[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4517[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4517[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4517 -> 2525[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4518[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4518[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4518 -> 2526[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4519[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4519[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4519 -> 2527[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4520[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4520[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4520 -> 2528[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4521[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4521[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4521 -> 2529[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4522[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4522[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4522 -> 2530[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2456[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4523[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2456 -> 4523[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4523 -> 2531[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4524[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2456 -> 4524[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4524 -> 2532[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2457[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4525[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4525[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4525 -> 2533[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4526[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4526[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4526 -> 2534[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2458[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4527[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2458 -> 4527[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4527 -> 2535[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4528[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2458 -> 4528[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4528 -> 2536[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2459[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4529[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4529[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4529 -> 2537[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4530[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4530[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4530 -> 2538[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2460[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4531[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4531[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4531 -> 2539[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4532[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4532[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4532 -> 2540[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4533[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4533[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4533 -> 2541[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4534[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4534[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4534 -> 2542[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4535[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4535[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4535 -> 2543[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4536[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4536[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4536 -> 2544[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4537[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4537[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4537 -> 2545[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4538[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4538[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4538 -> 2546[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4539[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4539[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4539 -> 2547[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4540[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4540[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4540 -> 2548[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4541[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4541[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4541 -> 2549[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4542[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4542[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4542 -> 2550[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4543[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4543[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4543 -> 2551[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4544[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 4544[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4544 -> 2552[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2461[label="False",fontsize=16,color="green",shape="box"];2462[label="False",fontsize=16,color="green",shape="box"];2463[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4545[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4545[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4545 -> 2553[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4546[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4546[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4546 -> 2554[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4547[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4547[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4547 -> 2555[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4548[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4548[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4548 -> 2556[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4549[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4549[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4549 -> 2557[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4550[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4550[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4550 -> 2558[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4551[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4551[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4551 -> 2559[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4552[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4552[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4552 -> 2560[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4553[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4553 -> 2561[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4554[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4554[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4554 -> 2562[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4555[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4555[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4555 -> 2563[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4556[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4556[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4556 -> 2564[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4557[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4557[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4557 -> 2565[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4558[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4558[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4558 -> 2566[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2464[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2464 -> 2567[label="",style="solid", color="black", weight=3]; 30.13/12.44 2465 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2465[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2465 -> 2706[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2465 -> 2707[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2466 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2466[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2466 -> 2708[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2466 -> 2709[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2467[label="True",fontsize=16,color="green",shape="box"];2468 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2468[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2468 -> 2710[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2468 -> 2711[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2469[label="False",fontsize=16,color="green",shape="box"];2470[label="False",fontsize=16,color="green",shape="box"];2471[label="True",fontsize=16,color="green",shape="box"];2472[label="True",fontsize=16,color="green",shape="box"];2473[label="False",fontsize=16,color="green",shape="box"];2474[label="False",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2476 -> 2584[label="",style="solid", color="black", weight=3]; 30.13/12.44 2477 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2477[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2477 -> 2712[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2477 -> 2713[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2478[label="compare1 (Left xuu4700) (Left xuu4800) (Left xuu4700 <= Left xuu4800)",fontsize=16,color="black",shape="box"];2478 -> 2585[label="",style="solid", color="black", weight=3]; 30.13/12.44 2479[label="compare1 (Left xuu4700) (Right xuu4800) (Left xuu4700 <= Right xuu4800)",fontsize=16,color="black",shape="box"];2479 -> 2586[label="",style="solid", color="black", weight=3]; 30.13/12.44 2480[label="compare1 (Right xuu4700) (Left xuu4800) (Right xuu4700 <= Left xuu4800)",fontsize=16,color="black",shape="box"];2480 -> 2587[label="",style="solid", color="black", weight=3]; 30.13/12.44 2481[label="compare1 (Right xuu4700) (Right xuu4800) (Right xuu4700 <= Right xuu4800)",fontsize=16,color="black",shape="box"];2481 -> 2588[label="",style="solid", color="black", weight=3]; 30.13/12.44 476[label="compare3 (Left xuu19) (Left xuu14)",fontsize=16,color="black",shape="box"];476 -> 596[label="",style="solid", color="black", weight=3]; 30.13/12.44 477[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu14) xuu15 xuu16 xuu17 xuu18 (Left xuu19) xuu20 True",fontsize=16,color="black",shape="box"];477 -> 597[label="",style="solid", color="black", weight=3]; 30.13/12.44 478[label="xuu14",fontsize=16,color="green",shape="box"];479[label="xuu17",fontsize=16,color="green",shape="box"];480[label="xuu15",fontsize=16,color="green",shape="box"];481 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 481[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Left xuu19) xuu20",fontsize=16,color="magenta"];481 -> 598[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 481 -> 599[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 481 -> 600[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 602[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];602 -> 604[label="",style="solid", color="black", weight=3]; 30.13/12.44 601[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu95",fontsize=16,color="burlywood",shape="triangle"];4559[label="xuu95/False",fontsize=10,color="white",style="solid",shape="box"];601 -> 4559[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4559 -> 605[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4560[label="xuu95/True",fontsize=10,color="white",style="solid",shape="box"];601 -> 4560[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4560 -> 606[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 483[label="compare3 (Left xuu4000) (Right xuu300)",fontsize=16,color="black",shape="box"];483 -> 607[label="",style="solid", color="black", weight=3]; 30.13/12.44 484[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu300) xuu31 xuu32 xuu33 xuu34 (Left xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];484 -> 608[label="",style="solid", color="black", weight=3]; 30.13/12.44 485[label="xuu33",fontsize=16,color="green",shape="box"];486 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 486[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Left xuu4000) xuu401",fontsize=16,color="magenta"];486 -> 609[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 486 -> 610[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 612[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];612 -> 614[label="",style="solid", color="black", weight=3]; 30.13/12.44 611[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu96",fontsize=16,color="burlywood",shape="triangle"];4561[label="xuu96/False",fontsize=10,color="white",style="solid",shape="box"];611 -> 4561[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4561 -> 615[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4562[label="xuu96/True",fontsize=10,color="white",style="solid",shape="box"];611 -> 4562[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4562 -> 616[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 489[label="compare3 (Right xuu4000) (Left xuu300)",fontsize=16,color="black",shape="box"];489 -> 617[label="",style="solid", color="black", weight=3]; 30.13/12.44 490[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu300) xuu31 xuu32 xuu33 xuu34 (Right xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];490 -> 618[label="",style="solid", color="black", weight=3]; 30.13/12.44 491[label="xuu33",fontsize=16,color="green",shape="box"];492 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 492[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Right xuu4000) xuu401",fontsize=16,color="magenta"];492 -> 619[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 492 -> 620[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 503[label="compare3 (Right xuu36) (Right xuu31)",fontsize=16,color="black",shape="box"];503 -> 637[label="",style="solid", color="black", weight=3]; 30.13/12.44 504[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu31) xuu32 xuu33 xuu34 xuu35 (Right xuu36) xuu37 True",fontsize=16,color="black",shape="box"];504 -> 638[label="",style="solid", color="black", weight=3]; 30.13/12.44 505[label="xuu31",fontsize=16,color="green",shape="box"];506[label="xuu34",fontsize=16,color="green",shape="box"];507[label="xuu32",fontsize=16,color="green",shape="box"];508 -> 14[label="",style="dashed", color="red", weight=0]; 30.13/12.44 508[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 (Right xuu36) xuu37",fontsize=16,color="magenta"];508 -> 639[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 508 -> 640[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 508 -> 641[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2514[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4563[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4563[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4563 -> 2589[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4564[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4564[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4564 -> 2590[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2515[label="xuu3000",fontsize=16,color="green",shape="box"];2516[label="xuu40000",fontsize=16,color="green",shape="box"];2517 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2517[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2517 -> 2591[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2517 -> 2592[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2518 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2518[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2518 -> 2593[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2518 -> 2594[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2519 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2519[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2519 -> 2595[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2519 -> 2596[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2520 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2520[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2520 -> 2597[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2520 -> 2598[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2521 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2521[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2521 -> 2599[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2521 -> 2600[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2522 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2522[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2522 -> 2601[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2522 -> 2602[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2523 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2523[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2523 -> 2603[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2523 -> 2604[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2524 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2524[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2524 -> 2605[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2524 -> 2606[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2525 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2525[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2525 -> 2607[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2525 -> 2608[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2526 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2526[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2526 -> 2609[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2526 -> 2610[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2527 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2527[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2527 -> 2611[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2527 -> 2612[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2528 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2528[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2528 -> 2613[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2528 -> 2614[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2529 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2529[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2529 -> 2615[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2529 -> 2616[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2530 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2530[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2530 -> 2617[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2530 -> 2618[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2531[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4565[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2531 -> 4565[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4565 -> 2619[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4566[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2531 -> 4566[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4566 -> 2620[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2532[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];2532 -> 2621[label="",style="solid", color="black", weight=3]; 30.13/12.44 2533[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4567[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2533 -> 4567[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4567 -> 2622[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4568[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2533 -> 4568[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4568 -> 2623[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2534[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4569[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2534 -> 4569[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4569 -> 2624[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4570[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2534 -> 4570[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4570 -> 2625[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2535[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];2535 -> 2626[label="",style="solid", color="black", weight=3]; 30.13/12.44 2536[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4571[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2536 -> 4571[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4571 -> 2627[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4572[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2536 -> 4572[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4572 -> 2628[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2537[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4573[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4573[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4573 -> 2629[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4574[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4574[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4574 -> 2630[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2538[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4575[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2538 -> 4575[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4575 -> 2631[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4576[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2538 -> 4576[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4576 -> 2632[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2539 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2539[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2539 -> 2633[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2539 -> 2634[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2540 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2540[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2540 -> 2635[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2540 -> 2636[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2541 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2541[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2541 -> 2637[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2541 -> 2638[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2542 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2542[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2542 -> 2639[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2542 -> 2640[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2543 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2543[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2543 -> 2641[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2543 -> 2642[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2544 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2544[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2544 -> 2643[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2544 -> 2644[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2545 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2545[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2545 -> 2645[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2545 -> 2646[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2546 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2546[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2546 -> 2647[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2546 -> 2648[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2547 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2547[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2547 -> 2649[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2547 -> 2650[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2548 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2548[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2548 -> 2651[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2548 -> 2652[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2549 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2549[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2549 -> 2653[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2549 -> 2654[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2550 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2550[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2550 -> 2655[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2550 -> 2656[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2551 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2551[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2551 -> 2657[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2551 -> 2658[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2552 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2552[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2552 -> 2659[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2552 -> 2660[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2553 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2553[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2553 -> 2661[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2553 -> 2662[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2554 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2554[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2554 -> 2663[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2554 -> 2664[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2555 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2555[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2555 -> 2665[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2555 -> 2666[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2556 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2556[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2556 -> 2667[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2556 -> 2668[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2557 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2557[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2557 -> 2669[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2557 -> 2670[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2558 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2558[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2558 -> 2671[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2558 -> 2672[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2559 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2559[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2559 -> 2673[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2559 -> 2674[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2560 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2560[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2560 -> 2675[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2560 -> 2676[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2561 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2561[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2561 -> 2677[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2561 -> 2678[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2562 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2562[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2562 -> 2679[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2562 -> 2680[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2563 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2563[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2563 -> 2681[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2563 -> 2682[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2564 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2564[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2564 -> 2683[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2564 -> 2684[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2565 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2565[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2565 -> 2685[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2565 -> 2686[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2566 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2566[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2566 -> 2687[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2566 -> 2688[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2567 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2567[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2567 -> 2689[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2567 -> 2690[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2706[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4577[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4577[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4577 -> 2717[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4578[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4578[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4578 -> 2718[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4579[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4579[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4579 -> 2719[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4580[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4580[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4580 -> 2720[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4581[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4581[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4581 -> 2721[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4582[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4582[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4582 -> 2722[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4583[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4583[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4583 -> 2723[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4584[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4584[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4584 -> 2724[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4585[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4585[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4585 -> 2725[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4586[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4586[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4586 -> 2726[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4587[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4587[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4587 -> 2727[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4588[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4588[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4588 -> 2728[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4589[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4589[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4589 -> 2729[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4590[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4590[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4590 -> 2730[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2707 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2707[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2707 -> 2731[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2707 -> 2732[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2705[label="xuu160 && xuu172",fontsize=16,color="burlywood",shape="triangle"];4591[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4591[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4591 -> 2733[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4592[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4592[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4592 -> 2734[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2708[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4593[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2708 -> 4593[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4593 -> 2735[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4594[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2708 -> 4594[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4594 -> 2736[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2709[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4595[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2709 -> 4595[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4595 -> 2737[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4596[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2709 -> 4596[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4596 -> 2738[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2710[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4597[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4597[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4597 -> 2739[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4598[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4598[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4598 -> 2740[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4599[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4599[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4599 -> 2741[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4600[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4600[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4600 -> 2742[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4601[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4601[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4601 -> 2743[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4602[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4602[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4602 -> 2744[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4603[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4603[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4603 -> 2745[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4604[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4604[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4604 -> 2746[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4605[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4605[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4605 -> 2747[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4606[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4606[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4606 -> 2748[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4607[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4607[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4607 -> 2749[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4608[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4608[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4608 -> 2750[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4609[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4609[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4609 -> 2751[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4610[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4610 -> 2752[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2711 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2711[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2711 -> 2753[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2711 -> 2754[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2584 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2584[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2584 -> 2755[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2584 -> 2756[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2712[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4611[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4611[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4611 -> 2757[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4612[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4612[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4612 -> 2758[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4613[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4613[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4613 -> 2759[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4614[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4614[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4614 -> 2760[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4615[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4615[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4615 -> 2761[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4616[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4616[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4616 -> 2762[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4617[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4617[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4617 -> 2763[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4618[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4618[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4618 -> 2764[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4619[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4619[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4619 -> 2765[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4620[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4620[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4620 -> 2766[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4621[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4621[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4621 -> 2767[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4622[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4622[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4622 -> 2768[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4623[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4623[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4623 -> 2769[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4624[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4624[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4624 -> 2770[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2713[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4625[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4625[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4625 -> 2771[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4626[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4626[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4626 -> 2772[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4627[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4627[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4627 -> 2773[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4628[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4628[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4628 -> 2774[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4629[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4629[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4629 -> 2775[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4630[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4630[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4630 -> 2776[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4631[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4631[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4631 -> 2777[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4632[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4632[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4632 -> 2778[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4633[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4633[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4633 -> 2779[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4634[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4634[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4634 -> 2780[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4635[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4635[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4635 -> 2781[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4636[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4636[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4636 -> 2782[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4637[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4637[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4637 -> 2783[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4638[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4638[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4638 -> 2784[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2585 -> 2785[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2585[label="compare1 (Left xuu4700) (Left xuu4800) (xuu4700 <= xuu4800)",fontsize=16,color="magenta"];2585 -> 2786[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2585 -> 2787[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2585 -> 2788[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2586[label="compare1 (Left xuu4700) (Right xuu4800) True",fontsize=16,color="black",shape="box"];2586 -> 2789[label="",style="solid", color="black", weight=3]; 30.13/12.44 2587[label="compare1 (Right xuu4700) (Left xuu4800) False",fontsize=16,color="black",shape="box"];2587 -> 2790[label="",style="solid", color="black", weight=3]; 30.13/12.44 2588 -> 2791[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2588[label="compare1 (Right xuu4700) (Right xuu4800) (xuu4700 <= xuu4800)",fontsize=16,color="magenta"];2588 -> 2792[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2588 -> 2793[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2588 -> 2794[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 596 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 596[label="compare2 (Left xuu19) (Left xuu14) (Left xuu19 == Left xuu14)",fontsize=16,color="magenta"];596 -> 2194[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 596 -> 2195[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 596 -> 2196[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 597[label="FiniteMap.Branch (Left xuu19) (FiniteMap.addListToFM0 xuu15 xuu20) xuu16 xuu17 xuu18",fontsize=16,color="green",shape="box"];597 -> 861[label="",style="dashed", color="green", weight=3]; 30.13/12.44 598[label="Left xuu19",fontsize=16,color="green",shape="box"];599[label="xuu20",fontsize=16,color="green",shape="box"];600[label="xuu18",fontsize=16,color="green",shape="box"];604 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 604[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];604 -> 862[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 604 -> 863[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 605[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];605 -> 864[label="",style="solid", color="black", weight=3]; 30.13/12.44 606[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];606 -> 865[label="",style="solid", color="black", weight=3]; 30.13/12.44 607 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 607[label="compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300)",fontsize=16,color="magenta"];607 -> 2197[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 607 -> 2198[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 607 -> 2199[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 608[label="FiniteMap.Branch (Left xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];608 -> 871[label="",style="dashed", color="green", weight=3]; 30.13/12.44 609[label="Left xuu4000",fontsize=16,color="green",shape="box"];610[label="xuu34",fontsize=16,color="green",shape="box"];614 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 614[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];614 -> 872[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 614 -> 873[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 615[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];615 -> 874[label="",style="solid", color="black", weight=3]; 30.13/12.44 616[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];616 -> 875[label="",style="solid", color="black", weight=3]; 30.13/12.44 617 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 617[label="compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300)",fontsize=16,color="magenta"];617 -> 2200[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 617 -> 2201[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 617 -> 2202[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 618[label="FiniteMap.Branch (Right xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];618 -> 883[label="",style="dashed", color="green", weight=3]; 30.13/12.44 619[label="Right xuu4000",fontsize=16,color="green",shape="box"];620[label="xuu34",fontsize=16,color="green",shape="box"];637 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.44 637[label="compare2 (Right xuu36) (Right xuu31) (Right xuu36 == Right xuu31)",fontsize=16,color="magenta"];637 -> 2203[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 637 -> 2204[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 637 -> 2205[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 638[label="FiniteMap.Branch (Right xuu36) (FiniteMap.addListToFM0 xuu32 xuu37) xuu33 xuu34 xuu35",fontsize=16,color="green",shape="box"];638 -> 916[label="",style="dashed", color="green", weight=3]; 30.13/12.44 639[label="Right xuu36",fontsize=16,color="green",shape="box"];640[label="xuu37",fontsize=16,color="green",shape="box"];641[label="xuu35",fontsize=16,color="green",shape="box"];2589[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4639[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4639[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4639 -> 2795[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4640[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4640[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4640 -> 2796[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2590[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];4641[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4641[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4641 -> 2797[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4642[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4642[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4642 -> 2798[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2591[label="xuu3000",fontsize=16,color="green",shape="box"];2592[label="xuu40000",fontsize=16,color="green",shape="box"];2593[label="xuu3000",fontsize=16,color="green",shape="box"];2594[label="xuu40000",fontsize=16,color="green",shape="box"];2595[label="xuu3000",fontsize=16,color="green",shape="box"];2596[label="xuu40000",fontsize=16,color="green",shape="box"];2597[label="xuu3000",fontsize=16,color="green",shape="box"];2598[label="xuu40000",fontsize=16,color="green",shape="box"];2599[label="xuu3000",fontsize=16,color="green",shape="box"];2600[label="xuu40000",fontsize=16,color="green",shape="box"];2601[label="xuu3000",fontsize=16,color="green",shape="box"];2602[label="xuu40000",fontsize=16,color="green",shape="box"];2603[label="xuu3000",fontsize=16,color="green",shape="box"];2604[label="xuu40000",fontsize=16,color="green",shape="box"];2605[label="xuu3000",fontsize=16,color="green",shape="box"];2606[label="xuu40000",fontsize=16,color="green",shape="box"];2607[label="xuu3000",fontsize=16,color="green",shape="box"];2608[label="xuu40000",fontsize=16,color="green",shape="box"];2609[label="xuu3000",fontsize=16,color="green",shape="box"];2610[label="xuu40000",fontsize=16,color="green",shape="box"];2611[label="xuu3000",fontsize=16,color="green",shape="box"];2612[label="xuu40000",fontsize=16,color="green",shape="box"];2613[label="xuu3000",fontsize=16,color="green",shape="box"];2614[label="xuu40000",fontsize=16,color="green",shape="box"];2615[label="xuu3000",fontsize=16,color="green",shape="box"];2616[label="xuu40000",fontsize=16,color="green",shape="box"];2617[label="xuu3000",fontsize=16,color="green",shape="box"];2618[label="xuu40000",fontsize=16,color="green",shape="box"];2619[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2619 -> 2799[label="",style="solid", color="black", weight=3]; 30.13/12.44 2620[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2620 -> 2800[label="",style="solid", color="black", weight=3]; 30.13/12.44 2621[label="False",fontsize=16,color="green",shape="box"];2622[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2622 -> 2801[label="",style="solid", color="black", weight=3]; 30.13/12.44 2623[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2623 -> 2802[label="",style="solid", color="black", weight=3]; 30.13/12.44 2624[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2624 -> 2803[label="",style="solid", color="black", weight=3]; 30.13/12.44 2625[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2625 -> 2804[label="",style="solid", color="black", weight=3]; 30.13/12.44 2626[label="False",fontsize=16,color="green",shape="box"];2627[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2627 -> 2805[label="",style="solid", color="black", weight=3]; 30.13/12.44 2628[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2628 -> 2806[label="",style="solid", color="black", weight=3]; 30.13/12.44 2629[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2629 -> 2807[label="",style="solid", color="black", weight=3]; 30.13/12.44 2630[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2630 -> 2808[label="",style="solid", color="black", weight=3]; 30.13/12.44 2631[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2631 -> 2809[label="",style="solid", color="black", weight=3]; 30.13/12.44 2632[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2632 -> 2810[label="",style="solid", color="black", weight=3]; 30.13/12.44 2633[label="xuu3000",fontsize=16,color="green",shape="box"];2634[label="xuu40000",fontsize=16,color="green",shape="box"];2635[label="xuu3000",fontsize=16,color="green",shape="box"];2636[label="xuu40000",fontsize=16,color="green",shape="box"];2637[label="xuu3000",fontsize=16,color="green",shape="box"];2638[label="xuu40000",fontsize=16,color="green",shape="box"];2639[label="xuu3000",fontsize=16,color="green",shape="box"];2640[label="xuu40000",fontsize=16,color="green",shape="box"];2641[label="xuu3000",fontsize=16,color="green",shape="box"];2642[label="xuu40000",fontsize=16,color="green",shape="box"];2643[label="xuu3000",fontsize=16,color="green",shape="box"];2644[label="xuu40000",fontsize=16,color="green",shape="box"];2645[label="xuu3000",fontsize=16,color="green",shape="box"];2646[label="xuu40000",fontsize=16,color="green",shape="box"];2647[label="xuu3000",fontsize=16,color="green",shape="box"];2648[label="xuu40000",fontsize=16,color="green",shape="box"];2649[label="xuu3000",fontsize=16,color="green",shape="box"];2650[label="xuu40000",fontsize=16,color="green",shape="box"];2651[label="xuu3000",fontsize=16,color="green",shape="box"];2652[label="xuu40000",fontsize=16,color="green",shape="box"];2653[label="xuu3000",fontsize=16,color="green",shape="box"];2654[label="xuu40000",fontsize=16,color="green",shape="box"];2655[label="xuu3000",fontsize=16,color="green",shape="box"];2656[label="xuu40000",fontsize=16,color="green",shape="box"];2657[label="xuu3000",fontsize=16,color="green",shape="box"];2658[label="xuu40000",fontsize=16,color="green",shape="box"];2659[label="xuu3000",fontsize=16,color="green",shape="box"];2660[label="xuu40000",fontsize=16,color="green",shape="box"];2661[label="xuu3000",fontsize=16,color="green",shape="box"];2662[label="xuu40000",fontsize=16,color="green",shape="box"];2663[label="xuu3000",fontsize=16,color="green",shape="box"];2664[label="xuu40000",fontsize=16,color="green",shape="box"];2665[label="xuu3000",fontsize=16,color="green",shape="box"];2666[label="xuu40000",fontsize=16,color="green",shape="box"];2667[label="xuu3000",fontsize=16,color="green",shape="box"];2668[label="xuu40000",fontsize=16,color="green",shape="box"];2669[label="xuu3000",fontsize=16,color="green",shape="box"];2670[label="xuu40000",fontsize=16,color="green",shape="box"];2671[label="xuu3000",fontsize=16,color="green",shape="box"];2672[label="xuu40000",fontsize=16,color="green",shape="box"];2673[label="xuu3000",fontsize=16,color="green",shape="box"];2674[label="xuu40000",fontsize=16,color="green",shape="box"];2675[label="xuu3000",fontsize=16,color="green",shape="box"];2676[label="xuu40000",fontsize=16,color="green",shape="box"];2677[label="xuu3000",fontsize=16,color="green",shape="box"];2678[label="xuu40000",fontsize=16,color="green",shape="box"];2679[label="xuu3000",fontsize=16,color="green",shape="box"];2680[label="xuu40000",fontsize=16,color="green",shape="box"];2681[label="xuu3000",fontsize=16,color="green",shape="box"];2682[label="xuu40000",fontsize=16,color="green",shape="box"];2683[label="xuu3000",fontsize=16,color="green",shape="box"];2684[label="xuu40000",fontsize=16,color="green",shape="box"];2685[label="xuu3000",fontsize=16,color="green",shape="box"];2686[label="xuu40000",fontsize=16,color="green",shape="box"];2687[label="xuu3000",fontsize=16,color="green",shape="box"];2688[label="xuu40000",fontsize=16,color="green",shape="box"];2689 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2689[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2690 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2690[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2690 -> 2811[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2690 -> 2812[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2717 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2717[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2717 -> 2813[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2717 -> 2814[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2718 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2718[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2718 -> 2815[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2718 -> 2816[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2719 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2719[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2719 -> 2817[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2719 -> 2818[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2720 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2720[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2720 -> 2819[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2720 -> 2820[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2721 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2721[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2721 -> 2821[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2721 -> 2822[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2722 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2722[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2722 -> 2823[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2722 -> 2824[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2723 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2723[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2723 -> 2825[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2723 -> 2826[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2724 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2724[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2724 -> 2827[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2724 -> 2828[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2725 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2725[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2725 -> 2829[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2725 -> 2830[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2726 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2726[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2726 -> 2831[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2726 -> 2832[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2727 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2727[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2727 -> 2833[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2727 -> 2834[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2728 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2728[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2728 -> 2835[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2728 -> 2836[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2729 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2729[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2729 -> 2837[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2729 -> 2838[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2730 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2730[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2730 -> 2839[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2730 -> 2840[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2731[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4643[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4643[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4643 -> 2841[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4644[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4644[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4644 -> 2842[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4645[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4645[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4645 -> 2843[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4646[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4646[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4646 -> 2844[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4647[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4647[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4647 -> 2845[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4648[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4648[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4648 -> 2846[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4649[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4649[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4649 -> 2847[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4650[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4650[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4650 -> 2848[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4651[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4651[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4651 -> 2849[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4652[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4652[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4652 -> 2850[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4653[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4653[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4653 -> 2851[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4654[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4654[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4654 -> 2852[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4655[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4655[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4655 -> 2853[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4656[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4656[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4656 -> 2854[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2732[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];4657[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4657[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4657 -> 2855[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4658[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4658[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4658 -> 2856[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4659[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4659[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4659 -> 2857[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4660[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4660[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4660 -> 2858[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4661[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4661[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4661 -> 2859[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4662[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4662[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4662 -> 2860[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4663[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4663[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4663 -> 2861[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4664[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4664[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4664 -> 2862[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4665[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4665[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4665 -> 2863[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4666[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4666[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4666 -> 2864[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4667[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4667[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4667 -> 2865[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4668[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4668[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4668 -> 2866[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4669[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4669[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4669 -> 2867[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4670[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4670[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4670 -> 2868[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2733[label="False && xuu172",fontsize=16,color="black",shape="box"];2733 -> 2869[label="",style="solid", color="black", weight=3]; 30.13/12.44 2734[label="True && xuu172",fontsize=16,color="black",shape="box"];2734 -> 2870[label="",style="solid", color="black", weight=3]; 30.13/12.44 2735 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2735[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2735 -> 2871[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2735 -> 2872[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2736 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2736[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2736 -> 2873[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2736 -> 2874[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2737 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2737[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2737 -> 2875[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2737 -> 2876[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2738 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2738[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2738 -> 2877[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2738 -> 2878[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2739 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2739[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2739 -> 2879[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2739 -> 2880[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2740 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2740[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2740 -> 2881[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2740 -> 2882[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2741 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2741[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2741 -> 2883[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2741 -> 2884[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2742 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2742[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2742 -> 2885[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2742 -> 2886[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2743 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2743[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2743 -> 2887[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2743 -> 2888[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2744 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2744[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2744 -> 2889[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2744 -> 2890[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2745 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2745[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2745 -> 2891[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2745 -> 2892[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2746 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2746[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2746 -> 2893[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2746 -> 2894[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2747 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2747[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2747 -> 2895[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2747 -> 2896[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2748 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2748[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2748 -> 2897[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2748 -> 2898[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2749 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2749[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2749 -> 2899[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2749 -> 2900[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2750 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2750[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2750 -> 2901[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2750 -> 2902[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2751 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2751[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2751 -> 2903[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2751 -> 2904[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2752 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2752[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2752 -> 2905[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2752 -> 2906[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2753[label="xuu3001",fontsize=16,color="green",shape="box"];2754[label="xuu40001",fontsize=16,color="green",shape="box"];2755 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2755[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2755 -> 2907[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2755 -> 2908[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2756 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2756[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2756 -> 2909[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2756 -> 2910[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2757 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2757[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2757 -> 2911[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2757 -> 2912[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2758 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2758[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2758 -> 2913[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2758 -> 2914[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2759 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2759[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2759 -> 2915[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2759 -> 2916[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2760 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2760[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2760 -> 2917[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2760 -> 2918[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2761 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2761[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2761 -> 2919[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2761 -> 2920[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2762 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2762[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2762 -> 2921[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2762 -> 2922[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2763 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2763[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2763 -> 2923[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2763 -> 2924[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2764 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2764[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2764 -> 2925[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2764 -> 2926[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2765 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2765[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2765 -> 2927[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2765 -> 2928[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2766 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2766[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2766 -> 2929[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2766 -> 2930[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2767 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2767[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2767 -> 2931[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2767 -> 2932[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2768 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2768[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2768 -> 2933[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2768 -> 2934[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2769 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2769[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2769 -> 2935[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2769 -> 2936[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2770 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2770[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2770 -> 2937[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2770 -> 2938[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2771 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2771[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2771 -> 2939[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2771 -> 2940[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2772 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2772[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2772 -> 2941[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2772 -> 2942[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2773 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2773[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2773 -> 2943[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2773 -> 2944[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2774 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2774[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2774 -> 2945[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2774 -> 2946[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2775 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2775[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2775 -> 2947[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2775 -> 2948[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2776 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2776[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2776 -> 2949[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2776 -> 2950[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2777 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2777[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2777 -> 2951[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2777 -> 2952[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2778 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2778[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2778 -> 2953[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2778 -> 2954[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2779 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2779[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2779 -> 2955[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2779 -> 2956[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2780 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2780[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2780 -> 2957[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2780 -> 2958[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2781 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2781[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2781 -> 2959[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2781 -> 2960[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2782 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2782[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2782 -> 2961[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2782 -> 2962[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2783 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2783[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2783 -> 2963[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2783 -> 2964[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2784 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2784[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2784 -> 2965[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2784 -> 2966[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2786[label="xuu4800",fontsize=16,color="green",shape="box"];2787[label="xuu4700",fontsize=16,color="green",shape="box"];2788[label="xuu4700 <= xuu4800",fontsize=16,color="blue",shape="box"];4671[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4671[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4671 -> 2967[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4672[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4672[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4672 -> 2968[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4673[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4673[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4673 -> 2969[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4674[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4674[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4674 -> 2970[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4675[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4675[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4675 -> 2971[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4676[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4676[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4676 -> 2972[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4677[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4677[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4677 -> 2973[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4678[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4678[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4678 -> 2974[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4679[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4679[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4679 -> 2975[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4680[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4680[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4680 -> 2976[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4681[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4681[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4681 -> 2977[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4682[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4682[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4682 -> 2978[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4683[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4683[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4683 -> 2979[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4684[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4684[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4684 -> 2980[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2785[label="compare1 (Left xuu177) (Left xuu178) xuu179",fontsize=16,color="burlywood",shape="triangle"];4685[label="xuu179/False",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4685[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4685 -> 2981[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4686[label="xuu179/True",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4686[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4686 -> 2982[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2789[label="LT",fontsize=16,color="green",shape="box"];2790[label="compare0 (Right xuu4700) (Left xuu4800) otherwise",fontsize=16,color="black",shape="box"];2790 -> 2983[label="",style="solid", color="black", weight=3]; 30.13/12.44 2792[label="xuu4800",fontsize=16,color="green",shape="box"];2793[label="xuu4700",fontsize=16,color="green",shape="box"];2794[label="xuu4700 <= xuu4800",fontsize=16,color="blue",shape="box"];4687[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4687[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4687 -> 2984[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4688[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4688[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4688 -> 2985[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4689[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4689[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4689 -> 2986[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4690[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4690[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4690 -> 2987[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4691[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4691[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4691 -> 2988[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4692[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4692[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4692 -> 2989[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4693[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4693[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4693 -> 2990[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4694[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4694[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4694 -> 2991[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4695[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4695[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4695 -> 2992[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4696[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4696[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4696 -> 2993[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4697[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4697[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4697 -> 2994[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4698[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4698[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4698 -> 2995[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4699[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4699[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4699 -> 2996[label="",style="solid", color="blue", weight=3]; 30.13/12.44 4700[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 4700[label="",style="solid", color="blue", weight=9]; 30.13/12.44 4700 -> 2997[label="",style="solid", color="blue", weight=3]; 30.13/12.44 2791[label="compare1 (Right xuu184) (Right xuu185) xuu186",fontsize=16,color="burlywood",shape="triangle"];4701[label="xuu186/False",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4701[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4701 -> 2998[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 4702[label="xuu186/True",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4702[label="",style="solid", color="burlywood", weight=9]; 30.13/12.44 4702 -> 2999[label="",style="solid", color="burlywood", weight=3]; 30.13/12.44 2194[label="Left xuu14",fontsize=16,color="green",shape="box"];2195[label="Left xuu19",fontsize=16,color="green",shape="box"];2196[label="Left xuu19 == Left xuu14",fontsize=16,color="black",shape="box"];2196 -> 2237[label="",style="solid", color="black", weight=3]; 30.13/12.44 861[label="FiniteMap.addListToFM0 xuu15 xuu20",fontsize=16,color="black",shape="triangle"];861 -> 1124[label="",style="solid", color="black", weight=3]; 30.13/12.44 862[label="LT",fontsize=16,color="green",shape="box"];863[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];863 -> 1125[label="",style="solid", color="black", weight=3]; 30.13/12.44 864 -> 1350[label="",style="dashed", color="red", weight=0]; 30.13/12.44 864[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34)",fontsize=16,color="magenta"];864 -> 1351[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 865 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.44 865[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];865 -> 4171[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 865 -> 4172[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 865 -> 4173[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 865 -> 4174[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 865 -> 4175[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2197[label="Right xuu300",fontsize=16,color="green",shape="box"];2198[label="Left xuu4000",fontsize=16,color="green",shape="box"];2199[label="Left xuu4000 == Right xuu300",fontsize=16,color="black",shape="box"];2199 -> 2238[label="",style="solid", color="black", weight=3]; 30.13/12.44 871 -> 861[label="",style="dashed", color="red", weight=0]; 30.13/12.44 871[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];871 -> 1145[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 871 -> 1146[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 872[label="LT",fontsize=16,color="green",shape="box"];873[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];873 -> 1147[label="",style="solid", color="black", weight=3]; 30.13/12.44 874 -> 1421[label="",style="dashed", color="red", weight=0]; 30.13/12.44 874[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34)",fontsize=16,color="magenta"];874 -> 1422[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 875 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.44 875[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];875 -> 4176[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 875 -> 4177[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 875 -> 4178[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 875 -> 4179[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 875 -> 4180[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2200[label="Left xuu300",fontsize=16,color="green",shape="box"];2201[label="Right xuu4000",fontsize=16,color="green",shape="box"];2202[label="Right xuu4000 == Left xuu300",fontsize=16,color="black",shape="box"];2202 -> 2239[label="",style="solid", color="black", weight=3]; 30.13/12.44 883 -> 861[label="",style="dashed", color="red", weight=0]; 30.13/12.44 883[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];883 -> 1161[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 883 -> 1162[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2203[label="Right xuu31",fontsize=16,color="green",shape="box"];2204[label="Right xuu36",fontsize=16,color="green",shape="box"];2205[label="Right xuu36 == Right xuu31",fontsize=16,color="black",shape="box"];2205 -> 2240[label="",style="solid", color="black", weight=3]; 30.13/12.44 916 -> 861[label="",style="dashed", color="red", weight=0]; 30.13/12.44 916[label="FiniteMap.addListToFM0 xuu32 xuu37",fontsize=16,color="magenta"];916 -> 1166[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 916 -> 1167[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2795[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2795 -> 3028[label="",style="solid", color="black", weight=3]; 30.13/12.44 2796[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2796 -> 3029[label="",style="solid", color="black", weight=3]; 30.13/12.44 2797[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2797 -> 3030[label="",style="solid", color="black", weight=3]; 30.13/12.44 2798[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2798 -> 3031[label="",style="solid", color="black", weight=3]; 30.13/12.44 2799 -> 2514[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2799[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2799 -> 3032[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2799 -> 3033[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2800[label="False",fontsize=16,color="green",shape="box"];2801[label="False",fontsize=16,color="green",shape="box"];2802[label="True",fontsize=16,color="green",shape="box"];2803[label="False",fontsize=16,color="green",shape="box"];2804[label="True",fontsize=16,color="green",shape="box"];2805 -> 2514[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2805[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2805 -> 3034[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2805 -> 3035[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2806[label="False",fontsize=16,color="green",shape="box"];2807[label="False",fontsize=16,color="green",shape="box"];2808[label="True",fontsize=16,color="green",shape="box"];2809[label="False",fontsize=16,color="green",shape="box"];2810[label="True",fontsize=16,color="green",shape="box"];742[label="xuu40001 * xuu3000",fontsize=16,color="black",shape="triangle"];742 -> 933[label="",style="solid", color="black", weight=3]; 30.13/12.44 2811[label="xuu40000",fontsize=16,color="green",shape="box"];2812[label="xuu3001",fontsize=16,color="green",shape="box"];2813[label="xuu3000",fontsize=16,color="green",shape="box"];2814[label="xuu40000",fontsize=16,color="green",shape="box"];2815[label="xuu3000",fontsize=16,color="green",shape="box"];2816[label="xuu40000",fontsize=16,color="green",shape="box"];2817[label="xuu3000",fontsize=16,color="green",shape="box"];2818[label="xuu40000",fontsize=16,color="green",shape="box"];2819[label="xuu3000",fontsize=16,color="green",shape="box"];2820[label="xuu40000",fontsize=16,color="green",shape="box"];2821[label="xuu3000",fontsize=16,color="green",shape="box"];2822[label="xuu40000",fontsize=16,color="green",shape="box"];2823[label="xuu3000",fontsize=16,color="green",shape="box"];2824[label="xuu40000",fontsize=16,color="green",shape="box"];2825[label="xuu3000",fontsize=16,color="green",shape="box"];2826[label="xuu40000",fontsize=16,color="green",shape="box"];2827[label="xuu3000",fontsize=16,color="green",shape="box"];2828[label="xuu40000",fontsize=16,color="green",shape="box"];2829[label="xuu3000",fontsize=16,color="green",shape="box"];2830[label="xuu40000",fontsize=16,color="green",shape="box"];2831[label="xuu3000",fontsize=16,color="green",shape="box"];2832[label="xuu40000",fontsize=16,color="green",shape="box"];2833[label="xuu3000",fontsize=16,color="green",shape="box"];2834[label="xuu40000",fontsize=16,color="green",shape="box"];2835[label="xuu3000",fontsize=16,color="green",shape="box"];2836[label="xuu40000",fontsize=16,color="green",shape="box"];2837[label="xuu3000",fontsize=16,color="green",shape="box"];2838[label="xuu40000",fontsize=16,color="green",shape="box"];2839[label="xuu3000",fontsize=16,color="green",shape="box"];2840[label="xuu40000",fontsize=16,color="green",shape="box"];2841 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2841[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2841 -> 3036[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2841 -> 3037[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2842 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2842[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2842 -> 3038[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2842 -> 3039[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2843 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2843[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2843 -> 3040[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2843 -> 3041[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2844 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2844[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2844 -> 3042[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2844 -> 3043[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2845 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2845[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2845 -> 3044[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2845 -> 3045[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2846 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2846[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2846 -> 3046[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2846 -> 3047[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2847 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.44 2847[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2847 -> 3048[label="",style="dashed", color="magenta", weight=3]; 30.13/12.44 2847 -> 3049[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2848 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2848[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2848 -> 3050[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2848 -> 3051[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2849 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2849[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2849 -> 3052[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2849 -> 3053[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2850 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2850[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2850 -> 3054[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2850 -> 3055[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2851 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2851[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2851 -> 3056[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2851 -> 3057[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2852 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2852[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2852 -> 3058[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2852 -> 3059[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2853 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2853[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2853 -> 3060[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2853 -> 3061[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2854 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2854[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2854 -> 3062[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2854 -> 3063[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2855 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2855[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2855 -> 3064[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2855 -> 3065[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2856 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2856[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2856 -> 3066[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2856 -> 3067[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2857 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2857[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2857 -> 3068[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2857 -> 3069[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2858 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2858[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2858 -> 3070[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2858 -> 3071[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2859 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2859[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2859 -> 3072[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2859 -> 3073[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2860 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2860[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2860 -> 3074[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2860 -> 3075[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2861 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2861[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2861 -> 3076[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2861 -> 3077[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2862 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2862[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2862 -> 3078[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2862 -> 3079[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2863 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2863[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2863 -> 3080[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2863 -> 3081[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2864 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2864[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2864 -> 3082[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2864 -> 3083[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2865 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2865[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2865 -> 3084[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2865 -> 3085[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2866 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2866[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2866 -> 3086[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2866 -> 3087[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2867 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2867[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2867 -> 3088[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2867 -> 3089[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2868 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2868[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2868 -> 3090[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2868 -> 3091[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2869[label="False",fontsize=16,color="green",shape="box"];2870[label="xuu172",fontsize=16,color="green",shape="box"];2871[label="xuu3000",fontsize=16,color="green",shape="box"];2872[label="xuu40000",fontsize=16,color="green",shape="box"];2873[label="xuu3000",fontsize=16,color="green",shape="box"];2874[label="xuu40000",fontsize=16,color="green",shape="box"];2875[label="xuu3001",fontsize=16,color="green",shape="box"];2876[label="xuu40001",fontsize=16,color="green",shape="box"];2877[label="xuu3001",fontsize=16,color="green",shape="box"];2878[label="xuu40001",fontsize=16,color="green",shape="box"];2879[label="xuu3000",fontsize=16,color="green",shape="box"];2880[label="xuu40000",fontsize=16,color="green",shape="box"];2881[label="xuu3000",fontsize=16,color="green",shape="box"];2882[label="xuu40000",fontsize=16,color="green",shape="box"];2883[label="xuu3000",fontsize=16,color="green",shape="box"];2884[label="xuu40000",fontsize=16,color="green",shape="box"];2885[label="xuu3000",fontsize=16,color="green",shape="box"];2886[label="xuu40000",fontsize=16,color="green",shape="box"];2887[label="xuu3000",fontsize=16,color="green",shape="box"];2888[label="xuu40000",fontsize=16,color="green",shape="box"];2889[label="xuu3000",fontsize=16,color="green",shape="box"];2890[label="xuu40000",fontsize=16,color="green",shape="box"];2891[label="xuu3000",fontsize=16,color="green",shape="box"];2892[label="xuu40000",fontsize=16,color="green",shape="box"];2893[label="xuu3000",fontsize=16,color="green",shape="box"];2894[label="xuu40000",fontsize=16,color="green",shape="box"];2895[label="xuu3000",fontsize=16,color="green",shape="box"];2896[label="xuu40000",fontsize=16,color="green",shape="box"];2897[label="xuu3000",fontsize=16,color="green",shape="box"];2898[label="xuu40000",fontsize=16,color="green",shape="box"];2899[label="xuu3000",fontsize=16,color="green",shape="box"];2900[label="xuu40000",fontsize=16,color="green",shape="box"];2901[label="xuu3000",fontsize=16,color="green",shape="box"];2902[label="xuu40000",fontsize=16,color="green",shape="box"];2903[label="xuu3000",fontsize=16,color="green",shape="box"];2904[label="xuu40000",fontsize=16,color="green",shape="box"];2905[label="xuu3000",fontsize=16,color="green",shape="box"];2906[label="xuu40000",fontsize=16,color="green",shape="box"];2907[label="xuu40001",fontsize=16,color="green",shape="box"];2908[label="xuu3000",fontsize=16,color="green",shape="box"];2909[label="xuu40000",fontsize=16,color="green",shape="box"];2910[label="xuu3001",fontsize=16,color="green",shape="box"];2911[label="xuu3000",fontsize=16,color="green",shape="box"];2912[label="xuu40000",fontsize=16,color="green",shape="box"];2913[label="xuu3000",fontsize=16,color="green",shape="box"];2914[label="xuu40000",fontsize=16,color="green",shape="box"];2915[label="xuu3000",fontsize=16,color="green",shape="box"];2916[label="xuu40000",fontsize=16,color="green",shape="box"];2917[label="xuu3000",fontsize=16,color="green",shape="box"];2918[label="xuu40000",fontsize=16,color="green",shape="box"];2919[label="xuu3000",fontsize=16,color="green",shape="box"];2920[label="xuu40000",fontsize=16,color="green",shape="box"];2921[label="xuu3000",fontsize=16,color="green",shape="box"];2922[label="xuu40000",fontsize=16,color="green",shape="box"];2923[label="xuu3000",fontsize=16,color="green",shape="box"];2924[label="xuu40000",fontsize=16,color="green",shape="box"];2925[label="xuu3000",fontsize=16,color="green",shape="box"];2926[label="xuu40000",fontsize=16,color="green",shape="box"];2927[label="xuu3000",fontsize=16,color="green",shape="box"];2928[label="xuu40000",fontsize=16,color="green",shape="box"];2929[label="xuu3000",fontsize=16,color="green",shape="box"];2930[label="xuu40000",fontsize=16,color="green",shape="box"];2931[label="xuu3000",fontsize=16,color="green",shape="box"];2932[label="xuu40000",fontsize=16,color="green",shape="box"];2933[label="xuu3000",fontsize=16,color="green",shape="box"];2934[label="xuu40000",fontsize=16,color="green",shape="box"];2935[label="xuu3000",fontsize=16,color="green",shape="box"];2936[label="xuu40000",fontsize=16,color="green",shape="box"];2937[label="xuu3000",fontsize=16,color="green",shape="box"];2938[label="xuu40000",fontsize=16,color="green",shape="box"];2939[label="xuu3001",fontsize=16,color="green",shape="box"];2940[label="xuu40001",fontsize=16,color="green",shape="box"];2941[label="xuu3001",fontsize=16,color="green",shape="box"];2942[label="xuu40001",fontsize=16,color="green",shape="box"];2943[label="xuu3001",fontsize=16,color="green",shape="box"];2944[label="xuu40001",fontsize=16,color="green",shape="box"];2945[label="xuu3001",fontsize=16,color="green",shape="box"];2946[label="xuu40001",fontsize=16,color="green",shape="box"];2947[label="xuu3001",fontsize=16,color="green",shape="box"];2948[label="xuu40001",fontsize=16,color="green",shape="box"];2949[label="xuu3001",fontsize=16,color="green",shape="box"];2950[label="xuu40001",fontsize=16,color="green",shape="box"];2951[label="xuu3001",fontsize=16,color="green",shape="box"];2952[label="xuu40001",fontsize=16,color="green",shape="box"];2953[label="xuu3001",fontsize=16,color="green",shape="box"];2954[label="xuu40001",fontsize=16,color="green",shape="box"];2955[label="xuu3001",fontsize=16,color="green",shape="box"];2956[label="xuu40001",fontsize=16,color="green",shape="box"];2957[label="xuu3001",fontsize=16,color="green",shape="box"];2958[label="xuu40001",fontsize=16,color="green",shape="box"];2959[label="xuu3001",fontsize=16,color="green",shape="box"];2960[label="xuu40001",fontsize=16,color="green",shape="box"];2961[label="xuu3001",fontsize=16,color="green",shape="box"];2962[label="xuu40001",fontsize=16,color="green",shape="box"];2963[label="xuu3001",fontsize=16,color="green",shape="box"];2964[label="xuu40001",fontsize=16,color="green",shape="box"];2965[label="xuu3001",fontsize=16,color="green",shape="box"];2966[label="xuu40001",fontsize=16,color="green",shape="box"];2967[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4703[label="xuu4700/Nothing",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4703[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4703 -> 3092[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4704[label="xuu4700/Just xuu47000",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4704[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4704 -> 3093[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2968[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2968 -> 3094[label="",style="solid", color="black", weight=3]; 30.13/12.45 2969[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2969 -> 3095[label="",style="solid", color="black", weight=3]; 30.13/12.45 2970[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4705[label="xuu4700/False",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4705[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4705 -> 3096[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4706[label="xuu4700/True",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4706[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4706 -> 3097[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2971[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4707[label="xuu4700/(xuu47000,xuu47001,xuu47002)",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4707[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4707 -> 3098[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2972[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2972 -> 3099[label="",style="solid", color="black", weight=3]; 30.13/12.45 2973[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2973 -> 3100[label="",style="solid", color="black", weight=3]; 30.13/12.45 2974[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2974 -> 3101[label="",style="solid", color="black", weight=3]; 30.13/12.45 2975[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4708[label="xuu4700/Left xuu47000",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4708[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4708 -> 3102[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4709[label="xuu4700/Right xuu47000",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4709[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4709 -> 3103[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2976[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2976 -> 3104[label="",style="solid", color="black", weight=3]; 30.13/12.45 2977[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2977 -> 3105[label="",style="solid", color="black", weight=3]; 30.13/12.45 2978[label="xuu4700 <= xuu4800",fontsize=16,color="black",shape="triangle"];2978 -> 3106[label="",style="solid", color="black", weight=3]; 30.13/12.45 2979[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4710[label="xuu4700/LT",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4710[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4710 -> 3107[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4711[label="xuu4700/EQ",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4711[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4711 -> 3108[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4712[label="xuu4700/GT",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4712[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4712 -> 3109[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2980[label="xuu4700 <= xuu4800",fontsize=16,color="burlywood",shape="triangle"];4713[label="xuu4700/(xuu47000,xuu47001)",fontsize=10,color="white",style="solid",shape="box"];2980 -> 4713[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4713 -> 3110[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2981[label="compare1 (Left xuu177) (Left xuu178) False",fontsize=16,color="black",shape="box"];2981 -> 3111[label="",style="solid", color="black", weight=3]; 30.13/12.45 2982[label="compare1 (Left xuu177) (Left xuu178) True",fontsize=16,color="black",shape="box"];2982 -> 3112[label="",style="solid", color="black", weight=3]; 30.13/12.45 2983[label="compare0 (Right xuu4700) (Left xuu4800) True",fontsize=16,color="black",shape="box"];2983 -> 3113[label="",style="solid", color="black", weight=3]; 30.13/12.45 2984 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2984[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2984 -> 3114[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2984 -> 3115[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2985 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2985[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2985 -> 3116[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2985 -> 3117[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2986 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2986[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2986 -> 3118[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2986 -> 3119[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2987 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2987[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2987 -> 3120[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2987 -> 3121[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2988 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2988[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2988 -> 3122[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2988 -> 3123[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2989 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2989[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2989 -> 3124[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2989 -> 3125[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2990 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2990[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2990 -> 3126[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2990 -> 3127[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2991 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2991[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2991 -> 3128[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2991 -> 3129[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2992 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2992[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2992 -> 3130[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2992 -> 3131[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2993 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2993[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2993 -> 3132[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2993 -> 3133[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2994 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2994[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2994 -> 3134[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2994 -> 3135[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2995 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2995[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2995 -> 3136[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2995 -> 3137[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2996 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2996[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2996 -> 3138[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2996 -> 3139[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2997 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2997[label="xuu4700 <= xuu4800",fontsize=16,color="magenta"];2997 -> 3140[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2997 -> 3141[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2998[label="compare1 (Right xuu184) (Right xuu185) False",fontsize=16,color="black",shape="box"];2998 -> 3142[label="",style="solid", color="black", weight=3]; 30.13/12.45 2999[label="compare1 (Right xuu184) (Right xuu185) True",fontsize=16,color="black",shape="box"];2999 -> 3143[label="",style="solid", color="black", weight=3]; 30.13/12.45 2237[label="xuu19 == xuu14",fontsize=16,color="blue",shape="box"];4714[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4714[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4714 -> 2324[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4715[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4715[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4715 -> 2325[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4716[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4716[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4716 -> 2326[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4717[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4717[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4717 -> 2327[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4718[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4718[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4718 -> 2328[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4719[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4719[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4719 -> 2329[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4720[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4720[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4720 -> 2330[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4721[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4721 -> 2331[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4722[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4722[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4722 -> 2332[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4723[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4723[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4723 -> 2333[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4724[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4724[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4724 -> 2334[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4725[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4725[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4725 -> 2335[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4726[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4726[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4726 -> 2336[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4727[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 4727[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4727 -> 2337[label="",style="solid", color="blue", weight=3]; 30.13/12.45 1124[label="xuu20",fontsize=16,color="green",shape="box"];1125[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 + FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1125 -> 1264[label="",style="solid", color="black", weight=3]; 30.13/12.45 1351 -> 1836[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1351[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1351 -> 1837[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1351 -> 1838[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1350[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu107",fontsize=16,color="burlywood",shape="triangle"];4728[label="xuu107/False",fontsize=10,color="white",style="solid",shape="box"];1350 -> 4728[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4728 -> 1356[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4729[label="xuu107/True",fontsize=10,color="white",style="solid",shape="box"];1350 -> 4729[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4729 -> 1357[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4171[label="xuu50",fontsize=16,color="green",shape="box"];4172[label="Left xuu300",fontsize=16,color="green",shape="box"];4173[label="Zero",fontsize=16,color="green",shape="box"];4174[label="xuu31",fontsize=16,color="green",shape="box"];4175[label="xuu34",fontsize=16,color="green",shape="box"];4170[label="FiniteMap.mkBranch (Pos (Succ xuu257)) xuu258 xuu259 xuu260 xuu261",fontsize=16,color="black",shape="triangle"];4170 -> 4301[label="",style="solid", color="black", weight=3]; 30.13/12.45 2238[label="False",fontsize=16,color="green",shape="box"];1145[label="xuu401",fontsize=16,color="green",shape="box"];1146[label="xuu31",fontsize=16,color="green",shape="box"];1147[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 + FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1147 -> 1297[label="",style="solid", color="black", weight=3]; 30.13/12.45 1422 -> 1836[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1422[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1422 -> 1839[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1422 -> 1840[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1421[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu109",fontsize=16,color="burlywood",shape="triangle"];4730[label="xuu109/False",fontsize=10,color="white",style="solid",shape="box"];1421 -> 4730[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4730 -> 1427[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4731[label="xuu109/True",fontsize=10,color="white",style="solid",shape="box"];1421 -> 4731[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4731 -> 1428[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4176[label="xuu42",fontsize=16,color="green",shape="box"];4177[label="Right xuu300",fontsize=16,color="green",shape="box"];4178[label="Zero",fontsize=16,color="green",shape="box"];4179[label="xuu31",fontsize=16,color="green",shape="box"];4180[label="xuu34",fontsize=16,color="green",shape="box"];2239[label="False",fontsize=16,color="green",shape="box"];1161[label="xuu401",fontsize=16,color="green",shape="box"];1162[label="xuu31",fontsize=16,color="green",shape="box"];2240[label="xuu36 == xuu31",fontsize=16,color="blue",shape="box"];4732[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4732[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4732 -> 2338[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4733[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4733[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4733 -> 2339[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4734[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4734[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4734 -> 2340[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4735[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4735[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4735 -> 2341[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4736[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4736[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4736 -> 2342[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4737[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4737[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4737 -> 2343[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4738[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4738[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4738 -> 2344[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4739[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4739[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4739 -> 2345[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4740[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4740[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4740 -> 2346[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4741[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4741[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4741 -> 2347[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4742[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4742[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4742 -> 2348[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4743[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4743[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4743 -> 2349[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4744[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4744[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4744 -> 2350[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4745[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4745[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4745 -> 2351[label="",style="solid", color="blue", weight=3]; 30.13/12.45 1166[label="xuu37",fontsize=16,color="green",shape="box"];1167[label="xuu32",fontsize=16,color="green",shape="box"];3028 -> 2514[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3028[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];3028 -> 3169[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3028 -> 3170[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3029[label="False",fontsize=16,color="green",shape="box"];3030[label="False",fontsize=16,color="green",shape="box"];3031[label="True",fontsize=16,color="green",shape="box"];3032[label="xuu30000",fontsize=16,color="green",shape="box"];3033[label="xuu400000",fontsize=16,color="green",shape="box"];3034[label="xuu30000",fontsize=16,color="green",shape="box"];3035[label="xuu400000",fontsize=16,color="green",shape="box"];933[label="primMulInt xuu40001 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4746[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];933 -> 4746[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4746 -> 1176[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4747[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];933 -> 4747[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4747 -> 1177[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3036[label="xuu3001",fontsize=16,color="green",shape="box"];3037[label="xuu40001",fontsize=16,color="green",shape="box"];3038[label="xuu3001",fontsize=16,color="green",shape="box"];3039[label="xuu40001",fontsize=16,color="green",shape="box"];3040[label="xuu3001",fontsize=16,color="green",shape="box"];3041[label="xuu40001",fontsize=16,color="green",shape="box"];3042[label="xuu3001",fontsize=16,color="green",shape="box"];3043[label="xuu40001",fontsize=16,color="green",shape="box"];3044[label="xuu3001",fontsize=16,color="green",shape="box"];3045[label="xuu40001",fontsize=16,color="green",shape="box"];3046[label="xuu3001",fontsize=16,color="green",shape="box"];3047[label="xuu40001",fontsize=16,color="green",shape="box"];3048[label="xuu3001",fontsize=16,color="green",shape="box"];3049[label="xuu40001",fontsize=16,color="green",shape="box"];3050[label="xuu3001",fontsize=16,color="green",shape="box"];3051[label="xuu40001",fontsize=16,color="green",shape="box"];3052[label="xuu3001",fontsize=16,color="green",shape="box"];3053[label="xuu40001",fontsize=16,color="green",shape="box"];3054[label="xuu3001",fontsize=16,color="green",shape="box"];3055[label="xuu40001",fontsize=16,color="green",shape="box"];3056[label="xuu3001",fontsize=16,color="green",shape="box"];3057[label="xuu40001",fontsize=16,color="green",shape="box"];3058[label="xuu3001",fontsize=16,color="green",shape="box"];3059[label="xuu40001",fontsize=16,color="green",shape="box"];3060[label="xuu3001",fontsize=16,color="green",shape="box"];3061[label="xuu40001",fontsize=16,color="green",shape="box"];3062[label="xuu3001",fontsize=16,color="green",shape="box"];3063[label="xuu40001",fontsize=16,color="green",shape="box"];3064[label="xuu3002",fontsize=16,color="green",shape="box"];3065[label="xuu40002",fontsize=16,color="green",shape="box"];3066[label="xuu3002",fontsize=16,color="green",shape="box"];3067[label="xuu40002",fontsize=16,color="green",shape="box"];3068[label="xuu3002",fontsize=16,color="green",shape="box"];3069[label="xuu40002",fontsize=16,color="green",shape="box"];3070[label="xuu3002",fontsize=16,color="green",shape="box"];3071[label="xuu40002",fontsize=16,color="green",shape="box"];3072[label="xuu3002",fontsize=16,color="green",shape="box"];3073[label="xuu40002",fontsize=16,color="green",shape="box"];3074[label="xuu3002",fontsize=16,color="green",shape="box"];3075[label="xuu40002",fontsize=16,color="green",shape="box"];3076[label="xuu3002",fontsize=16,color="green",shape="box"];3077[label="xuu40002",fontsize=16,color="green",shape="box"];3078[label="xuu3002",fontsize=16,color="green",shape="box"];3079[label="xuu40002",fontsize=16,color="green",shape="box"];3080[label="xuu3002",fontsize=16,color="green",shape="box"];3081[label="xuu40002",fontsize=16,color="green",shape="box"];3082[label="xuu3002",fontsize=16,color="green",shape="box"];3083[label="xuu40002",fontsize=16,color="green",shape="box"];3084[label="xuu3002",fontsize=16,color="green",shape="box"];3085[label="xuu40002",fontsize=16,color="green",shape="box"];3086[label="xuu3002",fontsize=16,color="green",shape="box"];3087[label="xuu40002",fontsize=16,color="green",shape="box"];3088[label="xuu3002",fontsize=16,color="green",shape="box"];3089[label="xuu40002",fontsize=16,color="green",shape="box"];3090[label="xuu3002",fontsize=16,color="green",shape="box"];3091[label="xuu40002",fontsize=16,color="green",shape="box"];3092[label="Nothing <= xuu4800",fontsize=16,color="burlywood",shape="box"];4748[label="xuu4800/Nothing",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4748[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4748 -> 3171[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4749[label="xuu4800/Just xuu48000",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4749[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4749 -> 3172[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3093[label="Just xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4750[label="xuu4800/Nothing",fontsize=10,color="white",style="solid",shape="box"];3093 -> 4750[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4750 -> 3173[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4751[label="xuu4800/Just xuu48000",fontsize=10,color="white",style="solid",shape="box"];3093 -> 4751[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4751 -> 3174[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3094 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3094[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3094 -> 3183[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3095 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3095[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3095 -> 3184[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3096[label="False <= xuu4800",fontsize=16,color="burlywood",shape="box"];4752[label="xuu4800/False",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4752[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4752 -> 3177[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4753[label="xuu4800/True",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4753[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4753 -> 3178[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3097[label="True <= xuu4800",fontsize=16,color="burlywood",shape="box"];4754[label="xuu4800/False",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4754[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4754 -> 3179[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4755[label="xuu4800/True",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4755[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4755 -> 3180[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3098[label="(xuu47000,xuu47001,xuu47002) <= xuu4800",fontsize=16,color="burlywood",shape="box"];4756[label="xuu4800/(xuu48000,xuu48001,xuu48002)",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4756[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4756 -> 3181[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3099 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3099[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3099 -> 3185[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3100 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3100[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3100 -> 3186[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3101 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3101[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3101 -> 3187[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3102[label="Left xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4757[label="xuu4800/Left xuu48000",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4757[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4757 -> 3191[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4758[label="xuu4800/Right xuu48000",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4758[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4758 -> 3192[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3103[label="Right xuu47000 <= xuu4800",fontsize=16,color="burlywood",shape="box"];4759[label="xuu4800/Left xuu48000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4759[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4759 -> 3193[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4760[label="xuu4800/Right xuu48000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4760[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4760 -> 3194[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3104 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3104[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3104 -> 3188[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3105 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3105[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3105 -> 3189[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3106 -> 3182[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3106[label="compare xuu4700 xuu4800 /= GT",fontsize=16,color="magenta"];3106 -> 3190[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3107[label="LT <= xuu4800",fontsize=16,color="burlywood",shape="box"];4761[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4761[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4761 -> 3195[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4762[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4762[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4762 -> 3196[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4763[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4763[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4763 -> 3197[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3108[label="EQ <= xuu4800",fontsize=16,color="burlywood",shape="box"];4764[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4764[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4764 -> 3198[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4765[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4765[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4765 -> 3199[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4766[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4766[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4766 -> 3200[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3109[label="GT <= xuu4800",fontsize=16,color="burlywood",shape="box"];4767[label="xuu4800/LT",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4767[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4767 -> 3201[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4768[label="xuu4800/EQ",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4768[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4768 -> 3202[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4769[label="xuu4800/GT",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4769[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4769 -> 3203[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3110[label="(xuu47000,xuu47001) <= xuu4800",fontsize=16,color="burlywood",shape="box"];4770[label="xuu4800/(xuu48000,xuu48001)",fontsize=10,color="white",style="solid",shape="box"];3110 -> 4770[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4770 -> 3204[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3111[label="compare0 (Left xuu177) (Left xuu178) otherwise",fontsize=16,color="black",shape="box"];3111 -> 3205[label="",style="solid", color="black", weight=3]; 30.13/12.45 3112[label="LT",fontsize=16,color="green",shape="box"];3113[label="GT",fontsize=16,color="green",shape="box"];3114[label="xuu4800",fontsize=16,color="green",shape="box"];3115[label="xuu4700",fontsize=16,color="green",shape="box"];3116[label="xuu4800",fontsize=16,color="green",shape="box"];3117[label="xuu4700",fontsize=16,color="green",shape="box"];3118[label="xuu4800",fontsize=16,color="green",shape="box"];3119[label="xuu4700",fontsize=16,color="green",shape="box"];3120[label="xuu4800",fontsize=16,color="green",shape="box"];3121[label="xuu4700",fontsize=16,color="green",shape="box"];3122[label="xuu4800",fontsize=16,color="green",shape="box"];3123[label="xuu4700",fontsize=16,color="green",shape="box"];3124[label="xuu4800",fontsize=16,color="green",shape="box"];3125[label="xuu4700",fontsize=16,color="green",shape="box"];3126[label="xuu4800",fontsize=16,color="green",shape="box"];3127[label="xuu4700",fontsize=16,color="green",shape="box"];3128[label="xuu4800",fontsize=16,color="green",shape="box"];3129[label="xuu4700",fontsize=16,color="green",shape="box"];3130[label="xuu4800",fontsize=16,color="green",shape="box"];3131[label="xuu4700",fontsize=16,color="green",shape="box"];3132[label="xuu4800",fontsize=16,color="green",shape="box"];3133[label="xuu4700",fontsize=16,color="green",shape="box"];3134[label="xuu4800",fontsize=16,color="green",shape="box"];3135[label="xuu4700",fontsize=16,color="green",shape="box"];3136[label="xuu4800",fontsize=16,color="green",shape="box"];3137[label="xuu4700",fontsize=16,color="green",shape="box"];3138[label="xuu4800",fontsize=16,color="green",shape="box"];3139[label="xuu4700",fontsize=16,color="green",shape="box"];3140[label="xuu4800",fontsize=16,color="green",shape="box"];3141[label="xuu4700",fontsize=16,color="green",shape="box"];3142[label="compare0 (Right xuu184) (Right xuu185) otherwise",fontsize=16,color="black",shape="box"];3142 -> 3206[label="",style="solid", color="black", weight=3]; 30.13/12.45 3143[label="LT",fontsize=16,color="green",shape="box"];2324 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2324[label="xuu19 == xuu14",fontsize=16,color="magenta"];2324 -> 2382[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2324 -> 2383[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2325 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2325[label="xuu19 == xuu14",fontsize=16,color="magenta"];2325 -> 2384[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2325 -> 2385[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2326 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2326[label="xuu19 == xuu14",fontsize=16,color="magenta"];2326 -> 2386[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2326 -> 2387[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2327 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2327[label="xuu19 == xuu14",fontsize=16,color="magenta"];2327 -> 2388[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2327 -> 2389[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2328 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2328[label="xuu19 == xuu14",fontsize=16,color="magenta"];2328 -> 2390[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2328 -> 2391[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2329 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2329[label="xuu19 == xuu14",fontsize=16,color="magenta"];2329 -> 2392[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2329 -> 2393[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2330 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2330[label="xuu19 == xuu14",fontsize=16,color="magenta"];2330 -> 2394[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2330 -> 2395[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2331 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2331[label="xuu19 == xuu14",fontsize=16,color="magenta"];2331 -> 2396[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2331 -> 2397[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2332 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2332[label="xuu19 == xuu14",fontsize=16,color="magenta"];2332 -> 2398[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2332 -> 2399[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2333 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2333[label="xuu19 == xuu14",fontsize=16,color="magenta"];2333 -> 2400[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2333 -> 2401[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2334 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2334[label="xuu19 == xuu14",fontsize=16,color="magenta"];2334 -> 2402[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2334 -> 2403[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2335 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2335[label="xuu19 == xuu14",fontsize=16,color="magenta"];2335 -> 2404[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2335 -> 2405[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2336 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2336[label="xuu19 == xuu14",fontsize=16,color="magenta"];2336 -> 2406[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2336 -> 2407[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2337 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2337[label="xuu19 == xuu14",fontsize=16,color="magenta"];2337 -> 2408[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2337 -> 2409[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1264[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1264 -> 1347[label="",style="solid", color="black", weight=3]; 30.13/12.45 1837 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1837[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1837 -> 1847[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1837 -> 1848[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1838[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];1838 -> 1849[label="",style="solid", color="black", weight=3]; 30.13/12.45 1836[label="xuu125 > xuu124",fontsize=16,color="black",shape="triangle"];1836 -> 1850[label="",style="solid", color="black", weight=3]; 30.13/12.45 1356[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];1356 -> 1429[label="",style="solid", color="black", weight=3]; 30.13/12.45 1357[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];1357 -> 1430[label="",style="solid", color="black", weight=3]; 30.13/12.45 4301[label="FiniteMap.mkBranchResult xuu258 xuu259 xuu260 xuu261",fontsize=16,color="black",shape="box"];4301 -> 4367[label="",style="solid", color="black", weight=3]; 30.13/12.45 1297[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1297 -> 1418[label="",style="solid", color="black", weight=3]; 30.13/12.45 1839 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1839[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1839 -> 1851[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1839 -> 1852[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1840[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];1840 -> 1853[label="",style="solid", color="black", weight=3]; 30.13/12.45 1427[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];1427 -> 1482[label="",style="solid", color="black", weight=3]; 30.13/12.45 1428[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];1428 -> 1483[label="",style="solid", color="black", weight=3]; 30.13/12.45 2338 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2338[label="xuu36 == xuu31",fontsize=16,color="magenta"];2338 -> 2410[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2338 -> 2411[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2339 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2339[label="xuu36 == xuu31",fontsize=16,color="magenta"];2339 -> 2412[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2339 -> 2413[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2340 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2340[label="xuu36 == xuu31",fontsize=16,color="magenta"];2340 -> 2414[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2340 -> 2415[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2341 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2341[label="xuu36 == xuu31",fontsize=16,color="magenta"];2341 -> 2416[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2341 -> 2417[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2342 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2342[label="xuu36 == xuu31",fontsize=16,color="magenta"];2342 -> 2418[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2342 -> 2419[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2343 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2343[label="xuu36 == xuu31",fontsize=16,color="magenta"];2343 -> 2420[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2343 -> 2421[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2344 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2344[label="xuu36 == xuu31",fontsize=16,color="magenta"];2344 -> 2422[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2344 -> 2423[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2345 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2345[label="xuu36 == xuu31",fontsize=16,color="magenta"];2345 -> 2424[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2345 -> 2425[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2346 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2346[label="xuu36 == xuu31",fontsize=16,color="magenta"];2346 -> 2426[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2346 -> 2427[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2347 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2347[label="xuu36 == xuu31",fontsize=16,color="magenta"];2347 -> 2428[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2347 -> 2429[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2348 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2348[label="xuu36 == xuu31",fontsize=16,color="magenta"];2348 -> 2430[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2348 -> 2431[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2349 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2349[label="xuu36 == xuu31",fontsize=16,color="magenta"];2349 -> 2432[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2349 -> 2433[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2350 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2350[label="xuu36 == xuu31",fontsize=16,color="magenta"];2350 -> 2434[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2350 -> 2435[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2351 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2351[label="xuu36 == xuu31",fontsize=16,color="magenta"];2351 -> 2436[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2351 -> 2437[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3169[label="xuu30000",fontsize=16,color="green",shape="box"];3170[label="xuu400000",fontsize=16,color="green",shape="box"];1176[label="primMulInt (Pos xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];4771[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4771[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4771 -> 1304[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4772[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4772[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4772 -> 1305[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1177[label="primMulInt (Neg xuu400010) xuu3000",fontsize=16,color="burlywood",shape="box"];4773[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4773[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4773 -> 1306[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4774[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4774[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4774 -> 1307[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3171[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3171 -> 3207[label="",style="solid", color="black", weight=3]; 30.13/12.45 3172[label="Nothing <= Just xuu48000",fontsize=16,color="black",shape="box"];3172 -> 3208[label="",style="solid", color="black", weight=3]; 30.13/12.45 3173[label="Just xuu47000 <= Nothing",fontsize=16,color="black",shape="box"];3173 -> 3209[label="",style="solid", color="black", weight=3]; 30.13/12.45 3174[label="Just xuu47000 <= Just xuu48000",fontsize=16,color="black",shape="box"];3174 -> 3210[label="",style="solid", color="black", weight=3]; 30.13/12.45 3183[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3183 -> 3211[label="",style="solid", color="black", weight=3]; 30.13/12.45 3182[label="xuu187 /= GT",fontsize=16,color="black",shape="triangle"];3182 -> 3212[label="",style="solid", color="black", weight=3]; 30.13/12.45 3184[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3184 -> 3213[label="",style="solid", color="black", weight=3]; 30.13/12.45 3177[label="False <= False",fontsize=16,color="black",shape="box"];3177 -> 3214[label="",style="solid", color="black", weight=3]; 30.13/12.45 3178[label="False <= True",fontsize=16,color="black",shape="box"];3178 -> 3215[label="",style="solid", color="black", weight=3]; 30.13/12.45 3179[label="True <= False",fontsize=16,color="black",shape="box"];3179 -> 3216[label="",style="solid", color="black", weight=3]; 30.13/12.45 3180[label="True <= True",fontsize=16,color="black",shape="box"];3180 -> 3217[label="",style="solid", color="black", weight=3]; 30.13/12.45 3181[label="(xuu47000,xuu47001,xuu47002) <= (xuu48000,xuu48001,xuu48002)",fontsize=16,color="black",shape="box"];3181 -> 3218[label="",style="solid", color="black", weight=3]; 30.13/12.45 3185 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3185[label="compare xuu4700 xuu4800",fontsize=16,color="magenta"];3185 -> 3219[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3185 -> 3220[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3186[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4775[label="xuu4700/xuu47000 : xuu47001",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4775[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4775 -> 3221[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4776[label="xuu4700/[]",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4776[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4776 -> 3222[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3187[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4777[label="xuu4700/()",fontsize=10,color="white",style="solid",shape="box"];3187 -> 4777[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4777 -> 3223[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3191[label="Left xuu47000 <= Left xuu48000",fontsize=16,color="black",shape="box"];3191 -> 3241[label="",style="solid", color="black", weight=3]; 30.13/12.45 3192[label="Left xuu47000 <= Right xuu48000",fontsize=16,color="black",shape="box"];3192 -> 3242[label="",style="solid", color="black", weight=3]; 30.13/12.45 3193[label="Right xuu47000 <= Left xuu48000",fontsize=16,color="black",shape="box"];3193 -> 3243[label="",style="solid", color="black", weight=3]; 30.13/12.45 3194[label="Right xuu47000 <= Right xuu48000",fontsize=16,color="black",shape="box"];3194 -> 3244[label="",style="solid", color="black", weight=3]; 30.13/12.45 3188[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4778[label="xuu4700/Integer xuu47000",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4778[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4778 -> 3224[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3189[label="compare xuu4700 xuu4800",fontsize=16,color="black",shape="triangle"];3189 -> 3225[label="",style="solid", color="black", weight=3]; 30.13/12.45 3190[label="compare xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];4779[label="xuu4700/xuu47000 :% xuu47001",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4779[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4779 -> 3226[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3195[label="LT <= LT",fontsize=16,color="black",shape="box"];3195 -> 3245[label="",style="solid", color="black", weight=3]; 30.13/12.45 3196[label="LT <= EQ",fontsize=16,color="black",shape="box"];3196 -> 3246[label="",style="solid", color="black", weight=3]; 30.13/12.45 3197[label="LT <= GT",fontsize=16,color="black",shape="box"];3197 -> 3247[label="",style="solid", color="black", weight=3]; 30.13/12.45 3198[label="EQ <= LT",fontsize=16,color="black",shape="box"];3198 -> 3248[label="",style="solid", color="black", weight=3]; 30.13/12.45 3199[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3199 -> 3249[label="",style="solid", color="black", weight=3]; 30.13/12.45 3200[label="EQ <= GT",fontsize=16,color="black",shape="box"];3200 -> 3250[label="",style="solid", color="black", weight=3]; 30.13/12.45 3201[label="GT <= LT",fontsize=16,color="black",shape="box"];3201 -> 3251[label="",style="solid", color="black", weight=3]; 30.13/12.45 3202[label="GT <= EQ",fontsize=16,color="black",shape="box"];3202 -> 3252[label="",style="solid", color="black", weight=3]; 30.13/12.45 3203[label="GT <= GT",fontsize=16,color="black",shape="box"];3203 -> 3253[label="",style="solid", color="black", weight=3]; 30.13/12.45 3204[label="(xuu47000,xuu47001) <= (xuu48000,xuu48001)",fontsize=16,color="black",shape="box"];3204 -> 3254[label="",style="solid", color="black", weight=3]; 30.13/12.45 3205[label="compare0 (Left xuu177) (Left xuu178) True",fontsize=16,color="black",shape="box"];3205 -> 3255[label="",style="solid", color="black", weight=3]; 30.13/12.45 3206[label="compare0 (Right xuu184) (Right xuu185) True",fontsize=16,color="black",shape="box"];3206 -> 3256[label="",style="solid", color="black", weight=3]; 30.13/12.45 2382[label="xuu14",fontsize=16,color="green",shape="box"];2383[label="xuu19",fontsize=16,color="green",shape="box"];2384[label="xuu14",fontsize=16,color="green",shape="box"];2385[label="xuu19",fontsize=16,color="green",shape="box"];2386[label="xuu14",fontsize=16,color="green",shape="box"];2387[label="xuu19",fontsize=16,color="green",shape="box"];2388[label="xuu14",fontsize=16,color="green",shape="box"];2389[label="xuu19",fontsize=16,color="green",shape="box"];2390[label="xuu14",fontsize=16,color="green",shape="box"];2391[label="xuu19",fontsize=16,color="green",shape="box"];2392[label="xuu14",fontsize=16,color="green",shape="box"];2393[label="xuu19",fontsize=16,color="green",shape="box"];2394[label="xuu14",fontsize=16,color="green",shape="box"];2395[label="xuu19",fontsize=16,color="green",shape="box"];2396[label="xuu14",fontsize=16,color="green",shape="box"];2397[label="xuu19",fontsize=16,color="green",shape="box"];2398[label="xuu14",fontsize=16,color="green",shape="box"];2399[label="xuu19",fontsize=16,color="green",shape="box"];2400[label="xuu14",fontsize=16,color="green",shape="box"];2401[label="xuu19",fontsize=16,color="green",shape="box"];2402[label="xuu14",fontsize=16,color="green",shape="box"];2403[label="xuu19",fontsize=16,color="green",shape="box"];2404[label="xuu14",fontsize=16,color="green",shape="box"];2405[label="xuu19",fontsize=16,color="green",shape="box"];2406[label="xuu14",fontsize=16,color="green",shape="box"];2407[label="xuu19",fontsize=16,color="green",shape="box"];2408[label="xuu14",fontsize=16,color="green",shape="box"];2409[label="xuu19",fontsize=16,color="green",shape="box"];1347[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu50) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4780[label="xuu50/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1347 -> 4780[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4780 -> 1525[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4781[label="xuu50/FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=10,color="white",style="solid",shape="box"];1347 -> 4781[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4781 -> 1526[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1847[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1847 -> 1870[label="",style="solid", color="black", weight=3]; 30.13/12.45 1848 -> 1846[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1848[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1849[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];4782[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4782[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4782 -> 1871[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4783[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4783[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4783 -> 1872[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1850 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1850[label="compare xuu125 xuu124 == GT",fontsize=16,color="magenta"];1850 -> 1873[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1850 -> 1874[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1429 -> 1832[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1429[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 (FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34)",fontsize=16,color="magenta"];1429 -> 1833[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1430[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 xuu34 xuu50 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4784[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4784[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4784 -> 1534[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4785[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4785[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4785 -> 1535[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4367[label="FiniteMap.Branch xuu258 xuu259 (FiniteMap.mkBranchUnbox xuu260 xuu258 xuu261 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261 + FiniteMap.mkBranchRight_size xuu260 xuu258 xuu261)) xuu260 xuu261",fontsize=16,color="green",shape="box"];4367 -> 4373[label="",style="dashed", color="green", weight=3]; 30.13/12.45 1418[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu42) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4786[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1418 -> 4786[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4786 -> 1537[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4787[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1418 -> 4787[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4787 -> 1538[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1851 -> 1847[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1851[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1852[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="black",shape="triangle"];1852 -> 1875[label="",style="solid", color="black", weight=3]; 30.13/12.45 1853 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1853[label="FiniteMap.sizeFM xuu34",fontsize=16,color="magenta"];1482 -> 1866[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1482[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 (FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34)",fontsize=16,color="magenta"];1482 -> 1867[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1483[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 xuu34 xuu42 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4788[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4788[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4788 -> 1545[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4789[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4789[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4789 -> 1546[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2410[label="xuu31",fontsize=16,color="green",shape="box"];2411[label="xuu36",fontsize=16,color="green",shape="box"];2412[label="xuu31",fontsize=16,color="green",shape="box"];2413[label="xuu36",fontsize=16,color="green",shape="box"];2414[label="xuu31",fontsize=16,color="green",shape="box"];2415[label="xuu36",fontsize=16,color="green",shape="box"];2416[label="xuu31",fontsize=16,color="green",shape="box"];2417[label="xuu36",fontsize=16,color="green",shape="box"];2418[label="xuu31",fontsize=16,color="green",shape="box"];2419[label="xuu36",fontsize=16,color="green",shape="box"];2420[label="xuu31",fontsize=16,color="green",shape="box"];2421[label="xuu36",fontsize=16,color="green",shape="box"];2422[label="xuu31",fontsize=16,color="green",shape="box"];2423[label="xuu36",fontsize=16,color="green",shape="box"];2424[label="xuu31",fontsize=16,color="green",shape="box"];2425[label="xuu36",fontsize=16,color="green",shape="box"];2426[label="xuu31",fontsize=16,color="green",shape="box"];2427[label="xuu36",fontsize=16,color="green",shape="box"];2428[label="xuu31",fontsize=16,color="green",shape="box"];2429[label="xuu36",fontsize=16,color="green",shape="box"];2430[label="xuu31",fontsize=16,color="green",shape="box"];2431[label="xuu36",fontsize=16,color="green",shape="box"];2432[label="xuu31",fontsize=16,color="green",shape="box"];2433[label="xuu36",fontsize=16,color="green",shape="box"];2434[label="xuu31",fontsize=16,color="green",shape="box"];2435[label="xuu36",fontsize=16,color="green",shape="box"];2436[label="xuu31",fontsize=16,color="green",shape="box"];2437[label="xuu36",fontsize=16,color="green",shape="box"];1304[label="primMulInt (Pos xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1304 -> 1435[label="",style="solid", color="black", weight=3]; 30.13/12.45 1305[label="primMulInt (Pos xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1305 -> 1436[label="",style="solid", color="black", weight=3]; 30.13/12.45 1306[label="primMulInt (Neg xuu400010) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1306 -> 1437[label="",style="solid", color="black", weight=3]; 30.13/12.45 1307[label="primMulInt (Neg xuu400010) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1307 -> 1438[label="",style="solid", color="black", weight=3]; 30.13/12.45 3207[label="True",fontsize=16,color="green",shape="box"];3208[label="True",fontsize=16,color="green",shape="box"];3209[label="False",fontsize=16,color="green",shape="box"];3210[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4790[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4790[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4790 -> 3257[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4791[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4791[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4791 -> 3258[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4792[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4792[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4792 -> 3259[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4793[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4793[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4793 -> 3260[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4794[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4794[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4794 -> 3261[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4795[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4795[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4795 -> 3262[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4796[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4796[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4796 -> 3263[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4797[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4797[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4797 -> 3264[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4798[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4798[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4798 -> 3265[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4799[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4799[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4799 -> 3266[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4800[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4800[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4800 -> 3267[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4801[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4801[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4801 -> 3268[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4802[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4802[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4802 -> 3269[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4803[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 4803[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4803 -> 3270[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3211[label="primCmpDouble xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4804[label="xuu4700/Double xuu47000 xuu47001",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4804[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4804 -> 3271[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3212 -> 3272[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3212[label="not (xuu187 == GT)",fontsize=16,color="magenta"];3212 -> 3273[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3213[label="primCmpFloat xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4805[label="xuu4700/Float xuu47000 xuu47001",fontsize=10,color="white",style="solid",shape="box"];3213 -> 4805[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4805 -> 3274[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3214[label="True",fontsize=16,color="green",shape="box"];3215[label="True",fontsize=16,color="green",shape="box"];3216[label="False",fontsize=16,color="green",shape="box"];3217[label="True",fontsize=16,color="green",shape="box"];3218 -> 3354[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3218[label="xuu47000 < xuu48000 || xuu47000 == xuu48000 && (xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002)",fontsize=16,color="magenta"];3218 -> 3355[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3218 -> 3356[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3219[label="xuu4700",fontsize=16,color="green",shape="box"];3220[label="xuu4800",fontsize=16,color="green",shape="box"];1329[label="compare xuu47 xuu48",fontsize=16,color="black",shape="triangle"];1329 -> 1502[label="",style="solid", color="black", weight=3]; 30.13/12.45 3221[label="compare (xuu47000 : xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4806[label="xuu4800/xuu48000 : xuu48001",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4806[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4806 -> 3280[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4807[label="xuu4800/[]",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4807[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4807 -> 3281[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3222[label="compare [] xuu4800",fontsize=16,color="burlywood",shape="box"];4808[label="xuu4800/xuu48000 : xuu48001",fontsize=10,color="white",style="solid",shape="box"];3222 -> 4808[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4808 -> 3282[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4809[label="xuu4800/[]",fontsize=10,color="white",style="solid",shape="box"];3222 -> 4809[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4809 -> 3283[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3223[label="compare () xuu4800",fontsize=16,color="burlywood",shape="box"];4810[label="xuu4800/()",fontsize=10,color="white",style="solid",shape="box"];3223 -> 4810[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4810 -> 3284[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3241[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4811[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4811[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4811 -> 3285[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4812[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4812[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4812 -> 3286[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4813[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4813[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4813 -> 3287[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4814[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4814[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4814 -> 3288[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4815[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4815[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4815 -> 3289[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4816[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4816[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4816 -> 3290[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4817[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4817[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4817 -> 3291[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4818[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4818[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4818 -> 3292[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4819[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4819[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4819 -> 3293[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4820[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4820[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4820 -> 3294[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4821[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4821[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4821 -> 3295[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4822[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4822[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4822 -> 3296[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4823[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4823[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4823 -> 3297[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4824[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4824[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4824 -> 3298[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3242[label="True",fontsize=16,color="green",shape="box"];3243[label="False",fontsize=16,color="green",shape="box"];3244[label="xuu47000 <= xuu48000",fontsize=16,color="blue",shape="box"];4825[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4825[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4825 -> 3299[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4826[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4826[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4826 -> 3300[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4827[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4827[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4827 -> 3301[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4828[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4828[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4828 -> 3302[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4829[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4829[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4829 -> 3303[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4830[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4830[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4830 -> 3304[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4831[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4831[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4831 -> 3305[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4832[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4832[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4832 -> 3306[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4833[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4833[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4833 -> 3307[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4834[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4834[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4834 -> 3308[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4835[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4835[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4835 -> 3309[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4836[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4836[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4836 -> 3310[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4837[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4837[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4837 -> 3311[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4838[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3244 -> 4838[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4838 -> 3312[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3224[label="compare (Integer xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];4839[label="xuu4800/Integer xuu48000",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4839[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4839 -> 3313[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3225[label="primCmpChar xuu4700 xuu4800",fontsize=16,color="burlywood",shape="box"];4840[label="xuu4700/Char xuu47000",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4840[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4840 -> 3314[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3226[label="compare (xuu47000 :% xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4841[label="xuu4800/xuu48000 :% xuu48001",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4841[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4841 -> 3315[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3245[label="True",fontsize=16,color="green",shape="box"];3246[label="True",fontsize=16,color="green",shape="box"];3247[label="True",fontsize=16,color="green",shape="box"];3248[label="False",fontsize=16,color="green",shape="box"];3249[label="True",fontsize=16,color="green",shape="box"];3250[label="True",fontsize=16,color="green",shape="box"];3251[label="False",fontsize=16,color="green",shape="box"];3252[label="False",fontsize=16,color="green",shape="box"];3253[label="True",fontsize=16,color="green",shape="box"];3254 -> 3354[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3254[label="xuu47000 < xuu48000 || xuu47000 == xuu48000 && xuu47001 <= xuu48001",fontsize=16,color="magenta"];3254 -> 3357[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3254 -> 3358[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3255[label="GT",fontsize=16,color="green",shape="box"];3256[label="GT",fontsize=16,color="green",shape="box"];1525[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1525 -> 1652[label="",style="solid", color="black", weight=3]; 30.13/12.45 1526[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1526 -> 1653[label="",style="solid", color="black", weight=3]; 30.13/12.45 1870[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1846[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="black",shape="triangle"];1846 -> 1858[label="",style="solid", color="black", weight=3]; 30.13/12.45 1871[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1871 -> 1980[label="",style="solid", color="black", weight=3]; 30.13/12.45 1872[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1872 -> 1981[label="",style="solid", color="black", weight=3]; 30.13/12.45 1873[label="GT",fontsize=16,color="green",shape="box"];1874 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1874[label="compare xuu125 xuu124",fontsize=16,color="magenta"];1874 -> 1982[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1874 -> 1983[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1833 -> 1836[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1833[label="FiniteMap.mkBalBranch6Size_l (Left xuu300) xuu31 xuu50 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1833 -> 1845[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1833 -> 1846[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1832[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 xuu122",fontsize=16,color="burlywood",shape="triangle"];4842[label="xuu122/False",fontsize=10,color="white",style="solid",shape="box"];1832 -> 4842[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4842 -> 1854[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4843[label="xuu122/True",fontsize=10,color="white",style="solid",shape="box"];1832 -> 4843[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4843 -> 1855[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1534[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 FiniteMap.EmptyFM xuu50 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1534 -> 1661[label="",style="solid", color="black", weight=3]; 30.13/12.45 1535[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1535 -> 1662[label="",style="solid", color="black", weight=3]; 30.13/12.45 4373[label="FiniteMap.mkBranchUnbox xuu260 xuu258 xuu261 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261 + FiniteMap.mkBranchRight_size xuu260 xuu258 xuu261)",fontsize=16,color="black",shape="box"];4373 -> 4374[label="",style="solid", color="black", weight=3]; 30.13/12.45 1537[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1537 -> 1664[label="",style="solid", color="black", weight=3]; 30.13/12.45 1538[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1538 -> 1665[label="",style="solid", color="black", weight=3]; 30.13/12.45 1875 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1875[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];1875 -> 1984[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1867 -> 1836[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1867[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1867 -> 1876[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1867 -> 1877[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1866[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 xuu128",fontsize=16,color="burlywood",shape="triangle"];4844[label="xuu128/False",fontsize=10,color="white",style="solid",shape="box"];1866 -> 4844[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4844 -> 1878[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4845[label="xuu128/True",fontsize=10,color="white",style="solid",shape="box"];1866 -> 4845[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4845 -> 1879[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1545[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 FiniteMap.EmptyFM xuu42 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1545 -> 1672[label="",style="solid", color="black", weight=3]; 30.13/12.45 1546[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1546 -> 1673[label="",style="solid", color="black", weight=3]; 30.13/12.45 1435[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1435 -> 1548[label="",style="dashed", color="green", weight=3]; 30.13/12.45 1436[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1436 -> 1549[label="",style="dashed", color="green", weight=3]; 30.13/12.45 1437[label="Neg (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1437 -> 1550[label="",style="dashed", color="green", weight=3]; 30.13/12.45 1438[label="Pos (primMulNat xuu400010 xuu30000)",fontsize=16,color="green",shape="box"];1438 -> 1551[label="",style="dashed", color="green", weight=3]; 30.13/12.45 3257 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3257[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3257 -> 3316[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3257 -> 3317[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3258 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3258[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3258 -> 3318[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3258 -> 3319[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3259 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3259[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3259 -> 3320[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3259 -> 3321[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3260 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3260[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3260 -> 3322[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3260 -> 3323[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3261 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3261[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3261 -> 3324[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3261 -> 3325[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3262 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3262[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3262 -> 3326[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3262 -> 3327[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3263 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3263[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3263 -> 3328[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3263 -> 3329[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3264 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3264[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3264 -> 3330[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3264 -> 3331[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3265 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3265[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3265 -> 3332[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3265 -> 3333[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3266 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3266[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3266 -> 3334[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3266 -> 3335[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3267 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3267[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3267 -> 3336[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3267 -> 3337[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3268 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3268[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3268 -> 3338[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3268 -> 3339[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3269 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3269[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3269 -> 3340[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3269 -> 3341[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3270 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3270[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3270 -> 3342[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3270 -> 3343[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3271[label="primCmpDouble (Double xuu47000 xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4846[label="xuu47001/Pos xuu470010",fontsize=10,color="white",style="solid",shape="box"];3271 -> 4846[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4846 -> 3344[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4847[label="xuu47001/Neg xuu470010",fontsize=10,color="white",style="solid",shape="box"];3271 -> 4847[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4847 -> 3345[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3273 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3273[label="xuu187 == GT",fontsize=16,color="magenta"];3273 -> 3346[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3273 -> 3347[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3272[label="not xuu197",fontsize=16,color="burlywood",shape="triangle"];4848[label="xuu197/False",fontsize=10,color="white",style="solid",shape="box"];3272 -> 4848[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4848 -> 3348[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4849[label="xuu197/True",fontsize=10,color="white",style="solid",shape="box"];3272 -> 4849[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4849 -> 3349[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3274[label="primCmpFloat (Float xuu47000 xuu47001) xuu4800",fontsize=16,color="burlywood",shape="box"];4850[label="xuu47001/Pos xuu470010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4850[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4850 -> 3350[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4851[label="xuu47001/Neg xuu470010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4851[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4851 -> 3351[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3355 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3355[label="xuu47000 == xuu48000 && (xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002)",fontsize=16,color="magenta"];3355 -> 3363[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3355 -> 3364[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3356[label="xuu47000 < xuu48000",fontsize=16,color="blue",shape="box"];4852[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4852[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4852 -> 3365[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4853[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4853[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4853 -> 3366[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4854[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4854[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4854 -> 3367[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4855[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4855[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4855 -> 3368[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4856[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4856[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4856 -> 3369[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4857[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4857[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4857 -> 3370[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4858[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4858[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4858 -> 3371[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4859[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4859[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4859 -> 3372[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4860[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4860[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4860 -> 3373[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4861[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4861[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4861 -> 3374[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4862[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4862[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4862 -> 3375[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4863[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4863[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4863 -> 3376[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4864[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4864[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4864 -> 3377[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4865[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3356 -> 4865[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4865 -> 3378[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3354[label="xuu203 || xuu204",fontsize=16,color="burlywood",shape="triangle"];4866[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];3354 -> 4866[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4866 -> 3379[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4867[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];3354 -> 4867[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4867 -> 3380[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1502[label="primCmpInt xuu47 xuu48",fontsize=16,color="burlywood",shape="triangle"];4868[label="xuu47/Pos xuu470",fontsize=10,color="white",style="solid",shape="box"];1502 -> 4868[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4868 -> 1586[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4869[label="xuu47/Neg xuu470",fontsize=10,color="white",style="solid",shape="box"];1502 -> 4869[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4869 -> 1587[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3280[label="compare (xuu47000 : xuu47001) (xuu48000 : xuu48001)",fontsize=16,color="black",shape="box"];3280 -> 3381[label="",style="solid", color="black", weight=3]; 30.13/12.45 3281[label="compare (xuu47000 : xuu47001) []",fontsize=16,color="black",shape="box"];3281 -> 3382[label="",style="solid", color="black", weight=3]; 30.13/12.45 3282[label="compare [] (xuu48000 : xuu48001)",fontsize=16,color="black",shape="box"];3282 -> 3383[label="",style="solid", color="black", weight=3]; 30.13/12.45 3283[label="compare [] []",fontsize=16,color="black",shape="box"];3283 -> 3384[label="",style="solid", color="black", weight=3]; 30.13/12.45 3284[label="compare () ()",fontsize=16,color="black",shape="box"];3284 -> 3385[label="",style="solid", color="black", weight=3]; 30.13/12.45 3285 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3285[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3285 -> 3386[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3285 -> 3387[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3286 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3286[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3286 -> 3388[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3286 -> 3389[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3287 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3287[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3287 -> 3390[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3287 -> 3391[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3288 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3288[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3288 -> 3392[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3288 -> 3393[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3289 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3289[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3289 -> 3394[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3289 -> 3395[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3290 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3290[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3290 -> 3396[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3290 -> 3397[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3291 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3291[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3291 -> 3398[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3291 -> 3399[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3292 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3292[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3292 -> 3400[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3292 -> 3401[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3293 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3293[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3293 -> 3402[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3293 -> 3403[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3294 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3294[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3294 -> 3404[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3294 -> 3405[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3295 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3295[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3295 -> 3406[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3295 -> 3407[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3296 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3296[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3296 -> 3408[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3296 -> 3409[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3297 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3297[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3297 -> 3410[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3297 -> 3411[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3298 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3298[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3298 -> 3412[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3298 -> 3413[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3299 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3299[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3299 -> 3414[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3299 -> 3415[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3300 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3300[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3300 -> 3416[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3300 -> 3417[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3301 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3301[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3301 -> 3418[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3301 -> 3419[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3302 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3302[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3302 -> 3420[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3302 -> 3421[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3303 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3303[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3303 -> 3422[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3303 -> 3423[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3304 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3304[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3304 -> 3424[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3304 -> 3425[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3305 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3305[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3305 -> 3426[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3305 -> 3427[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3306 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3306[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3306 -> 3428[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3306 -> 3429[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3307 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3307[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3307 -> 3430[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3307 -> 3431[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3308 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3308[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3308 -> 3432[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3308 -> 3433[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3309 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3309[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3309 -> 3434[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3309 -> 3435[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3310 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3310[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3310 -> 3436[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3310 -> 3437[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3311 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3311[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3311 -> 3438[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3311 -> 3439[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3312 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3312[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];3312 -> 3440[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3312 -> 3441[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3313[label="compare (Integer xuu47000) (Integer xuu48000)",fontsize=16,color="black",shape="box"];3313 -> 3442[label="",style="solid", color="black", weight=3]; 30.13/12.45 3314[label="primCmpChar (Char xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];4870[label="xuu4800/Char xuu48000",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4870[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4870 -> 3443[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3315[label="compare (xuu47000 :% xuu47001) (xuu48000 :% xuu48001)",fontsize=16,color="black",shape="box"];3315 -> 3444[label="",style="solid", color="black", weight=3]; 30.13/12.45 3357 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3357[label="xuu47000 == xuu48000 && xuu47001 <= xuu48001",fontsize=16,color="magenta"];3357 -> 3445[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3357 -> 3446[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3358[label="xuu47000 < xuu48000",fontsize=16,color="blue",shape="box"];4871[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4871[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4871 -> 3447[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4872[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4872[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4872 -> 3448[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4873[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4873[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4873 -> 3449[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4874[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4874[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4874 -> 3450[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4875[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4875[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4875 -> 3451[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4876[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4876[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4876 -> 3452[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4877[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4877[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4877 -> 3453[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4878[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4878[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4878 -> 3454[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4879[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4879[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4879 -> 3455[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4880[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4880[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4880 -> 3456[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4881[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4881[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4881 -> 3457[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4882[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4882[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4882 -> 3458[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4883[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4883[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4883 -> 3459[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4884[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3358 -> 4884[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4884 -> 3460[label="",style="solid", color="blue", weight=3]; 30.13/12.45 1652 -> 1502[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1652[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1652 -> 1825[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1652 -> 1826[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1653 -> 1502[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1653[label="primCmpInt (primPlusInt xuu502 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1653 -> 1827[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1653 -> 1828[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1858 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1858[label="FiniteMap.sizeFM xuu50",fontsize=16,color="magenta"];1858 -> 1985[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1980[label="Pos Zero",fontsize=16,color="green",shape="box"];1981[label="xuu342",fontsize=16,color="green",shape="box"];1982[label="xuu125",fontsize=16,color="green",shape="box"];1983[label="xuu124",fontsize=16,color="green",shape="box"];1845 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1845[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1845 -> 1856[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1845 -> 1857[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1854[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 False",fontsize=16,color="black",shape="box"];1854 -> 1880[label="",style="solid", color="black", weight=3]; 30.13/12.45 1855[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];1855 -> 1881[label="",style="solid", color="black", weight=3]; 30.13/12.45 1661[label="error []",fontsize=16,color="red",shape="box"];1662[label="FiniteMap.mkBalBranch6MkBalBranch02 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1662 -> 1859[label="",style="solid", color="black", weight=3]; 30.13/12.45 4374[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261 + FiniteMap.mkBranchRight_size xuu260 xuu258 xuu261",fontsize=16,color="black",shape="box"];4374 -> 4375[label="",style="solid", color="black", weight=3]; 30.13/12.45 1664 -> 1502[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1664[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1664 -> 1861[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1664 -> 1862[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1665 -> 1502[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1665[label="primCmpInt (primPlusInt xuu422 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1665 -> 1863[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1665 -> 1864[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1984[label="xuu42",fontsize=16,color="green",shape="box"];1876 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1876[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1876 -> 1986[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1876 -> 1987[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1877 -> 1852[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1877[label="FiniteMap.mkBalBranch6Size_l (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1878[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 False",fontsize=16,color="black",shape="box"];1878 -> 1988[label="",style="solid", color="black", weight=3]; 30.13/12.45 1879[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];1879 -> 1989[label="",style="solid", color="black", weight=3]; 30.13/12.45 1672[label="error []",fontsize=16,color="red",shape="box"];1673[label="FiniteMap.mkBalBranch6MkBalBranch02 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1673 -> 1882[label="",style="solid", color="black", weight=3]; 30.13/12.45 1548[label="primMulNat xuu400010 xuu30000",fontsize=16,color="burlywood",shape="triangle"];4885[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1548 -> 4885[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4885 -> 1675[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4886[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1548 -> 4886[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4886 -> 1676[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1549 -> 1548[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1549[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1549 -> 1677[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1550 -> 1548[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1550[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1550 -> 1678[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1551 -> 1548[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1551[label="primMulNat xuu400010 xuu30000",fontsize=16,color="magenta"];1551 -> 1679[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1551 -> 1680[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3316[label="xuu48000",fontsize=16,color="green",shape="box"];3317[label="xuu47000",fontsize=16,color="green",shape="box"];3318[label="xuu48000",fontsize=16,color="green",shape="box"];3319[label="xuu47000",fontsize=16,color="green",shape="box"];3320[label="xuu48000",fontsize=16,color="green",shape="box"];3321[label="xuu47000",fontsize=16,color="green",shape="box"];3322[label="xuu48000",fontsize=16,color="green",shape="box"];3323[label="xuu47000",fontsize=16,color="green",shape="box"];3324[label="xuu48000",fontsize=16,color="green",shape="box"];3325[label="xuu47000",fontsize=16,color="green",shape="box"];3326[label="xuu48000",fontsize=16,color="green",shape="box"];3327[label="xuu47000",fontsize=16,color="green",shape="box"];3328[label="xuu48000",fontsize=16,color="green",shape="box"];3329[label="xuu47000",fontsize=16,color="green",shape="box"];3330[label="xuu48000",fontsize=16,color="green",shape="box"];3331[label="xuu47000",fontsize=16,color="green",shape="box"];3332[label="xuu48000",fontsize=16,color="green",shape="box"];3333[label="xuu47000",fontsize=16,color="green",shape="box"];3334[label="xuu48000",fontsize=16,color="green",shape="box"];3335[label="xuu47000",fontsize=16,color="green",shape="box"];3336[label="xuu48000",fontsize=16,color="green",shape="box"];3337[label="xuu47000",fontsize=16,color="green",shape="box"];3338[label="xuu48000",fontsize=16,color="green",shape="box"];3339[label="xuu47000",fontsize=16,color="green",shape="box"];3340[label="xuu48000",fontsize=16,color="green",shape="box"];3341[label="xuu47000",fontsize=16,color="green",shape="box"];3342[label="xuu48000",fontsize=16,color="green",shape="box"];3343[label="xuu47000",fontsize=16,color="green",shape="box"];3344[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4887[label="xuu4800/Double xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4887[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4887 -> 3461[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3345[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4888[label="xuu4800/Double xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3345 -> 4888[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4888 -> 3462[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3346[label="GT",fontsize=16,color="green",shape="box"];3347[label="xuu187",fontsize=16,color="green",shape="box"];3348[label="not False",fontsize=16,color="black",shape="box"];3348 -> 3463[label="",style="solid", color="black", weight=3]; 30.13/12.45 3349[label="not True",fontsize=16,color="black",shape="box"];3349 -> 3464[label="",style="solid", color="black", weight=3]; 30.13/12.45 3350[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4889[label="xuu4800/Float xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3350 -> 4889[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4889 -> 3465[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3351[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) xuu4800",fontsize=16,color="burlywood",shape="box"];4890[label="xuu4800/Float xuu48000 xuu48001",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4890[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4890 -> 3466[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3363[label="xuu47000 == xuu48000",fontsize=16,color="blue",shape="box"];4891[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4891[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4891 -> 3485[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4892[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4892[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4892 -> 3486[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4893[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4893[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4893 -> 3487[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4894[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4894[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4894 -> 3488[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4895[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4895[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4895 -> 3489[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4896[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4896[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4896 -> 3490[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4897[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4897[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4897 -> 3491[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4898[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4898[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4898 -> 3492[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4899[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4899[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4899 -> 3493[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4900[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4900 -> 3494[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4901[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4901[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4901 -> 3495[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4902[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4902[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4902 -> 3496[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4903[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4903[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4903 -> 3497[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4904[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3363 -> 4904[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4904 -> 3498[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3364 -> 3354[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3364[label="xuu47001 < xuu48001 || xuu47001 == xuu48001 && xuu47002 <= xuu48002",fontsize=16,color="magenta"];3364 -> 3499[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3364 -> 3500[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3365[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3365 -> 3501[label="",style="solid", color="black", weight=3]; 30.13/12.45 3366[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3366 -> 3502[label="",style="solid", color="black", weight=3]; 30.13/12.45 3367[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3367 -> 3503[label="",style="solid", color="black", weight=3]; 30.13/12.45 3368[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3368 -> 3504[label="",style="solid", color="black", weight=3]; 30.13/12.45 3369[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3369 -> 3505[label="",style="solid", color="black", weight=3]; 30.13/12.45 3370 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3370[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3370 -> 3506[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3370 -> 3507[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3371[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3371 -> 3508[label="",style="solid", color="black", weight=3]; 30.13/12.45 3372[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3372 -> 3509[label="",style="solid", color="black", weight=3]; 30.13/12.45 3373[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3373 -> 3510[label="",style="solid", color="black", weight=3]; 30.13/12.45 3374[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3374 -> 3511[label="",style="solid", color="black", weight=3]; 30.13/12.45 3375[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3375 -> 3512[label="",style="solid", color="black", weight=3]; 30.13/12.45 3376[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3376 -> 3513[label="",style="solid", color="black", weight=3]; 30.13/12.45 3377[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3377 -> 3514[label="",style="solid", color="black", weight=3]; 30.13/12.45 3378[label="xuu47000 < xuu48000",fontsize=16,color="black",shape="triangle"];3378 -> 3515[label="",style="solid", color="black", weight=3]; 30.13/12.45 3379[label="False || xuu204",fontsize=16,color="black",shape="box"];3379 -> 3516[label="",style="solid", color="black", weight=3]; 30.13/12.45 3380[label="True || xuu204",fontsize=16,color="black",shape="box"];3380 -> 3517[label="",style="solid", color="black", weight=3]; 30.13/12.45 1586[label="primCmpInt (Pos xuu470) xuu48",fontsize=16,color="burlywood",shape="box"];4905[label="xuu470/Succ xuu4700",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4905[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4905 -> 1757[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4906[label="xuu470/Zero",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4906[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4906 -> 1758[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1587[label="primCmpInt (Neg xuu470) xuu48",fontsize=16,color="burlywood",shape="box"];4907[label="xuu470/Succ xuu4700",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4907[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4907 -> 1759[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4908[label="xuu470/Zero",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4908[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4908 -> 1760[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3381 -> 3518[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3381[label="primCompAux xuu47000 xuu48000 (compare xuu47001 xuu48001)",fontsize=16,color="magenta"];3381 -> 3519[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3382[label="GT",fontsize=16,color="green",shape="box"];3383[label="LT",fontsize=16,color="green",shape="box"];3384[label="EQ",fontsize=16,color="green",shape="box"];3385[label="EQ",fontsize=16,color="green",shape="box"];3386[label="xuu48000",fontsize=16,color="green",shape="box"];3387[label="xuu47000",fontsize=16,color="green",shape="box"];3388[label="xuu48000",fontsize=16,color="green",shape="box"];3389[label="xuu47000",fontsize=16,color="green",shape="box"];3390[label="xuu48000",fontsize=16,color="green",shape="box"];3391[label="xuu47000",fontsize=16,color="green",shape="box"];3392[label="xuu48000",fontsize=16,color="green",shape="box"];3393[label="xuu47000",fontsize=16,color="green",shape="box"];3394[label="xuu48000",fontsize=16,color="green",shape="box"];3395[label="xuu47000",fontsize=16,color="green",shape="box"];3396[label="xuu48000",fontsize=16,color="green",shape="box"];3397[label="xuu47000",fontsize=16,color="green",shape="box"];3398[label="xuu48000",fontsize=16,color="green",shape="box"];3399[label="xuu47000",fontsize=16,color="green",shape="box"];3400[label="xuu48000",fontsize=16,color="green",shape="box"];3401[label="xuu47000",fontsize=16,color="green",shape="box"];3402[label="xuu48000",fontsize=16,color="green",shape="box"];3403[label="xuu47000",fontsize=16,color="green",shape="box"];3404[label="xuu48000",fontsize=16,color="green",shape="box"];3405[label="xuu47000",fontsize=16,color="green",shape="box"];3406[label="xuu48000",fontsize=16,color="green",shape="box"];3407[label="xuu47000",fontsize=16,color="green",shape="box"];3408[label="xuu48000",fontsize=16,color="green",shape="box"];3409[label="xuu47000",fontsize=16,color="green",shape="box"];3410[label="xuu48000",fontsize=16,color="green",shape="box"];3411[label="xuu47000",fontsize=16,color="green",shape="box"];3412[label="xuu48000",fontsize=16,color="green",shape="box"];3413[label="xuu47000",fontsize=16,color="green",shape="box"];3414[label="xuu48000",fontsize=16,color="green",shape="box"];3415[label="xuu47000",fontsize=16,color="green",shape="box"];3416[label="xuu48000",fontsize=16,color="green",shape="box"];3417[label="xuu47000",fontsize=16,color="green",shape="box"];3418[label="xuu48000",fontsize=16,color="green",shape="box"];3419[label="xuu47000",fontsize=16,color="green",shape="box"];3420[label="xuu48000",fontsize=16,color="green",shape="box"];3421[label="xuu47000",fontsize=16,color="green",shape="box"];3422[label="xuu48000",fontsize=16,color="green",shape="box"];3423[label="xuu47000",fontsize=16,color="green",shape="box"];3424[label="xuu48000",fontsize=16,color="green",shape="box"];3425[label="xuu47000",fontsize=16,color="green",shape="box"];3426[label="xuu48000",fontsize=16,color="green",shape="box"];3427[label="xuu47000",fontsize=16,color="green",shape="box"];3428[label="xuu48000",fontsize=16,color="green",shape="box"];3429[label="xuu47000",fontsize=16,color="green",shape="box"];3430[label="xuu48000",fontsize=16,color="green",shape="box"];3431[label="xuu47000",fontsize=16,color="green",shape="box"];3432[label="xuu48000",fontsize=16,color="green",shape="box"];3433[label="xuu47000",fontsize=16,color="green",shape="box"];3434[label="xuu48000",fontsize=16,color="green",shape="box"];3435[label="xuu47000",fontsize=16,color="green",shape="box"];3436[label="xuu48000",fontsize=16,color="green",shape="box"];3437[label="xuu47000",fontsize=16,color="green",shape="box"];3438[label="xuu48000",fontsize=16,color="green",shape="box"];3439[label="xuu47000",fontsize=16,color="green",shape="box"];3440[label="xuu48000",fontsize=16,color="green",shape="box"];3441[label="xuu47000",fontsize=16,color="green",shape="box"];3442 -> 1502[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3442[label="primCmpInt xuu47000 xuu48000",fontsize=16,color="magenta"];3442 -> 3520[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3442 -> 3521[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3443[label="primCmpChar (Char xuu47000) (Char xuu48000)",fontsize=16,color="black",shape="box"];3443 -> 3522[label="",style="solid", color="black", weight=3]; 30.13/12.45 3444[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="blue",shape="box"];4909[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4909[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4909 -> 3523[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4910[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4910[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4910 -> 3524[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3445[label="xuu47000 == xuu48000",fontsize=16,color="blue",shape="box"];4911[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4911[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4911 -> 3525[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4912[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4912[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4912 -> 3526[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4913[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4913[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4913 -> 3527[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4914[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4914[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4914 -> 3528[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4915[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4915[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4915 -> 3529[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4916[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4916[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4916 -> 3530[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4917[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4917[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4917 -> 3531[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4918[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4918[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4918 -> 3532[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4919[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4919[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4919 -> 3533[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4920[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4920[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4920 -> 3534[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4921[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4921[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4921 -> 3535[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4922[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4922[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4922 -> 3536[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4923[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4923[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4923 -> 3537[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4924[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3445 -> 4924[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4924 -> 3538[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3446[label="xuu47001 <= xuu48001",fontsize=16,color="blue",shape="box"];4925[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4925[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4925 -> 3539[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4926[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4926[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4926 -> 3540[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4927[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4927[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4927 -> 3541[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4928[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4928[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4928 -> 3542[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4929[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4929[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4929 -> 3543[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4930[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4930[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4930 -> 3544[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4931[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4931[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4931 -> 3545[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4932[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4932[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4932 -> 3546[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4933[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4933[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4933 -> 3547[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4934[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4934[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4934 -> 3548[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4935[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4935[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4935 -> 3549[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4936[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4936[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4936 -> 3550[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4937[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4937[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4937 -> 3551[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4938[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4938[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4938 -> 3552[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3447 -> 3365[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3447[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3447 -> 3553[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3447 -> 3554[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3448 -> 3366[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3448[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3448 -> 3555[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3448 -> 3556[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3449 -> 3367[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3449[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3449 -> 3557[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3449 -> 3558[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3450 -> 3368[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3450[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3450 -> 3559[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3450 -> 3560[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3451 -> 3369[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3451[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3451 -> 3561[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3451 -> 3562[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3452 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3452[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3452 -> 3563[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3452 -> 3564[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3453 -> 3371[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3453[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3453 -> 3565[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3453 -> 3566[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3454 -> 3372[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3454[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3454 -> 3567[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3454 -> 3568[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3455 -> 3373[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3455[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3455 -> 3569[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3455 -> 3570[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3456 -> 3374[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3456[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3456 -> 3571[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3456 -> 3572[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3457 -> 3375[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3457[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3457 -> 3573[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3457 -> 3574[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3458 -> 3376[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3458[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3458 -> 3575[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3458 -> 3576[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3459 -> 3377[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3459[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3459 -> 3577[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3459 -> 3578[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3460 -> 3378[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3460[label="xuu47000 < xuu48000",fontsize=16,color="magenta"];3460 -> 3579[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3460 -> 3580[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1825 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1825[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34)",fontsize=16,color="magenta"];1825 -> 2003[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1825 -> 2004[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1826[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1827 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1827[label="primPlusInt xuu502 (FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34)",fontsize=16,color="magenta"];1827 -> 2005[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1828[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1985[label="xuu50",fontsize=16,color="green",shape="box"];1856 -> 1847[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1856[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1857 -> 1838[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1857[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];1880[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 otherwise",fontsize=16,color="black",shape="box"];1880 -> 2016[label="",style="solid", color="black", weight=3]; 30.13/12.45 1881[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 xuu50 xuu34 xuu50 xuu34 xuu50",fontsize=16,color="burlywood",shape="box"];4939[label="xuu50/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4939[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4939 -> 2017[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4940[label="xuu50/FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4940[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4940 -> 2018[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1859 -> 2019[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1859[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1859 -> 2020[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 4375 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 4375[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261) (FiniteMap.mkBranchRight_size xuu260 xuu258 xuu261)",fontsize=16,color="magenta"];4375 -> 4376[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 4375 -> 4377[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1861 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1861[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34)",fontsize=16,color="magenta"];1861 -> 2008[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1861 -> 2009[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1862[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1863 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1863[label="primPlusInt xuu422 (FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34)",fontsize=16,color="magenta"];1863 -> 2010[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1863 -> 2011[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1864[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1986 -> 1847[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1986[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1987 -> 1840[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1987[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];1988[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 otherwise",fontsize=16,color="black",shape="box"];1988 -> 2025[label="",style="solid", color="black", weight=3]; 30.13/12.45 1989[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 xuu42 xuu34 xuu42 xuu34 xuu42",fontsize=16,color="burlywood",shape="box"];4941[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1989 -> 4941[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4941 -> 2026[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4942[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1989 -> 4942[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4942 -> 2027[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1882 -> 2028[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1882[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1882 -> 2029[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1675[label="primMulNat (Succ xuu4000100) xuu30000",fontsize=16,color="burlywood",shape="box"];4943[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1675 -> 4943[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4943 -> 1884[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4944[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1675 -> 4944[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4944 -> 1885[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1676[label="primMulNat Zero xuu30000",fontsize=16,color="burlywood",shape="box"];4945[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1676 -> 4945[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4945 -> 1886[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4946[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1676 -> 4946[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4946 -> 1887[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1677[label="xuu30000",fontsize=16,color="green",shape="box"];1678[label="xuu400010",fontsize=16,color="green",shape="box"];1679[label="xuu400010",fontsize=16,color="green",shape="box"];1680[label="xuu30000",fontsize=16,color="green",shape="box"];3461[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4947[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3461 -> 4947[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4947 -> 3581[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4948[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3461 -> 4948[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4948 -> 3582[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3462[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4949[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3462 -> 4949[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4949 -> 3583[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4950[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3462 -> 4950[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4950 -> 3584[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3463[label="True",fontsize=16,color="green",shape="box"];3464[label="False",fontsize=16,color="green",shape="box"];3465[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4951[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4951[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4951 -> 3585[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4952[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4952[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4952 -> 3586[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3466[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 xuu48001)",fontsize=16,color="burlywood",shape="box"];4953[label="xuu48001/Pos xuu480010",fontsize=10,color="white",style="solid",shape="box"];3466 -> 4953[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4953 -> 3587[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4954[label="xuu48001/Neg xuu480010",fontsize=10,color="white",style="solid",shape="box"];3466 -> 4954[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4954 -> 3588[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3485 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3485[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3485 -> 3589[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3485 -> 3590[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3486 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3486[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3486 -> 3591[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3486 -> 3592[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3487 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3487[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3487 -> 3593[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3487 -> 3594[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3488 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3488[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3488 -> 3595[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3488 -> 3596[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3489 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3489[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3489 -> 3597[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3489 -> 3598[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3490 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3490[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3490 -> 3599[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3490 -> 3600[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3491 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3491[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3491 -> 3601[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3491 -> 3602[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3492 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3492[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3492 -> 3603[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3492 -> 3604[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3493 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3493[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3493 -> 3605[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3493 -> 3606[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3494 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3494[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3494 -> 3607[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3494 -> 3608[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3495 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3495[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3495 -> 3609[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3495 -> 3610[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3496 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3496[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3496 -> 3611[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3496 -> 3612[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3497 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3497[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3497 -> 3613[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3497 -> 3614[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3498 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3498[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3498 -> 3615[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3498 -> 3616[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3499 -> 2705[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3499[label="xuu47001 == xuu48001 && xuu47002 <= xuu48002",fontsize=16,color="magenta"];3499 -> 3617[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3499 -> 3618[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3500[label="xuu47001 < xuu48001",fontsize=16,color="blue",shape="box"];4955[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4955[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4955 -> 3619[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4956[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4956[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4956 -> 3620[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4957[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4957[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4957 -> 3621[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4958[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4958[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4958 -> 3622[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4959[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4959[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4959 -> 3623[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4960[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4960[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4960 -> 3624[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4961[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4961[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4961 -> 3625[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4962[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4962[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4962 -> 3626[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4963[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4963[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4963 -> 3627[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4964[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4964[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4964 -> 3628[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4965[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4965[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4965 -> 3629[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4966[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4966[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4966 -> 3630[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4967[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4967[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4967 -> 3631[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4968[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3500 -> 4968[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4968 -> 3632[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3501 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3501[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3501 -> 3633[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3501 -> 3634[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3502 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3502[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3502 -> 3635[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3502 -> 3636[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3503 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3503[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3503 -> 3637[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3503 -> 3638[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3504 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3504[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3504 -> 3639[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3504 -> 3640[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3505 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3505[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3505 -> 3641[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3505 -> 3642[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3506[label="xuu48000",fontsize=16,color="green",shape="box"];3507[label="xuu47000",fontsize=16,color="green",shape="box"];1489[label="xuu470 < xuu480",fontsize=16,color="black",shape="triangle"];1489 -> 1559[label="",style="solid", color="black", weight=3]; 30.13/12.45 3508 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3508[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3508 -> 3643[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3508 -> 3644[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3509 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3509[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3509 -> 3645[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3509 -> 3646[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3510 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3510[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3510 -> 3647[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3510 -> 3648[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3511 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3511[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3511 -> 3649[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3511 -> 3650[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3512 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3512[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3512 -> 3651[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3512 -> 3652[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3513 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3513[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3513 -> 3653[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3513 -> 3654[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3514 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3514[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3514 -> 3655[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3514 -> 3656[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3515 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3515[label="compare xuu47000 xuu48000 == LT",fontsize=16,color="magenta"];3515 -> 3657[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3515 -> 3658[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3516[label="xuu204",fontsize=16,color="green",shape="box"];3517[label="True",fontsize=16,color="green",shape="box"];1757[label="primCmpInt (Pos (Succ xuu4700)) xuu48",fontsize=16,color="burlywood",shape="box"];4969[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4969[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4969 -> 1970[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4970[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4970[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4970 -> 1971[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1758[label="primCmpInt (Pos Zero) xuu48",fontsize=16,color="burlywood",shape="box"];4971[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4971[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4971 -> 1972[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4972[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4972[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4972 -> 1973[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1759[label="primCmpInt (Neg (Succ xuu4700)) xuu48",fontsize=16,color="burlywood",shape="box"];4973[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1759 -> 4973[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4973 -> 1974[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4974[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1759 -> 4974[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4974 -> 1975[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1760[label="primCmpInt (Neg Zero) xuu48",fontsize=16,color="burlywood",shape="box"];4975[label="xuu48/Pos xuu480",fontsize=10,color="white",style="solid",shape="box"];1760 -> 4975[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4975 -> 1976[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4976[label="xuu48/Neg xuu480",fontsize=10,color="white",style="solid",shape="box"];1760 -> 4976[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4976 -> 1977[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3519 -> 3186[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3519[label="compare xuu47001 xuu48001",fontsize=16,color="magenta"];3519 -> 3659[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3519 -> 3660[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3518[label="primCompAux xuu47000 xuu48000 xuu214",fontsize=16,color="black",shape="triangle"];3518 -> 3661[label="",style="solid", color="black", weight=3]; 30.13/12.45 3520[label="xuu47000",fontsize=16,color="green",shape="box"];3521[label="xuu48000",fontsize=16,color="green",shape="box"];3522 -> 2504[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3522[label="primCmpNat xuu47000 xuu48000",fontsize=16,color="magenta"];3522 -> 3688[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3522 -> 3689[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3523 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3523[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="magenta"];3523 -> 3690[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3523 -> 3691[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3524 -> 3188[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3524[label="compare (xuu47000 * xuu48001) (xuu48000 * xuu47001)",fontsize=16,color="magenta"];3524 -> 3692[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3524 -> 3693[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3525 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3525[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3525 -> 3694[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3525 -> 3695[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3526 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3526[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3526 -> 3696[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3526 -> 3697[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3527 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3527[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3527 -> 3698[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3527 -> 3699[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3528 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3528[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3528 -> 3700[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3528 -> 3701[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3529 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3529[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3529 -> 3702[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3529 -> 3703[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3530 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3530[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3530 -> 3704[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3530 -> 3705[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3531 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3531[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3531 -> 3706[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3531 -> 3707[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3532 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3532[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3532 -> 3708[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3532 -> 3709[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3533 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3533[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3533 -> 3710[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3533 -> 3711[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3534 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3534[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3534 -> 3712[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3534 -> 3713[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3535 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3535[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3535 -> 3714[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3535 -> 3715[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3536 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3536[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3536 -> 3716[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3536 -> 3717[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3537 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3537[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3537 -> 3718[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3537 -> 3719[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3538 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3538[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3538 -> 3720[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3538 -> 3721[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3539 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3539[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3539 -> 3722[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3539 -> 3723[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3540 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3540[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3540 -> 3724[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3540 -> 3725[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3541 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3541[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3541 -> 3726[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3541 -> 3727[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3542 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3542[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3542 -> 3728[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3542 -> 3729[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3543 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3543[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3543 -> 3730[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3543 -> 3731[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3544 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3544[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3544 -> 3732[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3544 -> 3733[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3545 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3545[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3545 -> 3734[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3545 -> 3735[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3546 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3546[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3546 -> 3736[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3546 -> 3737[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3547 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3547[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3547 -> 3738[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3547 -> 3739[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3548 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3548[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3548 -> 3740[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3548 -> 3741[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3549 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3549[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3549 -> 3742[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3549 -> 3743[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3550 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3550[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3550 -> 3744[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3550 -> 3745[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3551 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3551[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3551 -> 3746[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3551 -> 3747[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3552 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3552[label="xuu47001 <= xuu48001",fontsize=16,color="magenta"];3552 -> 3748[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3552 -> 3749[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3553[label="xuu48000",fontsize=16,color="green",shape="box"];3554[label="xuu47000",fontsize=16,color="green",shape="box"];3555[label="xuu48000",fontsize=16,color="green",shape="box"];3556[label="xuu47000",fontsize=16,color="green",shape="box"];3557[label="xuu48000",fontsize=16,color="green",shape="box"];3558[label="xuu47000",fontsize=16,color="green",shape="box"];3559[label="xuu48000",fontsize=16,color="green",shape="box"];3560[label="xuu47000",fontsize=16,color="green",shape="box"];3561[label="xuu48000",fontsize=16,color="green",shape="box"];3562[label="xuu47000",fontsize=16,color="green",shape="box"];3563[label="xuu48000",fontsize=16,color="green",shape="box"];3564[label="xuu47000",fontsize=16,color="green",shape="box"];3565[label="xuu48000",fontsize=16,color="green",shape="box"];3566[label="xuu47000",fontsize=16,color="green",shape="box"];3567[label="xuu48000",fontsize=16,color="green",shape="box"];3568[label="xuu47000",fontsize=16,color="green",shape="box"];3569[label="xuu48000",fontsize=16,color="green",shape="box"];3570[label="xuu47000",fontsize=16,color="green",shape="box"];3571[label="xuu48000",fontsize=16,color="green",shape="box"];3572[label="xuu47000",fontsize=16,color="green",shape="box"];3573[label="xuu48000",fontsize=16,color="green",shape="box"];3574[label="xuu47000",fontsize=16,color="green",shape="box"];3575[label="xuu48000",fontsize=16,color="green",shape="box"];3576[label="xuu47000",fontsize=16,color="green",shape="box"];3577[label="xuu48000",fontsize=16,color="green",shape="box"];3578[label="xuu47000",fontsize=16,color="green",shape="box"];3579[label="xuu48000",fontsize=16,color="green",shape="box"];3580[label="xuu47000",fontsize=16,color="green",shape="box"];2003 -> 1838[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2003[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34",fontsize=16,color="magenta"];2003 -> 2127[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2004[label="Pos Zero",fontsize=16,color="green",shape="box"];1998[label="primPlusInt xuu502 xuu132",fontsize=16,color="burlywood",shape="triangle"];4977[label="xuu502/Pos xuu5020",fontsize=10,color="white",style="solid",shape="box"];1998 -> 4977[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4977 -> 2023[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4978[label="xuu502/Neg xuu5020",fontsize=10,color="white",style="solid",shape="box"];1998 -> 4978[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4978 -> 2024[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2005 -> 1838[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2005[label="FiniteMap.mkBalBranch6Size_r (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="magenta"];2005 -> 2128[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2016[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu300) xuu31 xuu50 xuu34 (Left xuu300) xuu31 xuu50 xuu34 True",fontsize=16,color="black",shape="box"];2016 -> 2129[label="",style="solid", color="black", weight=3]; 30.13/12.45 2017[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2017 -> 2130[label="",style="solid", color="black", weight=3]; 30.13/12.45 2018[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)",fontsize=16,color="black",shape="box"];2018 -> 2131[label="",style="solid", color="black", weight=3]; 30.13/12.45 2020 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2020[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2020 -> 2132[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2020 -> 2133[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2019[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu133",fontsize=16,color="burlywood",shape="triangle"];4979[label="xuu133/False",fontsize=10,color="white",style="solid",shape="box"];2019 -> 4979[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4979 -> 2134[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4980[label="xuu133/True",fontsize=10,color="white",style="solid",shape="box"];2019 -> 4980[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4980 -> 2135[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4376[label="FiniteMap.mkBranchRight_size xuu260 xuu258 xuu261",fontsize=16,color="black",shape="box"];4376 -> 4378[label="",style="solid", color="black", weight=3]; 30.13/12.45 4377[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261",fontsize=16,color="black",shape="box"];4377 -> 4379[label="",style="solid", color="black", weight=3]; 30.13/12.45 2008 -> 1840[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2008[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34",fontsize=16,color="magenta"];2008 -> 2142[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2009[label="Pos Zero",fontsize=16,color="green",shape="box"];2010 -> 1840[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2010[label="FiniteMap.mkBalBranch6Size_r (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="magenta"];2010 -> 2143[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2011[label="xuu422",fontsize=16,color="green",shape="box"];2025[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu300) xuu31 xuu42 xuu34 (Right xuu300) xuu31 xuu42 xuu34 True",fontsize=16,color="black",shape="box"];2025 -> 2144[label="",style="solid", color="black", weight=3]; 30.13/12.45 2026[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2026 -> 2145[label="",style="solid", color="black", weight=3]; 30.13/12.45 2027[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2027 -> 2146[label="",style="solid", color="black", weight=3]; 30.13/12.45 2029 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2029[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2029 -> 2147[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2029 -> 2148[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2028[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu137",fontsize=16,color="burlywood",shape="triangle"];4981[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4981[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4981 -> 2149[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4982[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4982[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 4982 -> 2150[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1884[label="primMulNat (Succ xuu4000100) (Succ xuu300000)",fontsize=16,color="black",shape="box"];1884 -> 2032[label="",style="solid", color="black", weight=3]; 30.13/12.45 1885[label="primMulNat (Succ xuu4000100) Zero",fontsize=16,color="black",shape="box"];1885 -> 2033[label="",style="solid", color="black", weight=3]; 30.13/12.45 1886[label="primMulNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];1886 -> 2034[label="",style="solid", color="black", weight=3]; 30.13/12.45 1887[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1887 -> 2035[label="",style="solid", color="black", weight=3]; 30.13/12.45 3581[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3581 -> 3750[label="",style="solid", color="black", weight=3]; 30.13/12.45 3582[label="primCmpDouble (Double xuu47000 (Pos xuu470010)) (Double xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3582 -> 3751[label="",style="solid", color="black", weight=3]; 30.13/12.45 3583[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3583 -> 3752[label="",style="solid", color="black", weight=3]; 30.13/12.45 3584[label="primCmpDouble (Double xuu47000 (Neg xuu470010)) (Double xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3584 -> 3753[label="",style="solid", color="black", weight=3]; 30.13/12.45 3585[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3585 -> 3754[label="",style="solid", color="black", weight=3]; 30.13/12.45 3586[label="primCmpFloat (Float xuu47000 (Pos xuu470010)) (Float xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3586 -> 3755[label="",style="solid", color="black", weight=3]; 30.13/12.45 3587[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 (Pos xuu480010))",fontsize=16,color="black",shape="box"];3587 -> 3756[label="",style="solid", color="black", weight=3]; 30.13/12.45 3588[label="primCmpFloat (Float xuu47000 (Neg xuu470010)) (Float xuu48000 (Neg xuu480010))",fontsize=16,color="black",shape="box"];3588 -> 3757[label="",style="solid", color="black", weight=3]; 30.13/12.45 3589[label="xuu48000",fontsize=16,color="green",shape="box"];3590[label="xuu47000",fontsize=16,color="green",shape="box"];3591[label="xuu48000",fontsize=16,color="green",shape="box"];3592[label="xuu47000",fontsize=16,color="green",shape="box"];3593[label="xuu48000",fontsize=16,color="green",shape="box"];3594[label="xuu47000",fontsize=16,color="green",shape="box"];3595[label="xuu48000",fontsize=16,color="green",shape="box"];3596[label="xuu47000",fontsize=16,color="green",shape="box"];3597[label="xuu48000",fontsize=16,color="green",shape="box"];3598[label="xuu47000",fontsize=16,color="green",shape="box"];3599[label="xuu48000",fontsize=16,color="green",shape="box"];3600[label="xuu47000",fontsize=16,color="green",shape="box"];3601[label="xuu48000",fontsize=16,color="green",shape="box"];3602[label="xuu47000",fontsize=16,color="green",shape="box"];3603[label="xuu48000",fontsize=16,color="green",shape="box"];3604[label="xuu47000",fontsize=16,color="green",shape="box"];3605[label="xuu48000",fontsize=16,color="green",shape="box"];3606[label="xuu47000",fontsize=16,color="green",shape="box"];3607[label="xuu48000",fontsize=16,color="green",shape="box"];3608[label="xuu47000",fontsize=16,color="green",shape="box"];3609[label="xuu48000",fontsize=16,color="green",shape="box"];3610[label="xuu47000",fontsize=16,color="green",shape="box"];3611[label="xuu48000",fontsize=16,color="green",shape="box"];3612[label="xuu47000",fontsize=16,color="green",shape="box"];3613[label="xuu48000",fontsize=16,color="green",shape="box"];3614[label="xuu47000",fontsize=16,color="green",shape="box"];3615[label="xuu48000",fontsize=16,color="green",shape="box"];3616[label="xuu47000",fontsize=16,color="green",shape="box"];3617[label="xuu47001 == xuu48001",fontsize=16,color="blue",shape="box"];4983[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4983[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4983 -> 3758[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4984[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4984[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4984 -> 3759[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4985[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4985 -> 3760[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4986[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4986[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4986 -> 3761[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4987[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4987[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4987 -> 3762[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4988[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4988[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4988 -> 3763[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4989[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4989[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4989 -> 3764[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4990[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4990[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4990 -> 3765[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4991[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4991[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4991 -> 3766[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4992[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4992[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4992 -> 3767[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4993[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4993[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4993 -> 3768[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4994[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4994[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4994 -> 3769[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4995[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4995[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4995 -> 3770[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4996[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3617 -> 4996[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4996 -> 3771[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3618[label="xuu47002 <= xuu48002",fontsize=16,color="blue",shape="box"];4997[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 4997[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4997 -> 3772[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4998[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 4998[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4998 -> 3773[label="",style="solid", color="blue", weight=3]; 30.13/12.45 4999[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 4999[label="",style="solid", color="blue", weight=9]; 30.13/12.45 4999 -> 3774[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5000[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5000[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5000 -> 3775[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5001[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5001[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5001 -> 3776[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5002[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5002[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5002 -> 3777[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5003[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5003[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5003 -> 3778[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5004[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5004[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5004 -> 3779[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5005[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5005[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5005 -> 3780[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5006[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5006[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5006 -> 3781[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5007[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5007[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5007 -> 3782[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5008[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5008[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5008 -> 3783[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5009[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5009[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5009 -> 3784[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5010[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5010[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5010 -> 3785[label="",style="solid", color="blue", weight=3]; 30.13/12.45 3619 -> 3365[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3619[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3619 -> 3786[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3619 -> 3787[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3620 -> 3366[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3620[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3620 -> 3788[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3620 -> 3789[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3621 -> 3367[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3621[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3621 -> 3790[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3621 -> 3791[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3622 -> 3368[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3622[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3622 -> 3792[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3622 -> 3793[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3623 -> 3369[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3623[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3623 -> 3794[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3623 -> 3795[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3624 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3624[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3624 -> 3796[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3624 -> 3797[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3625 -> 3371[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3625[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3625 -> 3798[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3625 -> 3799[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3626 -> 3372[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3626[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3626 -> 3800[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3626 -> 3801[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3627 -> 3373[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3627[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3627 -> 3802[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3627 -> 3803[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3628 -> 3374[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3628[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3628 -> 3804[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3628 -> 3805[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3629 -> 3375[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3629[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3629 -> 3806[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3629 -> 3807[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3630 -> 3376[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3630[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3630 -> 3808[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3630 -> 3809[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3631 -> 3377[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3631[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3631 -> 3810[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3631 -> 3811[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3632 -> 3378[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3632[label="xuu47001 < xuu48001",fontsize=16,color="magenta"];3632 -> 3812[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3632 -> 3813[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3633[label="LT",fontsize=16,color="green",shape="box"];3634[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3634 -> 3814[label="",style="solid", color="black", weight=3]; 30.13/12.45 3635[label="LT",fontsize=16,color="green",shape="box"];3636 -> 3183[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3636[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3636 -> 3815[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3636 -> 3816[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3637[label="LT",fontsize=16,color="green",shape="box"];3638 -> 3184[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3638[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3638 -> 3817[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3638 -> 3818[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3639[label="LT",fontsize=16,color="green",shape="box"];3640[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3640 -> 3819[label="",style="solid", color="black", weight=3]; 30.13/12.45 3641[label="LT",fontsize=16,color="green",shape="box"];3642[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3642 -> 3820[label="",style="solid", color="black", weight=3]; 30.13/12.45 1559 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1559[label="compare xuu470 xuu480 == LT",fontsize=16,color="magenta"];1559 -> 1695[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1559 -> 1696[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3643[label="LT",fontsize=16,color="green",shape="box"];3644 -> 3186[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3644[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3644 -> 3821[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3644 -> 3822[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3645[label="LT",fontsize=16,color="green",shape="box"];3646 -> 3187[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3646[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3646 -> 3823[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3646 -> 3824[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3647[label="LT",fontsize=16,color="green",shape="box"];3648[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3648 -> 3825[label="",style="solid", color="black", weight=3]; 30.13/12.45 3649[label="LT",fontsize=16,color="green",shape="box"];3650 -> 3188[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3650[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3650 -> 3826[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3650 -> 3827[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3651[label="LT",fontsize=16,color="green",shape="box"];3652 -> 3189[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3652[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3652 -> 3828[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3652 -> 3829[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3653[label="LT",fontsize=16,color="green",shape="box"];3654 -> 3190[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3654[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3654 -> 3830[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3654 -> 3831[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3655[label="LT",fontsize=16,color="green",shape="box"];3656[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3656 -> 3832[label="",style="solid", color="black", weight=3]; 30.13/12.45 3657[label="LT",fontsize=16,color="green",shape="box"];3658[label="compare xuu47000 xuu48000",fontsize=16,color="black",shape="triangle"];3658 -> 3833[label="",style="solid", color="black", weight=3]; 30.13/12.45 1970[label="primCmpInt (Pos (Succ xuu4700)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1970 -> 2106[label="",style="solid", color="black", weight=3]; 30.13/12.45 1971[label="primCmpInt (Pos (Succ xuu4700)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1971 -> 2107[label="",style="solid", color="black", weight=3]; 30.13/12.45 1972[label="primCmpInt (Pos Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];5011[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1972 -> 5011[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5011 -> 2108[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5012[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1972 -> 5012[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5012 -> 2109[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1973[label="primCmpInt (Pos Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];5013[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1973 -> 5013[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5013 -> 2110[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5014[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1973 -> 5014[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5014 -> 2111[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1974[label="primCmpInt (Neg (Succ xuu4700)) (Pos xuu480)",fontsize=16,color="black",shape="box"];1974 -> 2112[label="",style="solid", color="black", weight=3]; 30.13/12.45 1975[label="primCmpInt (Neg (Succ xuu4700)) (Neg xuu480)",fontsize=16,color="black",shape="box"];1975 -> 2113[label="",style="solid", color="black", weight=3]; 30.13/12.45 1976[label="primCmpInt (Neg Zero) (Pos xuu480)",fontsize=16,color="burlywood",shape="box"];5015[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1976 -> 5015[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5015 -> 2114[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5016[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1976 -> 5016[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5016 -> 2115[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 1977[label="primCmpInt (Neg Zero) (Neg xuu480)",fontsize=16,color="burlywood",shape="box"];5017[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];1977 -> 5017[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5017 -> 2116[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5018[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];1977 -> 5018[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5018 -> 2117[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3659[label="xuu48001",fontsize=16,color="green",shape="box"];3660[label="xuu47001",fontsize=16,color="green",shape="box"];3661 -> 3834[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3661[label="primCompAux0 xuu214 (compare xuu47000 xuu48000)",fontsize=16,color="magenta"];3661 -> 3835[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3661 -> 3836[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3688[label="xuu48000",fontsize=16,color="green",shape="box"];3689[label="xuu47000",fontsize=16,color="green",shape="box"];2504[label="primCmpNat xuu4700 xuu4800",fontsize=16,color="burlywood",shape="triangle"];5019[label="xuu4700/Succ xuu47000",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5019[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5019 -> 3023[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5020[label="xuu4700/Zero",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5020[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5020 -> 3024[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3690 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3690[label="xuu47000 * xuu48001",fontsize=16,color="magenta"];3690 -> 3837[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3690 -> 3838[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3691 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3691[label="xuu48000 * xuu47001",fontsize=16,color="magenta"];3691 -> 3839[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3691 -> 3840[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3692[label="xuu48000 * xuu47001",fontsize=16,color="burlywood",shape="triangle"];5021[label="xuu48000/Integer xuu480000",fontsize=10,color="white",style="solid",shape="box"];3692 -> 5021[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5021 -> 3841[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 3693 -> 3692[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3693[label="xuu47000 * xuu48001",fontsize=16,color="magenta"];3693 -> 3842[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3693 -> 3843[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3694[label="xuu48000",fontsize=16,color="green",shape="box"];3695[label="xuu47000",fontsize=16,color="green",shape="box"];3696[label="xuu48000",fontsize=16,color="green",shape="box"];3697[label="xuu47000",fontsize=16,color="green",shape="box"];3698[label="xuu48000",fontsize=16,color="green",shape="box"];3699[label="xuu47000",fontsize=16,color="green",shape="box"];3700[label="xuu48000",fontsize=16,color="green",shape="box"];3701[label="xuu47000",fontsize=16,color="green",shape="box"];3702[label="xuu48000",fontsize=16,color="green",shape="box"];3703[label="xuu47000",fontsize=16,color="green",shape="box"];3704[label="xuu48000",fontsize=16,color="green",shape="box"];3705[label="xuu47000",fontsize=16,color="green",shape="box"];3706[label="xuu48000",fontsize=16,color="green",shape="box"];3707[label="xuu47000",fontsize=16,color="green",shape="box"];3708[label="xuu48000",fontsize=16,color="green",shape="box"];3709[label="xuu47000",fontsize=16,color="green",shape="box"];3710[label="xuu48000",fontsize=16,color="green",shape="box"];3711[label="xuu47000",fontsize=16,color="green",shape="box"];3712[label="xuu48000",fontsize=16,color="green",shape="box"];3713[label="xuu47000",fontsize=16,color="green",shape="box"];3714[label="xuu48000",fontsize=16,color="green",shape="box"];3715[label="xuu47000",fontsize=16,color="green",shape="box"];3716[label="xuu48000",fontsize=16,color="green",shape="box"];3717[label="xuu47000",fontsize=16,color="green",shape="box"];3718[label="xuu48000",fontsize=16,color="green",shape="box"];3719[label="xuu47000",fontsize=16,color="green",shape="box"];3720[label="xuu48000",fontsize=16,color="green",shape="box"];3721[label="xuu47000",fontsize=16,color="green",shape="box"];3722[label="xuu48001",fontsize=16,color="green",shape="box"];3723[label="xuu47001",fontsize=16,color="green",shape="box"];3724[label="xuu48001",fontsize=16,color="green",shape="box"];3725[label="xuu47001",fontsize=16,color="green",shape="box"];3726[label="xuu48001",fontsize=16,color="green",shape="box"];3727[label="xuu47001",fontsize=16,color="green",shape="box"];3728[label="xuu48001",fontsize=16,color="green",shape="box"];3729[label="xuu47001",fontsize=16,color="green",shape="box"];3730[label="xuu48001",fontsize=16,color="green",shape="box"];3731[label="xuu47001",fontsize=16,color="green",shape="box"];3732[label="xuu48001",fontsize=16,color="green",shape="box"];3733[label="xuu47001",fontsize=16,color="green",shape="box"];3734[label="xuu48001",fontsize=16,color="green",shape="box"];3735[label="xuu47001",fontsize=16,color="green",shape="box"];3736[label="xuu48001",fontsize=16,color="green",shape="box"];3737[label="xuu47001",fontsize=16,color="green",shape="box"];3738[label="xuu48001",fontsize=16,color="green",shape="box"];3739[label="xuu47001",fontsize=16,color="green",shape="box"];3740[label="xuu48001",fontsize=16,color="green",shape="box"];3741[label="xuu47001",fontsize=16,color="green",shape="box"];3742[label="xuu48001",fontsize=16,color="green",shape="box"];3743[label="xuu47001",fontsize=16,color="green",shape="box"];3744[label="xuu48001",fontsize=16,color="green",shape="box"];3745[label="xuu47001",fontsize=16,color="green",shape="box"];3746[label="xuu48001",fontsize=16,color="green",shape="box"];3747[label="xuu47001",fontsize=16,color="green",shape="box"];3748[label="xuu48001",fontsize=16,color="green",shape="box"];3749[label="xuu47001",fontsize=16,color="green",shape="box"];2127[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2023[label="primPlusInt (Pos xuu5020) xuu132",fontsize=16,color="burlywood",shape="box"];5022[label="xuu132/Pos xuu1320",fontsize=10,color="white",style="solid",shape="box"];2023 -> 5022[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5022 -> 2138[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5023[label="xuu132/Neg xuu1320",fontsize=10,color="white",style="solid",shape="box"];2023 -> 5023[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5023 -> 2139[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2024[label="primPlusInt (Neg xuu5020) xuu132",fontsize=16,color="burlywood",shape="box"];5024[label="xuu132/Pos xuu1320",fontsize=10,color="white",style="solid",shape="box"];2024 -> 5024[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5024 -> 2140[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5025[label="xuu132/Neg xuu1320",fontsize=10,color="white",style="solid",shape="box"];2024 -> 5025[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5025 -> 2141[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2128[label="FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504",fontsize=16,color="green",shape="box"];2129 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2129[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Left xuu300) xuu31 xuu50 xuu34",fontsize=16,color="magenta"];2129 -> 4181[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2129 -> 4182[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2129 -> 4183[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2129 -> 4184[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2129 -> 4185[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2130[label="error []",fontsize=16,color="red",shape="box"];2131[label="FiniteMap.mkBalBranch6MkBalBranch12 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504)",fontsize=16,color="black",shape="box"];2131 -> 2242[label="",style="solid", color="black", weight=3]; 30.13/12.45 2132 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2132[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2132 -> 2243[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2132 -> 2244[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2133 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2133[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2133 -> 2245[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2134[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2134 -> 2246[label="",style="solid", color="black", weight=3]; 30.13/12.45 2135[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2135 -> 2247[label="",style="solid", color="black", weight=3]; 30.13/12.45 4378[label="FiniteMap.sizeFM xuu261",fontsize=16,color="burlywood",shape="triangle"];5026[label="xuu261/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4378 -> 5026[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5026 -> 4380[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5027[label="xuu261/FiniteMap.Branch xuu2610 xuu2611 xuu2612 xuu2613 xuu2614",fontsize=10,color="white",style="solid",shape="box"];4378 -> 5027[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5027 -> 4381[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 4379 -> 1998[label="",style="dashed", color="red", weight=0]; 30.13/12.45 4379[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261)",fontsize=16,color="magenta"];4379 -> 4382[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 4379 -> 4383[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2142[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2143[label="FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=16,color="green",shape="box"];2144 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2144[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Right xuu300) xuu31 xuu42 xuu34",fontsize=16,color="magenta"];2144 -> 4186[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2144 -> 4187[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2144 -> 4188[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2144 -> 4189[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2144 -> 4190[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2145[label="error []",fontsize=16,color="red",shape="box"];2146[label="FiniteMap.mkBalBranch6MkBalBranch12 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2146 -> 2254[label="",style="solid", color="black", weight=3]; 30.13/12.45 2147 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2147[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2147 -> 2255[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2147 -> 2256[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2148 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2148[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2148 -> 2257[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2149[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2149 -> 2258[label="",style="solid", color="black", weight=3]; 30.13/12.45 2150[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2150 -> 2259[label="",style="solid", color="black", weight=3]; 30.13/12.45 2032 -> 2153[label="",style="dashed", color="red", weight=0]; 30.13/12.45 2032[label="primPlusNat (primMulNat xuu4000100 (Succ xuu300000)) (Succ xuu300000)",fontsize=16,color="magenta"];2032 -> 2154[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 2033[label="Zero",fontsize=16,color="green",shape="box"];2034[label="Zero",fontsize=16,color="green",shape="box"];2035[label="Zero",fontsize=16,color="green",shape="box"];3750 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3750[label="compare (xuu47000 * Pos xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3750 -> 3844[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3750 -> 3845[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3751 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3751[label="compare (xuu47000 * Pos xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3751 -> 3846[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3751 -> 3847[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3752 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3752[label="compare (xuu47000 * Neg xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3752 -> 3848[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3752 -> 3849[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3753 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3753[label="compare (xuu47000 * Neg xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3753 -> 3850[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3753 -> 3851[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3754 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3754[label="compare (xuu47000 * Pos xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3754 -> 3852[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3754 -> 3853[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3755 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3755[label="compare (xuu47000 * Pos xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3755 -> 3854[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3755 -> 3855[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3756 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3756[label="compare (xuu47000 * Neg xuu480010) (Pos xuu470010 * xuu48000)",fontsize=16,color="magenta"];3756 -> 3856[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3756 -> 3857[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3757 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3757[label="compare (xuu47000 * Neg xuu480010) (Neg xuu470010 * xuu48000)",fontsize=16,color="magenta"];3757 -> 3858[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3757 -> 3859[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3758 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3758[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3758 -> 3860[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3758 -> 3861[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3759 -> 2212[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3759[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3759 -> 3862[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3759 -> 3863[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3760 -> 2219[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3760[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3760 -> 3864[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3760 -> 3865[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3761 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3761[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3761 -> 3866[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3761 -> 3867[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3762 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3762[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3762 -> 3868[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3762 -> 3869[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3763 -> 2210[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3763[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3763 -> 3870[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3763 -> 3871[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3764 -> 2216[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3764[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3764 -> 3872[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3764 -> 3873[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3765 -> 2215[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3765[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3765 -> 3874[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3765 -> 3875[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3766 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3766[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3766 -> 3876[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3766 -> 3877[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3767 -> 2208[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3767[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3767 -> 3878[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3767 -> 3879[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3768 -> 2207[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3768[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3768 -> 3880[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3768 -> 3881[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3769 -> 2214[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3769[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3769 -> 3882[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3769 -> 3883[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3770 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3770[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3770 -> 3884[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3770 -> 3885[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3771 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3771[label="xuu47001 == xuu48001",fontsize=16,color="magenta"];3771 -> 3886[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3771 -> 3887[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3772 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3772[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3772 -> 3888[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3772 -> 3889[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3773 -> 2968[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3773[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3773 -> 3890[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3773 -> 3891[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3774 -> 2969[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3774[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3774 -> 3892[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3774 -> 3893[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3775 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3775[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3775 -> 3894[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3775 -> 3895[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3776 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3776[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3776 -> 3896[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3776 -> 3897[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3777 -> 2972[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3777[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3777 -> 3898[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3777 -> 3899[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3778 -> 2973[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3778[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3778 -> 3900[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3778 -> 3901[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3779 -> 2974[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3779[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3779 -> 3902[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3779 -> 3903[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3780 -> 2975[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3780[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3780 -> 3904[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3780 -> 3905[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3781 -> 2976[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3781[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3781 -> 3906[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3781 -> 3907[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3782 -> 2977[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3782[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3782 -> 3908[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3782 -> 3909[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3783 -> 2978[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3783[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3783 -> 3910[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3783 -> 3911[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3784 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3784[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3784 -> 3912[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3784 -> 3913[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3785 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.45 3785[label="xuu47002 <= xuu48002",fontsize=16,color="magenta"];3785 -> 3914[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3785 -> 3915[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3786[label="xuu48001",fontsize=16,color="green",shape="box"];3787[label="xuu47001",fontsize=16,color="green",shape="box"];3788[label="xuu48001",fontsize=16,color="green",shape="box"];3789[label="xuu47001",fontsize=16,color="green",shape="box"];3790[label="xuu48001",fontsize=16,color="green",shape="box"];3791[label="xuu47001",fontsize=16,color="green",shape="box"];3792[label="xuu48001",fontsize=16,color="green",shape="box"];3793[label="xuu47001",fontsize=16,color="green",shape="box"];3794[label="xuu48001",fontsize=16,color="green",shape="box"];3795[label="xuu47001",fontsize=16,color="green",shape="box"];3796[label="xuu48001",fontsize=16,color="green",shape="box"];3797[label="xuu47001",fontsize=16,color="green",shape="box"];3798[label="xuu48001",fontsize=16,color="green",shape="box"];3799[label="xuu47001",fontsize=16,color="green",shape="box"];3800[label="xuu48001",fontsize=16,color="green",shape="box"];3801[label="xuu47001",fontsize=16,color="green",shape="box"];3802[label="xuu48001",fontsize=16,color="green",shape="box"];3803[label="xuu47001",fontsize=16,color="green",shape="box"];3804[label="xuu48001",fontsize=16,color="green",shape="box"];3805[label="xuu47001",fontsize=16,color="green",shape="box"];3806[label="xuu48001",fontsize=16,color="green",shape="box"];3807[label="xuu47001",fontsize=16,color="green",shape="box"];3808[label="xuu48001",fontsize=16,color="green",shape="box"];3809[label="xuu47001",fontsize=16,color="green",shape="box"];3810[label="xuu48001",fontsize=16,color="green",shape="box"];3811[label="xuu47001",fontsize=16,color="green",shape="box"];3812[label="xuu48001",fontsize=16,color="green",shape="box"];3813[label="xuu47001",fontsize=16,color="green",shape="box"];3814[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3814 -> 3916[label="",style="solid", color="black", weight=3]; 30.13/12.45 3815[label="xuu48000",fontsize=16,color="green",shape="box"];3816[label="xuu47000",fontsize=16,color="green",shape="box"];3817[label="xuu48000",fontsize=16,color="green",shape="box"];3818[label="xuu47000",fontsize=16,color="green",shape="box"];3819[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3819 -> 3917[label="",style="solid", color="black", weight=3]; 30.13/12.45 3820[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3820 -> 3918[label="",style="solid", color="black", weight=3]; 30.13/12.45 1695[label="LT",fontsize=16,color="green",shape="box"];1696 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.45 1696[label="compare xuu470 xuu480",fontsize=16,color="magenta"];1696 -> 1899[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 1696 -> 1900[label="",style="dashed", color="magenta", weight=3]; 30.13/12.45 3821[label="xuu48000",fontsize=16,color="green",shape="box"];3822[label="xuu47000",fontsize=16,color="green",shape="box"];3823[label="xuu48000",fontsize=16,color="green",shape="box"];3824[label="xuu47000",fontsize=16,color="green",shape="box"];3825[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3825 -> 3919[label="",style="solid", color="black", weight=3]; 30.13/12.45 3826[label="xuu48000",fontsize=16,color="green",shape="box"];3827[label="xuu47000",fontsize=16,color="green",shape="box"];3828[label="xuu48000",fontsize=16,color="green",shape="box"];3829[label="xuu47000",fontsize=16,color="green",shape="box"];3830[label="xuu48000",fontsize=16,color="green",shape="box"];3831[label="xuu47000",fontsize=16,color="green",shape="box"];3832[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3832 -> 3920[label="",style="solid", color="black", weight=3]; 30.13/12.45 3833[label="compare3 xuu47000 xuu48000",fontsize=16,color="black",shape="box"];3833 -> 3921[label="",style="solid", color="black", weight=3]; 30.13/12.45 2106[label="primCmpNat (Succ xuu4700) xuu480",fontsize=16,color="burlywood",shape="triangle"];5028[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];2106 -> 5028[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5028 -> 2261[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5029[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];2106 -> 5029[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5029 -> 2262[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2107[label="GT",fontsize=16,color="green",shape="box"];2108[label="primCmpInt (Pos Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];2108 -> 2263[label="",style="solid", color="black", weight=3]; 30.13/12.45 2109[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2109 -> 2264[label="",style="solid", color="black", weight=3]; 30.13/12.45 2110[label="primCmpInt (Pos Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];2110 -> 2265[label="",style="solid", color="black", weight=3]; 30.13/12.45 2111[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2111 -> 2266[label="",style="solid", color="black", weight=3]; 30.13/12.45 2112[label="LT",fontsize=16,color="green",shape="box"];2113[label="primCmpNat xuu480 (Succ xuu4700)",fontsize=16,color="burlywood",shape="triangle"];5030[label="xuu480/Succ xuu4800",fontsize=10,color="white",style="solid",shape="box"];2113 -> 5030[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5030 -> 2267[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 5031[label="xuu480/Zero",fontsize=10,color="white",style="solid",shape="box"];2113 -> 5031[label="",style="solid", color="burlywood", weight=9]; 30.13/12.45 5031 -> 2268[label="",style="solid", color="burlywood", weight=3]; 30.13/12.45 2114[label="primCmpInt (Neg Zero) (Pos (Succ xuu4800))",fontsize=16,color="black",shape="box"];2114 -> 2269[label="",style="solid", color="black", weight=3]; 30.13/12.45 2115[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2115 -> 2270[label="",style="solid", color="black", weight=3]; 30.13/12.45 2116[label="primCmpInt (Neg Zero) (Neg (Succ xuu4800))",fontsize=16,color="black",shape="box"];2116 -> 2271[label="",style="solid", color="black", weight=3]; 30.13/12.45 2117[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2117 -> 2272[label="",style="solid", color="black", weight=3]; 30.13/12.45 3835[label="compare xuu47000 xuu48000",fontsize=16,color="blue",shape="box"];5032[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5032[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5032 -> 3922[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5033[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5033[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5033 -> 3923[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5034[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5034[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5034 -> 3924[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5035[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5035[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5035 -> 3925[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5036[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5036[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5036 -> 3926[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5037[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5037[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5037 -> 3927[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5038[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5038[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5038 -> 3928[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5039[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5039[label="",style="solid", color="blue", weight=9]; 30.13/12.45 5039 -> 3929[label="",style="solid", color="blue", weight=3]; 30.13/12.45 5040[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5040[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5040 -> 3930[label="",style="solid", color="blue", weight=3]; 30.13/12.46 5041[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5041[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5041 -> 3931[label="",style="solid", color="blue", weight=3]; 30.13/12.46 5042[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5042[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5042 -> 3932[label="",style="solid", color="blue", weight=3]; 30.13/12.46 5043[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5043[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5043 -> 3933[label="",style="solid", color="blue", weight=3]; 30.13/12.46 5044[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5044[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5044 -> 3934[label="",style="solid", color="blue", weight=3]; 30.13/12.46 5045[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3835 -> 5045[label="",style="solid", color="blue", weight=9]; 30.13/12.46 5045 -> 3935[label="",style="solid", color="blue", weight=3]; 30.13/12.46 3836[label="xuu214",fontsize=16,color="green",shape="box"];3834[label="primCompAux0 xuu228 xuu229",fontsize=16,color="burlywood",shape="triangle"];5046[label="xuu229/LT",fontsize=10,color="white",style="solid",shape="box"];3834 -> 5046[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5046 -> 3936[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5047[label="xuu229/EQ",fontsize=10,color="white",style="solid",shape="box"];3834 -> 5047[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5047 -> 3937[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5048[label="xuu229/GT",fontsize=10,color="white",style="solid",shape="box"];3834 -> 5048[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5048 -> 3938[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3023[label="primCmpNat (Succ xuu47000) xuu4800",fontsize=16,color="burlywood",shape="box"];5049[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];3023 -> 5049[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5049 -> 3163[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5050[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];3023 -> 5050[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5050 -> 3164[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3024[label="primCmpNat Zero xuu4800",fontsize=16,color="burlywood",shape="box"];5051[label="xuu4800/Succ xuu48000",fontsize=10,color="white",style="solid",shape="box"];3024 -> 5051[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5051 -> 3165[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5052[label="xuu4800/Zero",fontsize=10,color="white",style="solid",shape="box"];3024 -> 5052[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5052 -> 3166[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3837[label="xuu47000",fontsize=16,color="green",shape="box"];3838[label="xuu48001",fontsize=16,color="green",shape="box"];3839[label="xuu48000",fontsize=16,color="green",shape="box"];3840[label="xuu47001",fontsize=16,color="green",shape="box"];3841[label="Integer xuu480000 * xuu47001",fontsize=16,color="burlywood",shape="box"];5053[label="xuu47001/Integer xuu470010",fontsize=10,color="white",style="solid",shape="box"];3841 -> 5053[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5053 -> 3955[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3842[label="xuu48001",fontsize=16,color="green",shape="box"];3843[label="xuu47000",fontsize=16,color="green",shape="box"];2138[label="primPlusInt (Pos xuu5020) (Pos xuu1320)",fontsize=16,color="black",shape="box"];2138 -> 2249[label="",style="solid", color="black", weight=3]; 30.13/12.46 2139[label="primPlusInt (Pos xuu5020) (Neg xuu1320)",fontsize=16,color="black",shape="box"];2139 -> 2250[label="",style="solid", color="black", weight=3]; 30.13/12.46 2140[label="primPlusInt (Neg xuu5020) (Pos xuu1320)",fontsize=16,color="black",shape="box"];2140 -> 2251[label="",style="solid", color="black", weight=3]; 30.13/12.46 2141[label="primPlusInt (Neg xuu5020) (Neg xuu1320)",fontsize=16,color="black",shape="box"];2141 -> 2252[label="",style="solid", color="black", weight=3]; 30.13/12.46 4181[label="xuu50",fontsize=16,color="green",shape="box"];4182[label="Left xuu300",fontsize=16,color="green",shape="box"];4183[label="Succ Zero",fontsize=16,color="green",shape="box"];4184[label="xuu31",fontsize=16,color="green",shape="box"];4185[label="xuu34",fontsize=16,color="green",shape="box"];2242 -> 2352[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2242[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 (FiniteMap.sizeFM xuu504 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503)",fontsize=16,color="magenta"];2242 -> 2353[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2243[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2244 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2244[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2244 -> 2438[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2245[label="xuu343",fontsize=16,color="green",shape="box"];2246[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2246 -> 2439[label="",style="solid", color="black", weight=3]; 30.13/12.46 2247[label="FiniteMap.mkBalBranch6Single_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2247 -> 2440[label="",style="solid", color="black", weight=3]; 30.13/12.46 4380[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4380 -> 4384[label="",style="solid", color="black", weight=3]; 30.13/12.46 4381[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2610 xuu2611 xuu2612 xuu2613 xuu2614)",fontsize=16,color="black",shape="box"];4381 -> 4385[label="",style="solid", color="black", weight=3]; 30.13/12.46 4382[label="FiniteMap.mkBranchLeft_size xuu260 xuu258 xuu261",fontsize=16,color="black",shape="box"];4382 -> 4386[label="",style="solid", color="black", weight=3]; 30.13/12.46 4383[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4186[label="xuu42",fontsize=16,color="green",shape="box"];4187[label="Right xuu300",fontsize=16,color="green",shape="box"];4188[label="Succ Zero",fontsize=16,color="green",shape="box"];4189[label="xuu31",fontsize=16,color="green",shape="box"];4190[label="xuu34",fontsize=16,color="green",shape="box"];2254 -> 2448[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2254[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 (FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423)",fontsize=16,color="magenta"];2254 -> 2449[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2255[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2256 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2256[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2256 -> 2482[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2257[label="xuu343",fontsize=16,color="green",shape="box"];2258[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2258 -> 2483[label="",style="solid", color="black", weight=3]; 30.13/12.46 2259[label="FiniteMap.mkBalBranch6Single_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2259 -> 2484[label="",style="solid", color="black", weight=3]; 30.13/12.46 2154 -> 1548[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2154[label="primMulNat xuu4000100 (Succ xuu300000)",fontsize=16,color="magenta"];2154 -> 2273[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2154 -> 2274[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2153[label="primPlusNat xuu141 (Succ xuu300000)",fontsize=16,color="burlywood",shape="triangle"];5054[label="xuu141/Succ xuu1410",fontsize=10,color="white",style="solid",shape="box"];2153 -> 5054[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5054 -> 2275[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5055[label="xuu141/Zero",fontsize=10,color="white",style="solid",shape="box"];2153 -> 5055[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5055 -> 2276[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3844 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3844[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3844 -> 3956[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3844 -> 3957[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3845 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3845[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3845 -> 3958[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3845 -> 3959[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3846 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3846[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3846 -> 3960[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3846 -> 3961[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3847 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3847[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3847 -> 3962[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3847 -> 3963[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3848 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3848[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3848 -> 3964[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3848 -> 3965[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3849 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3849[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3849 -> 3966[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3849 -> 3967[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3850 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3850[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3850 -> 3968[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3850 -> 3969[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3851 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3851[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3851 -> 3970[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3851 -> 3971[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3852 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3852[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3852 -> 3972[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3852 -> 3973[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3853 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3853[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3853 -> 3974[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3853 -> 3975[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3854 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3854[label="xuu47000 * Pos xuu480010",fontsize=16,color="magenta"];3854 -> 3976[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3854 -> 3977[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3855 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3855[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3855 -> 3978[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3855 -> 3979[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3856 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3856[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3856 -> 3980[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3856 -> 3981[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3857 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3857[label="Pos xuu470010 * xuu48000",fontsize=16,color="magenta"];3857 -> 3982[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3857 -> 3983[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3858 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3858[label="xuu47000 * Neg xuu480010",fontsize=16,color="magenta"];3858 -> 3984[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3858 -> 3985[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3859 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3859[label="Neg xuu470010 * xuu48000",fontsize=16,color="magenta"];3859 -> 3986[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3859 -> 3987[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3860[label="xuu48001",fontsize=16,color="green",shape="box"];3861[label="xuu47001",fontsize=16,color="green",shape="box"];3862[label="xuu48001",fontsize=16,color="green",shape="box"];3863[label="xuu47001",fontsize=16,color="green",shape="box"];3864[label="xuu48001",fontsize=16,color="green",shape="box"];3865[label="xuu47001",fontsize=16,color="green",shape="box"];3866[label="xuu48001",fontsize=16,color="green",shape="box"];3867[label="xuu47001",fontsize=16,color="green",shape="box"];3868[label="xuu48001",fontsize=16,color="green",shape="box"];3869[label="xuu47001",fontsize=16,color="green",shape="box"];3870[label="xuu48001",fontsize=16,color="green",shape="box"];3871[label="xuu47001",fontsize=16,color="green",shape="box"];3872[label="xuu48001",fontsize=16,color="green",shape="box"];3873[label="xuu47001",fontsize=16,color="green",shape="box"];3874[label="xuu48001",fontsize=16,color="green",shape="box"];3875[label="xuu47001",fontsize=16,color="green",shape="box"];3876[label="xuu48001",fontsize=16,color="green",shape="box"];3877[label="xuu47001",fontsize=16,color="green",shape="box"];3878[label="xuu48001",fontsize=16,color="green",shape="box"];3879[label="xuu47001",fontsize=16,color="green",shape="box"];3880[label="xuu48001",fontsize=16,color="green",shape="box"];3881[label="xuu47001",fontsize=16,color="green",shape="box"];3882[label="xuu48001",fontsize=16,color="green",shape="box"];3883[label="xuu47001",fontsize=16,color="green",shape="box"];3884[label="xuu48001",fontsize=16,color="green",shape="box"];3885[label="xuu47001",fontsize=16,color="green",shape="box"];3886[label="xuu48001",fontsize=16,color="green",shape="box"];3887[label="xuu47001",fontsize=16,color="green",shape="box"];3888[label="xuu48002",fontsize=16,color="green",shape="box"];3889[label="xuu47002",fontsize=16,color="green",shape="box"];3890[label="xuu48002",fontsize=16,color="green",shape="box"];3891[label="xuu47002",fontsize=16,color="green",shape="box"];3892[label="xuu48002",fontsize=16,color="green",shape="box"];3893[label="xuu47002",fontsize=16,color="green",shape="box"];3894[label="xuu48002",fontsize=16,color="green",shape="box"];3895[label="xuu47002",fontsize=16,color="green",shape="box"];3896[label="xuu48002",fontsize=16,color="green",shape="box"];3897[label="xuu47002",fontsize=16,color="green",shape="box"];3898[label="xuu48002",fontsize=16,color="green",shape="box"];3899[label="xuu47002",fontsize=16,color="green",shape="box"];3900[label="xuu48002",fontsize=16,color="green",shape="box"];3901[label="xuu47002",fontsize=16,color="green",shape="box"];3902[label="xuu48002",fontsize=16,color="green",shape="box"];3903[label="xuu47002",fontsize=16,color="green",shape="box"];3904[label="xuu48002",fontsize=16,color="green",shape="box"];3905[label="xuu47002",fontsize=16,color="green",shape="box"];3906[label="xuu48002",fontsize=16,color="green",shape="box"];3907[label="xuu47002",fontsize=16,color="green",shape="box"];3908[label="xuu48002",fontsize=16,color="green",shape="box"];3909[label="xuu47002",fontsize=16,color="green",shape="box"];3910[label="xuu48002",fontsize=16,color="green",shape="box"];3911[label="xuu47002",fontsize=16,color="green",shape="box"];3912[label="xuu48002",fontsize=16,color="green",shape="box"];3913[label="xuu47002",fontsize=16,color="green",shape="box"];3914[label="xuu48002",fontsize=16,color="green",shape="box"];3915[label="xuu47002",fontsize=16,color="green",shape="box"];3916 -> 3988[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3916[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3916 -> 3989[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3917 -> 3992[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3917[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3917 -> 3993[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3918 -> 3996[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3918[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3918 -> 3997[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 1899[label="xuu470",fontsize=16,color="green",shape="box"];1900[label="xuu480",fontsize=16,color="green",shape="box"];3919 -> 2169[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3919[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3919 -> 4001[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3919 -> 4002[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3919 -> 4003[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3920 -> 4004[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3920[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3920 -> 4005[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3921 -> 4007[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3921[label="compare2 xuu47000 xuu48000 (xuu47000 == xuu48000)",fontsize=16,color="magenta"];3921 -> 4008[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2261[label="primCmpNat (Succ xuu4700) (Succ xuu4800)",fontsize=16,color="black",shape="box"];2261 -> 2504[label="",style="solid", color="black", weight=3]; 30.13/12.46 2262[label="primCmpNat (Succ xuu4700) Zero",fontsize=16,color="black",shape="box"];2262 -> 2505[label="",style="solid", color="black", weight=3]; 30.13/12.46 2263 -> 2113[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2263[label="primCmpNat Zero (Succ xuu4800)",fontsize=16,color="magenta"];2263 -> 2506[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2263 -> 2507[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2264[label="EQ",fontsize=16,color="green",shape="box"];2265[label="GT",fontsize=16,color="green",shape="box"];2266[label="EQ",fontsize=16,color="green",shape="box"];2267[label="primCmpNat (Succ xuu4800) (Succ xuu4700)",fontsize=16,color="black",shape="box"];2267 -> 2508[label="",style="solid", color="black", weight=3]; 30.13/12.46 2268[label="primCmpNat Zero (Succ xuu4700)",fontsize=16,color="black",shape="box"];2268 -> 2509[label="",style="solid", color="black", weight=3]; 30.13/12.46 2269[label="LT",fontsize=16,color="green",shape="box"];2270[label="EQ",fontsize=16,color="green",shape="box"];2271 -> 2106[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2271[label="primCmpNat (Succ xuu4800) Zero",fontsize=16,color="magenta"];2271 -> 2510[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2271 -> 2511[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2272[label="EQ",fontsize=16,color="green",shape="box"];3922 -> 3634[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3922[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3922 -> 4009[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3922 -> 4010[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3923 -> 3183[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3923[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3923 -> 4011[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3923 -> 4012[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3924 -> 3184[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3924[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3924 -> 4013[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3924 -> 4014[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3925 -> 3640[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3925[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3925 -> 4015[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3925 -> 4016[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3926 -> 3642[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3926[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3926 -> 4017[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3926 -> 4018[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3927 -> 1329[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3927[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3927 -> 4019[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3927 -> 4020[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3928 -> 3186[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3928[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3928 -> 4021[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3928 -> 4022[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3929 -> 3187[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3929[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3929 -> 4023[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3929 -> 4024[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3930 -> 3648[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3930[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3930 -> 4025[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3930 -> 4026[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3931 -> 3188[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3931[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3931 -> 4027[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3931 -> 4028[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3932 -> 3189[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3932[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3932 -> 4029[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3932 -> 4030[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3933 -> 3190[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3933[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3933 -> 4031[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3933 -> 4032[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3934 -> 3656[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3934[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3934 -> 4033[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3934 -> 4034[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3935 -> 3658[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3935[label="compare xuu47000 xuu48000",fontsize=16,color="magenta"];3935 -> 4035[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3935 -> 4036[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3936[label="primCompAux0 xuu228 LT",fontsize=16,color="black",shape="box"];3936 -> 4037[label="",style="solid", color="black", weight=3]; 30.13/12.46 3937[label="primCompAux0 xuu228 EQ",fontsize=16,color="black",shape="box"];3937 -> 4038[label="",style="solid", color="black", weight=3]; 30.13/12.46 3938[label="primCompAux0 xuu228 GT",fontsize=16,color="black",shape="box"];3938 -> 4039[label="",style="solid", color="black", weight=3]; 30.13/12.46 3163[label="primCmpNat (Succ xuu47000) (Succ xuu48000)",fontsize=16,color="black",shape="box"];3163 -> 3467[label="",style="solid", color="black", weight=3]; 30.13/12.46 3164[label="primCmpNat (Succ xuu47000) Zero",fontsize=16,color="black",shape="box"];3164 -> 3468[label="",style="solid", color="black", weight=3]; 30.13/12.46 3165[label="primCmpNat Zero (Succ xuu48000)",fontsize=16,color="black",shape="box"];3165 -> 3469[label="",style="solid", color="black", weight=3]; 30.13/12.46 3166[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3166 -> 3470[label="",style="solid", color="black", weight=3]; 30.13/12.46 3955[label="Integer xuu480000 * Integer xuu470010",fontsize=16,color="black",shape="box"];3955 -> 4040[label="",style="solid", color="black", weight=3]; 30.13/12.46 2249[label="Pos (primPlusNat xuu5020 xuu1320)",fontsize=16,color="green",shape="box"];2249 -> 2442[label="",style="dashed", color="green", weight=3]; 30.13/12.46 2250[label="primMinusNat xuu5020 xuu1320",fontsize=16,color="burlywood",shape="triangle"];5056[label="xuu5020/Succ xuu50200",fontsize=10,color="white",style="solid",shape="box"];2250 -> 5056[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5056 -> 2443[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5057[label="xuu5020/Zero",fontsize=10,color="white",style="solid",shape="box"];2250 -> 5057[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5057 -> 2444[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2251 -> 2250[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2251[label="primMinusNat xuu1320 xuu5020",fontsize=16,color="magenta"];2251 -> 2445[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2251 -> 2446[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2252[label="Neg (primPlusNat xuu5020 xuu1320)",fontsize=16,color="green",shape="box"];2252 -> 2447[label="",style="dashed", color="green", weight=3]; 30.13/12.46 2353 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2353[label="FiniteMap.sizeFM xuu504 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];2353 -> 2486[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2353 -> 2487[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2352[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 xuu146",fontsize=16,color="burlywood",shape="triangle"];5058[label="xuu146/False",fontsize=10,color="white",style="solid",shape="box"];2352 -> 5058[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5058 -> 2488[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5059[label="xuu146/True",fontsize=10,color="white",style="solid",shape="box"];2352 -> 5059[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5059 -> 2489[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2438[label="xuu344",fontsize=16,color="green",shape="box"];2439[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2439 -> 2490[label="",style="solid", color="black", weight=3]; 30.13/12.46 2440 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2440[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu300) xuu31 xuu50 xuu343) xuu344",fontsize=16,color="magenta"];2440 -> 4191[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2440 -> 4192[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2440 -> 4193[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2440 -> 4194[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2440 -> 4195[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4384[label="Pos Zero",fontsize=16,color="green",shape="box"];4385[label="xuu2612",fontsize=16,color="green",shape="box"];4386 -> 4378[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4386[label="FiniteMap.sizeFM xuu260",fontsize=16,color="magenta"];4386 -> 4387[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2449 -> 1489[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2449[label="FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2449 -> 2500[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2449 -> 2501[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2448[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 xuu150",fontsize=16,color="burlywood",shape="triangle"];5060[label="xuu150/False",fontsize=10,color="white",style="solid",shape="box"];2448 -> 5060[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5060 -> 2502[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5061[label="xuu150/True",fontsize=10,color="white",style="solid",shape="box"];2448 -> 5061[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5061 -> 2503[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2482[label="xuu344",fontsize=16,color="green",shape="box"];2483[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2483 -> 3000[label="",style="solid", color="black", weight=3]; 30.13/12.46 2484 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2484[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu300) xuu31 xuu42 xuu343) xuu344",fontsize=16,color="magenta"];2484 -> 4196[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2484 -> 4197[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2484 -> 4198[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2484 -> 4199[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2484 -> 4200[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2273[label="xuu4000100",fontsize=16,color="green",shape="box"];2274[label="Succ xuu300000",fontsize=16,color="green",shape="box"];2275[label="primPlusNat (Succ xuu1410) (Succ xuu300000)",fontsize=16,color="black",shape="box"];2275 -> 2512[label="",style="solid", color="black", weight=3]; 30.13/12.46 2276[label="primPlusNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];2276 -> 2513[label="",style="solid", color="black", weight=3]; 30.13/12.46 3956[label="xuu47000",fontsize=16,color="green",shape="box"];3957[label="Pos xuu480010",fontsize=16,color="green",shape="box"];3958[label="Pos xuu470010",fontsize=16,color="green",shape="box"];3959[label="xuu48000",fontsize=16,color="green",shape="box"];3960[label="xuu47000",fontsize=16,color="green",shape="box"];3961[label="Pos xuu480010",fontsize=16,color="green",shape="box"];3962[label="Neg xuu470010",fontsize=16,color="green",shape="box"];3963[label="xuu48000",fontsize=16,color="green",shape="box"];3964[label="xuu47000",fontsize=16,color="green",shape="box"];3965[label="Neg xuu480010",fontsize=16,color="green",shape="box"];3966[label="Pos xuu470010",fontsize=16,color="green",shape="box"];3967[label="xuu48000",fontsize=16,color="green",shape="box"];3968[label="xuu47000",fontsize=16,color="green",shape="box"];3969[label="Neg xuu480010",fontsize=16,color="green",shape="box"];3970[label="Neg xuu470010",fontsize=16,color="green",shape="box"];3971[label="xuu48000",fontsize=16,color="green",shape="box"];3972[label="xuu47000",fontsize=16,color="green",shape="box"];3973[label="Pos xuu480010",fontsize=16,color="green",shape="box"];3974[label="Pos xuu470010",fontsize=16,color="green",shape="box"];3975[label="xuu48000",fontsize=16,color="green",shape="box"];3976[label="xuu47000",fontsize=16,color="green",shape="box"];3977[label="Pos xuu480010",fontsize=16,color="green",shape="box"];3978[label="Neg xuu470010",fontsize=16,color="green",shape="box"];3979[label="xuu48000",fontsize=16,color="green",shape="box"];3980[label="xuu47000",fontsize=16,color="green",shape="box"];3981[label="Neg xuu480010",fontsize=16,color="green",shape="box"];3982[label="Pos xuu470010",fontsize=16,color="green",shape="box"];3983[label="xuu48000",fontsize=16,color="green",shape="box"];3984[label="xuu47000",fontsize=16,color="green",shape="box"];3985[label="Neg xuu480010",fontsize=16,color="green",shape="box"];3986[label="Neg xuu470010",fontsize=16,color="green",shape="box"];3987[label="xuu48000",fontsize=16,color="green",shape="box"];3989 -> 2209[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3989[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3989 -> 4042[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3989 -> 4043[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3988[label="compare2 xuu47000 xuu48000 xuu232",fontsize=16,color="burlywood",shape="triangle"];5062[label="xuu232/False",fontsize=10,color="white",style="solid",shape="box"];3988 -> 5062[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5062 -> 4044[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5063[label="xuu232/True",fontsize=10,color="white",style="solid",shape="box"];3988 -> 5063[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5063 -> 4045[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3993 -> 2218[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3993[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3993 -> 4046[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3993 -> 4047[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3992[label="compare2 xuu47000 xuu48000 xuu233",fontsize=16,color="burlywood",shape="triangle"];5064[label="xuu233/False",fontsize=10,color="white",style="solid",shape="box"];3992 -> 5064[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5064 -> 4048[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5065[label="xuu233/True",fontsize=10,color="white",style="solid",shape="box"];3992 -> 5065[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5065 -> 4049[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3997 -> 2213[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3997[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];3997 -> 4050[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3997 -> 4051[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3996[label="compare2 xuu47000 xuu48000 xuu234",fontsize=16,color="burlywood",shape="triangle"];5066[label="xuu234/False",fontsize=10,color="white",style="solid",shape="box"];3996 -> 5066[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5066 -> 4052[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5067[label="xuu234/True",fontsize=10,color="white",style="solid",shape="box"];3996 -> 5067[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5067 -> 4053[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4001[label="xuu48000",fontsize=16,color="green",shape="box"];4002[label="xuu47000",fontsize=16,color="green",shape="box"];4003 -> 2211[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4003[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];4003 -> 4054[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4003 -> 4055[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4005 -> 68[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4005[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];4005 -> 4056[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4005 -> 4057[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4004[label="compare2 xuu47000 xuu48000 xuu235",fontsize=16,color="burlywood",shape="triangle"];5068[label="xuu235/False",fontsize=10,color="white",style="solid",shape="box"];4004 -> 5068[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5068 -> 4058[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5069[label="xuu235/True",fontsize=10,color="white",style="solid",shape="box"];4004 -> 5069[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5069 -> 4059[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4008 -> 2220[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4008[label="xuu47000 == xuu48000",fontsize=16,color="magenta"];4008 -> 4060[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4008 -> 4061[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4007[label="compare2 xuu47000 xuu48000 xuu236",fontsize=16,color="burlywood",shape="triangle"];5070[label="xuu236/False",fontsize=10,color="white",style="solid",shape="box"];4007 -> 5070[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5070 -> 4062[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5071[label="xuu236/True",fontsize=10,color="white",style="solid",shape="box"];4007 -> 5071[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5071 -> 4063[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2505[label="GT",fontsize=16,color="green",shape="box"];2506[label="Zero",fontsize=16,color="green",shape="box"];2507[label="xuu4800",fontsize=16,color="green",shape="box"];2508 -> 2504[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2508[label="primCmpNat xuu4800 xuu4700",fontsize=16,color="magenta"];2508 -> 3025[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2508 -> 3026[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2509[label="LT",fontsize=16,color="green",shape="box"];2510[label="Zero",fontsize=16,color="green",shape="box"];2511[label="xuu4800",fontsize=16,color="green",shape="box"];4009[label="xuu48000",fontsize=16,color="green",shape="box"];4010[label="xuu47000",fontsize=16,color="green",shape="box"];4011[label="xuu48000",fontsize=16,color="green",shape="box"];4012[label="xuu47000",fontsize=16,color="green",shape="box"];4013[label="xuu48000",fontsize=16,color="green",shape="box"];4014[label="xuu47000",fontsize=16,color="green",shape="box"];4015[label="xuu48000",fontsize=16,color="green",shape="box"];4016[label="xuu47000",fontsize=16,color="green",shape="box"];4017[label="xuu48000",fontsize=16,color="green",shape="box"];4018[label="xuu47000",fontsize=16,color="green",shape="box"];4019[label="xuu47000",fontsize=16,color="green",shape="box"];4020[label="xuu48000",fontsize=16,color="green",shape="box"];4021[label="xuu48000",fontsize=16,color="green",shape="box"];4022[label="xuu47000",fontsize=16,color="green",shape="box"];4023[label="xuu48000",fontsize=16,color="green",shape="box"];4024[label="xuu47000",fontsize=16,color="green",shape="box"];4025[label="xuu48000",fontsize=16,color="green",shape="box"];4026[label="xuu47000",fontsize=16,color="green",shape="box"];4027[label="xuu48000",fontsize=16,color="green",shape="box"];4028[label="xuu47000",fontsize=16,color="green",shape="box"];4029[label="xuu48000",fontsize=16,color="green",shape="box"];4030[label="xuu47000",fontsize=16,color="green",shape="box"];4031[label="xuu48000",fontsize=16,color="green",shape="box"];4032[label="xuu47000",fontsize=16,color="green",shape="box"];4033[label="xuu48000",fontsize=16,color="green",shape="box"];4034[label="xuu47000",fontsize=16,color="green",shape="box"];4035[label="xuu48000",fontsize=16,color="green",shape="box"];4036[label="xuu47000",fontsize=16,color="green",shape="box"];4037[label="LT",fontsize=16,color="green",shape="box"];4038[label="xuu228",fontsize=16,color="green",shape="box"];4039[label="GT",fontsize=16,color="green",shape="box"];3467 -> 2504[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3467[label="primCmpNat xuu47000 xuu48000",fontsize=16,color="magenta"];3467 -> 3665[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3467 -> 3666[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3468[label="GT",fontsize=16,color="green",shape="box"];3469[label="LT",fontsize=16,color="green",shape="box"];3470[label="EQ",fontsize=16,color="green",shape="box"];4040[label="Integer (primMulInt xuu480000 xuu470010)",fontsize=16,color="green",shape="box"];4040 -> 4086[label="",style="dashed", color="green", weight=3]; 30.13/12.46 2442[label="primPlusNat xuu5020 xuu1320",fontsize=16,color="burlywood",shape="triangle"];5072[label="xuu5020/Succ xuu50200",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5072[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5072 -> 2492[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5073[label="xuu5020/Zero",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5073[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5073 -> 2493[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2443[label="primMinusNat (Succ xuu50200) xuu1320",fontsize=16,color="burlywood",shape="box"];5074[label="xuu1320/Succ xuu13200",fontsize=10,color="white",style="solid",shape="box"];2443 -> 5074[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5074 -> 2494[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5075[label="xuu1320/Zero",fontsize=10,color="white",style="solid",shape="box"];2443 -> 5075[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5075 -> 2495[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2444[label="primMinusNat Zero xuu1320",fontsize=16,color="burlywood",shape="box"];5076[label="xuu1320/Succ xuu13200",fontsize=10,color="white",style="solid",shape="box"];2444 -> 5076[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5076 -> 2496[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5077[label="xuu1320/Zero",fontsize=10,color="white",style="solid",shape="box"];2444 -> 5077[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5077 -> 2497[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2445[label="xuu1320",fontsize=16,color="green",shape="box"];2446[label="xuu5020",fontsize=16,color="green",shape="box"];2447 -> 2442[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2447[label="primPlusNat xuu5020 xuu1320",fontsize=16,color="magenta"];2447 -> 2498[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2447 -> 2499[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2486 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2486[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];2486 -> 3002[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2486 -> 3003[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2487 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2487[label="FiniteMap.sizeFM xuu504",fontsize=16,color="magenta"];2487 -> 3004[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2488[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 False",fontsize=16,color="black",shape="box"];2488 -> 3005[label="",style="solid", color="black", weight=3]; 30.13/12.46 2489[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 True",fontsize=16,color="black",shape="box"];2489 -> 3006[label="",style="solid", color="black", weight=3]; 30.13/12.46 2490[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];5078[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5078[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5078 -> 3007[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5079[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5079[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5079 -> 3008[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4191 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4191[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu300) xuu31 xuu50 xuu343",fontsize=16,color="magenta"];4191 -> 4302[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4191 -> 4303[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4191 -> 4304[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4191 -> 4305[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4191 -> 4306[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4192[label="xuu340",fontsize=16,color="green",shape="box"];4193[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4194[label="xuu341",fontsize=16,color="green",shape="box"];4195[label="xuu344",fontsize=16,color="green",shape="box"];4387[label="xuu260",fontsize=16,color="green",shape="box"];2500 -> 742[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2500[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2500 -> 3018[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2500 -> 3019[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2501 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 2501[label="FiniteMap.sizeFM xuu424",fontsize=16,color="magenta"];2501 -> 3020[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2502[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 False",fontsize=16,color="black",shape="box"];2502 -> 3021[label="",style="solid", color="black", weight=3]; 30.13/12.46 2503[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];2503 -> 3022[label="",style="solid", color="black", weight=3]; 30.13/12.46 3000[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];5080[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5080[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5080 -> 3144[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5081[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5081[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5081 -> 3145[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4196 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4196[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu300) xuu31 xuu42 xuu343",fontsize=16,color="magenta"];4196 -> 4307[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4196 -> 4308[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4196 -> 4309[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4196 -> 4310[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4196 -> 4311[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4197[label="xuu340",fontsize=16,color="green",shape="box"];4198[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4199[label="xuu341",fontsize=16,color="green",shape="box"];4200[label="xuu344",fontsize=16,color="green",shape="box"];2512[label="Succ (Succ (primPlusNat xuu1410 xuu300000))",fontsize=16,color="green",shape="box"];2512 -> 3027[label="",style="dashed", color="green", weight=3]; 30.13/12.46 2513[label="Succ xuu300000",fontsize=16,color="green",shape="box"];4042[label="xuu48000",fontsize=16,color="green",shape="box"];4043[label="xuu47000",fontsize=16,color="green",shape="box"];4044[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4044 -> 4087[label="",style="solid", color="black", weight=3]; 30.13/12.46 4045[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4045 -> 4088[label="",style="solid", color="black", weight=3]; 30.13/12.46 4046[label="xuu48000",fontsize=16,color="green",shape="box"];4047[label="xuu47000",fontsize=16,color="green",shape="box"];4048[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4048 -> 4089[label="",style="solid", color="black", weight=3]; 30.13/12.46 4049[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4049 -> 4090[label="",style="solid", color="black", weight=3]; 30.13/12.46 4050[label="xuu48000",fontsize=16,color="green",shape="box"];4051[label="xuu47000",fontsize=16,color="green",shape="box"];4052[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4052 -> 4091[label="",style="solid", color="black", weight=3]; 30.13/12.46 4053[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4053 -> 4092[label="",style="solid", color="black", weight=3]; 30.13/12.46 4054[label="xuu48000",fontsize=16,color="green",shape="box"];4055[label="xuu47000",fontsize=16,color="green",shape="box"];4056[label="xuu48000",fontsize=16,color="green",shape="box"];4057[label="xuu47000",fontsize=16,color="green",shape="box"];4058[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4058 -> 4093[label="",style="solid", color="black", weight=3]; 30.13/12.46 4059[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4059 -> 4094[label="",style="solid", color="black", weight=3]; 30.13/12.46 4060[label="xuu48000",fontsize=16,color="green",shape="box"];4061[label="xuu47000",fontsize=16,color="green",shape="box"];4062[label="compare2 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4062 -> 4095[label="",style="solid", color="black", weight=3]; 30.13/12.46 4063[label="compare2 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4063 -> 4096[label="",style="solid", color="black", weight=3]; 30.13/12.46 3025[label="xuu4700",fontsize=16,color="green",shape="box"];3026[label="xuu4800",fontsize=16,color="green",shape="box"];3665[label="xuu48000",fontsize=16,color="green",shape="box"];3666[label="xuu47000",fontsize=16,color="green",shape="box"];4086 -> 933[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4086[label="primMulInt xuu480000 xuu470010",fontsize=16,color="magenta"];4086 -> 4110[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4086 -> 4111[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 2492[label="primPlusNat (Succ xuu50200) xuu1320",fontsize=16,color="burlywood",shape="box"];5082[label="xuu1320/Succ xuu13200",fontsize=10,color="white",style="solid",shape="box"];2492 -> 5082[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5082 -> 3010[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5083[label="xuu1320/Zero",fontsize=10,color="white",style="solid",shape="box"];2492 -> 5083[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5083 -> 3011[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2493[label="primPlusNat Zero xuu1320",fontsize=16,color="burlywood",shape="box"];5084[label="xuu1320/Succ xuu13200",fontsize=10,color="white",style="solid",shape="box"];2493 -> 5084[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5084 -> 3012[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5085[label="xuu1320/Zero",fontsize=10,color="white",style="solid",shape="box"];2493 -> 5085[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5085 -> 3013[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 2494[label="primMinusNat (Succ xuu50200) (Succ xuu13200)",fontsize=16,color="black",shape="box"];2494 -> 3014[label="",style="solid", color="black", weight=3]; 30.13/12.46 2495[label="primMinusNat (Succ xuu50200) Zero",fontsize=16,color="black",shape="box"];2495 -> 3015[label="",style="solid", color="black", weight=3]; 30.13/12.46 2496[label="primMinusNat Zero (Succ xuu13200)",fontsize=16,color="black",shape="box"];2496 -> 3016[label="",style="solid", color="black", weight=3]; 30.13/12.46 2497[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2497 -> 3017[label="",style="solid", color="black", weight=3]; 30.13/12.46 2498[label="xuu5020",fontsize=16,color="green",shape="box"];2499[label="xuu1320",fontsize=16,color="green",shape="box"];3002[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3003 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3003[label="FiniteMap.sizeFM xuu503",fontsize=16,color="magenta"];3003 -> 3147[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3004[label="xuu504",fontsize=16,color="green",shape="box"];3005[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 otherwise",fontsize=16,color="black",shape="box"];3005 -> 3148[label="",style="solid", color="black", weight=3]; 30.13/12.46 3006[label="FiniteMap.mkBalBranch6Single_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="black",shape="box"];3006 -> 3149[label="",style="solid", color="black", weight=3]; 30.13/12.46 3007[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];3007 -> 3150[label="",style="solid", color="black", weight=3]; 30.13/12.46 3008[label="FiniteMap.mkBalBranch6Double_L (Left xuu300) xuu31 xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu50 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];3008 -> 3151[label="",style="solid", color="black", weight=3]; 30.13/12.46 4302[label="xuu50",fontsize=16,color="green",shape="box"];4303[label="Left xuu300",fontsize=16,color="green",shape="box"];4304[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4305[label="xuu31",fontsize=16,color="green",shape="box"];4306[label="xuu343",fontsize=16,color="green",shape="box"];3018[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3019 -> 1849[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3019[label="FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];3019 -> 3160[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3020[label="xuu424",fontsize=16,color="green",shape="box"];3021[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 otherwise",fontsize=16,color="black",shape="box"];3021 -> 3161[label="",style="solid", color="black", weight=3]; 30.13/12.46 3022[label="FiniteMap.mkBalBranch6Single_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="black",shape="box"];3022 -> 3162[label="",style="solid", color="black", weight=3]; 30.13/12.46 3144[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];3144 -> 3227[label="",style="solid", color="black", weight=3]; 30.13/12.46 3145[label="FiniteMap.mkBalBranch6Double_L (Right xuu300) xuu31 xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu42 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];3145 -> 3228[label="",style="solid", color="black", weight=3]; 30.13/12.46 4307[label="xuu42",fontsize=16,color="green",shape="box"];4308[label="Right xuu300",fontsize=16,color="green",shape="box"];4309[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4310[label="xuu31",fontsize=16,color="green",shape="box"];4311[label="xuu343",fontsize=16,color="green",shape="box"];3027 -> 2442[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3027[label="primPlusNat xuu1410 xuu300000",fontsize=16,color="magenta"];3027 -> 3167[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3027 -> 3168[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4087 -> 4112[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4087[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4087 -> 4113[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4088[label="EQ",fontsize=16,color="green",shape="box"];4089 -> 4114[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4089[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4089 -> 4115[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4090[label="EQ",fontsize=16,color="green",shape="box"];4091 -> 4116[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4091[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4091 -> 4117[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4092[label="EQ",fontsize=16,color="green",shape="box"];4093 -> 4118[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4093[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4093 -> 4119[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4094[label="EQ",fontsize=16,color="green",shape="box"];4095 -> 4120[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4095[label="compare1 xuu47000 xuu48000 (xuu47000 <= xuu48000)",fontsize=16,color="magenta"];4095 -> 4121[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4096[label="EQ",fontsize=16,color="green",shape="box"];4110[label="xuu480000",fontsize=16,color="green",shape="box"];4111[label="xuu470010",fontsize=16,color="green",shape="box"];3010[label="primPlusNat (Succ xuu50200) (Succ xuu13200)",fontsize=16,color="black",shape="box"];3010 -> 3154[label="",style="solid", color="black", weight=3]; 30.13/12.46 3011[label="primPlusNat (Succ xuu50200) Zero",fontsize=16,color="black",shape="box"];3011 -> 3155[label="",style="solid", color="black", weight=3]; 30.13/12.46 3012[label="primPlusNat Zero (Succ xuu13200)",fontsize=16,color="black",shape="box"];3012 -> 3156[label="",style="solid", color="black", weight=3]; 30.13/12.46 3013[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3013 -> 3157[label="",style="solid", color="black", weight=3]; 30.13/12.46 3014 -> 2250[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3014[label="primMinusNat xuu50200 xuu13200",fontsize=16,color="magenta"];3014 -> 3158[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3014 -> 3159[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3015[label="Pos (Succ xuu50200)",fontsize=16,color="green",shape="box"];3016[label="Neg (Succ xuu13200)",fontsize=16,color="green",shape="box"];3017[label="Pos Zero",fontsize=16,color="green",shape="box"];3147[label="xuu503",fontsize=16,color="green",shape="box"];3148[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 xuu500 xuu501 xuu502 xuu503 xuu504 True",fontsize=16,color="black",shape="box"];3148 -> 3231[label="",style="solid", color="black", weight=3]; 30.13/12.46 3149 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3149[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu500 xuu501 xuu503 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu300) xuu31 xuu504 xuu34)",fontsize=16,color="magenta"];3149 -> 4201[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3149 -> 4202[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3149 -> 4203[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3149 -> 4204[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3149 -> 4205[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3150[label="error []",fontsize=16,color="red",shape="box"];3151 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3151[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu300) xuu31 xuu50 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3151 -> 4206[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3151 -> 4207[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3151 -> 4208[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3151 -> 4209[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3151 -> 4210[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3160[label="xuu423",fontsize=16,color="green",shape="box"];3161[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];3161 -> 3475[label="",style="solid", color="black", weight=3]; 30.13/12.46 3162 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3162[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu420 xuu421 xuu423 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu300) xuu31 xuu424 xuu34)",fontsize=16,color="magenta"];3162 -> 4216[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3162 -> 4217[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3162 -> 4218[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3162 -> 4219[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3162 -> 4220[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3227[label="error []",fontsize=16,color="red",shape="box"];3228 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3228[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu300) xuu31 xuu42 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3228 -> 4221[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3228 -> 4222[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3228 -> 4223[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3228 -> 4224[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3228 -> 4225[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3167[label="xuu1410",fontsize=16,color="green",shape="box"];3168[label="xuu300000",fontsize=16,color="green",shape="box"];4113 -> 2967[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4113[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4113 -> 4122[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4113 -> 4123[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4112[label="compare1 xuu47000 xuu48000 xuu247",fontsize=16,color="burlywood",shape="triangle"];5086[label="xuu247/False",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5086[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5086 -> 4124[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5087[label="xuu247/True",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5087[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5087 -> 4125[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4115 -> 2970[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4115[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4115 -> 4126[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4115 -> 4127[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4114[label="compare1 xuu47000 xuu48000 xuu248",fontsize=16,color="burlywood",shape="triangle"];5088[label="xuu248/False",fontsize=10,color="white",style="solid",shape="box"];4114 -> 5088[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5088 -> 4128[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5089[label="xuu248/True",fontsize=10,color="white",style="solid",shape="box"];4114 -> 5089[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5089 -> 4129[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4117 -> 2971[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4117[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4117 -> 4130[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4117 -> 4131[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4116[label="compare1 xuu47000 xuu48000 xuu249",fontsize=16,color="burlywood",shape="triangle"];5090[label="xuu249/False",fontsize=10,color="white",style="solid",shape="box"];4116 -> 5090[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5090 -> 4132[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5091[label="xuu249/True",fontsize=10,color="white",style="solid",shape="box"];4116 -> 5091[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5091 -> 4133[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4119 -> 2979[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4119[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4119 -> 4134[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4119 -> 4135[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4118[label="compare1 xuu47000 xuu48000 xuu250",fontsize=16,color="burlywood",shape="triangle"];5092[label="xuu250/False",fontsize=10,color="white",style="solid",shape="box"];4118 -> 5092[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5092 -> 4136[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5093[label="xuu250/True",fontsize=10,color="white",style="solid",shape="box"];4118 -> 5093[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5093 -> 4137[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4121 -> 2980[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4121[label="xuu47000 <= xuu48000",fontsize=16,color="magenta"];4121 -> 4138[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4121 -> 4139[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4120[label="compare1 xuu47000 xuu48000 xuu251",fontsize=16,color="burlywood",shape="triangle"];5094[label="xuu251/False",fontsize=10,color="white",style="solid",shape="box"];4120 -> 5094[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5094 -> 4140[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5095[label="xuu251/True",fontsize=10,color="white",style="solid",shape="box"];4120 -> 5095[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5095 -> 4141[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 3154[label="Succ (Succ (primPlusNat xuu50200 xuu13200))",fontsize=16,color="green",shape="box"];3154 -> 3474[label="",style="dashed", color="green", weight=3]; 30.13/12.46 3155[label="Succ xuu50200",fontsize=16,color="green",shape="box"];3156[label="Succ xuu13200",fontsize=16,color="green",shape="box"];3157[label="Zero",fontsize=16,color="green",shape="box"];3158[label="xuu50200",fontsize=16,color="green",shape="box"];3159[label="xuu13200",fontsize=16,color="green",shape="box"];3231[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 xuu504) xuu34",fontsize=16,color="burlywood",shape="box"];5096[label="xuu504/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5096[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5096 -> 3667[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5097[label="xuu504/FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5097[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5097 -> 3668[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4201[label="xuu503",fontsize=16,color="green",shape="box"];4202[label="xuu500",fontsize=16,color="green",shape="box"];4203[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4204[label="xuu501",fontsize=16,color="green",shape="box"];4205 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4205[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu300) xuu31 xuu504 xuu34",fontsize=16,color="magenta"];4205 -> 4312[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4205 -> 4313[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4205 -> 4314[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4205 -> 4315[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4205 -> 4316[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4206 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4206[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu300) xuu31 xuu50 xuu3433",fontsize=16,color="magenta"];4206 -> 4317[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4206 -> 4318[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4206 -> 4319[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4206 -> 4320[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4206 -> 4321[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4207[label="xuu3430",fontsize=16,color="green",shape="box"];4208[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4209[label="xuu3431",fontsize=16,color="green",shape="box"];4210 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4210[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];4210 -> 4322[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4210 -> 4323[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4210 -> 4324[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4210 -> 4325[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4210 -> 4326[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3475[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu34",fontsize=16,color="burlywood",shape="box"];5098[label="xuu424/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3475 -> 5098[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5098 -> 4065[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 5099[label="xuu424/FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244",fontsize=10,color="white",style="solid",shape="box"];3475 -> 5099[label="",style="solid", color="burlywood", weight=9]; 30.13/12.46 5099 -> 4066[label="",style="solid", color="burlywood", weight=3]; 30.13/12.46 4216[label="xuu423",fontsize=16,color="green",shape="box"];4217[label="xuu420",fontsize=16,color="green",shape="box"];4218[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4219[label="xuu421",fontsize=16,color="green",shape="box"];4220 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4220[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu300) xuu31 xuu424 xuu34",fontsize=16,color="magenta"];4220 -> 4327[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4220 -> 4328[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4220 -> 4329[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4220 -> 4330[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4220 -> 4331[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4221 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4221[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu300) xuu31 xuu42 xuu3433",fontsize=16,color="magenta"];4221 -> 4332[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4221 -> 4333[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4221 -> 4334[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4221 -> 4335[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4221 -> 4336[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4222[label="xuu3430",fontsize=16,color="green",shape="box"];4223[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4224[label="xuu3431",fontsize=16,color="green",shape="box"];4225 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4225[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];4225 -> 4337[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4225 -> 4338[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4225 -> 4339[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4225 -> 4340[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4225 -> 4341[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4122[label="xuu48000",fontsize=16,color="green",shape="box"];4123[label="xuu47000",fontsize=16,color="green",shape="box"];4124[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4124 -> 4159[label="",style="solid", color="black", weight=3]; 30.13/12.46 4125[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4125 -> 4160[label="",style="solid", color="black", weight=3]; 30.13/12.46 4126[label="xuu48000",fontsize=16,color="green",shape="box"];4127[label="xuu47000",fontsize=16,color="green",shape="box"];4128[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4128 -> 4161[label="",style="solid", color="black", weight=3]; 30.13/12.46 4129[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4129 -> 4162[label="",style="solid", color="black", weight=3]; 30.13/12.46 4130[label="xuu48000",fontsize=16,color="green",shape="box"];4131[label="xuu47000",fontsize=16,color="green",shape="box"];4132[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4132 -> 4163[label="",style="solid", color="black", weight=3]; 30.13/12.46 4133[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4133 -> 4164[label="",style="solid", color="black", weight=3]; 30.13/12.46 4134[label="xuu48000",fontsize=16,color="green",shape="box"];4135[label="xuu47000",fontsize=16,color="green",shape="box"];4136[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4136 -> 4165[label="",style="solid", color="black", weight=3]; 30.13/12.46 4137[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4137 -> 4166[label="",style="solid", color="black", weight=3]; 30.13/12.46 4138[label="xuu48000",fontsize=16,color="green",shape="box"];4139[label="xuu47000",fontsize=16,color="green",shape="box"];4140[label="compare1 xuu47000 xuu48000 False",fontsize=16,color="black",shape="box"];4140 -> 4167[label="",style="solid", color="black", weight=3]; 30.13/12.46 4141[label="compare1 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4141 -> 4168[label="",style="solid", color="black", weight=3]; 30.13/12.46 3474 -> 2442[label="",style="dashed", color="red", weight=0]; 30.13/12.46 3474[label="primPlusNat xuu50200 xuu13200",fontsize=16,color="magenta"];3474 -> 4100[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3474 -> 4101[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 3667[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 FiniteMap.EmptyFM) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3667 -> 4102[label="",style="solid", color="black", weight=3]; 30.13/12.46 3668[label="FiniteMap.mkBalBranch6Double_R (Left xuu300) xuu31 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 (FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044)) xuu34 (FiniteMap.Branch xuu500 xuu501 xuu502 xuu503 (FiniteMap.Branch xuu5040 xuu5041 xuu5042 xuu5043 xuu5044)) xuu34",fontsize=16,color="black",shape="box"];3668 -> 4103[label="",style="solid", color="black", weight=3]; 30.13/12.46 4312[label="xuu504",fontsize=16,color="green",shape="box"];4313[label="Left xuu300",fontsize=16,color="green",shape="box"];4314[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4315[label="xuu31",fontsize=16,color="green",shape="box"];4316[label="xuu34",fontsize=16,color="green",shape="box"];4317[label="xuu50",fontsize=16,color="green",shape="box"];4318[label="Left xuu300",fontsize=16,color="green",shape="box"];4319[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4320[label="xuu31",fontsize=16,color="green",shape="box"];4321[label="xuu3433",fontsize=16,color="green",shape="box"];4322[label="xuu3434",fontsize=16,color="green",shape="box"];4323[label="xuu340",fontsize=16,color="green",shape="box"];4324[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4325[label="xuu341",fontsize=16,color="green",shape="box"];4326[label="xuu344",fontsize=16,color="green",shape="box"];4065[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];4065 -> 4108[label="",style="solid", color="black", weight=3]; 30.13/12.46 4066[label="FiniteMap.mkBalBranch6Double_R (Right xuu300) xuu31 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu34 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu34",fontsize=16,color="black",shape="box"];4066 -> 4109[label="",style="solid", color="black", weight=3]; 30.13/12.46 4327[label="xuu424",fontsize=16,color="green",shape="box"];4328[label="Right xuu300",fontsize=16,color="green",shape="box"];4329[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4330[label="xuu31",fontsize=16,color="green",shape="box"];4331[label="xuu34",fontsize=16,color="green",shape="box"];4332[label="xuu42",fontsize=16,color="green",shape="box"];4333[label="Right xuu300",fontsize=16,color="green",shape="box"];4334[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4335[label="xuu31",fontsize=16,color="green",shape="box"];4336[label="xuu3433",fontsize=16,color="green",shape="box"];4337[label="xuu3434",fontsize=16,color="green",shape="box"];4338[label="xuu340",fontsize=16,color="green",shape="box"];4339[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4340[label="xuu341",fontsize=16,color="green",shape="box"];4341[label="xuu344",fontsize=16,color="green",shape="box"];4159[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4159 -> 4342[label="",style="solid", color="black", weight=3]; 30.13/12.46 4160[label="LT",fontsize=16,color="green",shape="box"];4161[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4161 -> 4343[label="",style="solid", color="black", weight=3]; 30.13/12.46 4162[label="LT",fontsize=16,color="green",shape="box"];4163[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4163 -> 4344[label="",style="solid", color="black", weight=3]; 30.13/12.46 4164[label="LT",fontsize=16,color="green",shape="box"];4165[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4165 -> 4345[label="",style="solid", color="black", weight=3]; 30.13/12.46 4166[label="LT",fontsize=16,color="green",shape="box"];4167[label="compare0 xuu47000 xuu48000 otherwise",fontsize=16,color="black",shape="box"];4167 -> 4346[label="",style="solid", color="black", weight=3]; 30.13/12.46 4168[label="LT",fontsize=16,color="green",shape="box"];4100[label="xuu50200",fontsize=16,color="green",shape="box"];4101[label="xuu13200",fontsize=16,color="green",shape="box"];4102[label="error []",fontsize=16,color="red",shape="box"];4103 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4103[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu5040 xuu5041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu500 xuu501 xuu503 xuu5043) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu300) xuu31 xuu5044 xuu34)",fontsize=16,color="magenta"];4103 -> 4261[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4103 -> 4262[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4103 -> 4263[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4103 -> 4264[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4103 -> 4265[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4108[label="error []",fontsize=16,color="red",shape="box"];4109 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4109[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4240 xuu4241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu300) xuu31 xuu4244 xuu34)",fontsize=16,color="magenta"];4109 -> 4276[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4109 -> 4277[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4109 -> 4278[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4109 -> 4279[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4109 -> 4280[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4342[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4342 -> 4368[label="",style="solid", color="black", weight=3]; 30.13/12.46 4343[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4343 -> 4369[label="",style="solid", color="black", weight=3]; 30.13/12.46 4344[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4344 -> 4370[label="",style="solid", color="black", weight=3]; 30.13/12.46 4345[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4345 -> 4371[label="",style="solid", color="black", weight=3]; 30.13/12.46 4346[label="compare0 xuu47000 xuu48000 True",fontsize=16,color="black",shape="box"];4346 -> 4372[label="",style="solid", color="black", weight=3]; 30.13/12.46 4261 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4261[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu500 xuu501 xuu503 xuu5043",fontsize=16,color="magenta"];4261 -> 4347[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4261 -> 4348[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4261 -> 4349[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4261 -> 4350[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4261 -> 4351[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4262[label="xuu5040",fontsize=16,color="green",shape="box"];4263[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4264[label="xuu5041",fontsize=16,color="green",shape="box"];4265 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4265[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu300) xuu31 xuu5044 xuu34",fontsize=16,color="magenta"];4265 -> 4352[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4265 -> 4353[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4265 -> 4354[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4265 -> 4355[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4265 -> 4356[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4276 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4276[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243",fontsize=16,color="magenta"];4276 -> 4357[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4276 -> 4358[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4276 -> 4359[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4276 -> 4360[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4276 -> 4361[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4277[label="xuu4240",fontsize=16,color="green",shape="box"];4278[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4279[label="xuu4241",fontsize=16,color="green",shape="box"];4280 -> 4170[label="",style="dashed", color="red", weight=0]; 30.13/12.46 4280[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu300) xuu31 xuu4244 xuu34",fontsize=16,color="magenta"];4280 -> 4362[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4280 -> 4363[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4280 -> 4364[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4280 -> 4365[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4280 -> 4366[label="",style="dashed", color="magenta", weight=3]; 30.13/12.46 4368[label="GT",fontsize=16,color="green",shape="box"];4369[label="GT",fontsize=16,color="green",shape="box"];4370[label="GT",fontsize=16,color="green",shape="box"];4371[label="GT",fontsize=16,color="green",shape="box"];4372[label="GT",fontsize=16,color="green",shape="box"];4347[label="xuu503",fontsize=16,color="green",shape="box"];4348[label="xuu500",fontsize=16,color="green",shape="box"];4349[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4350[label="xuu501",fontsize=16,color="green",shape="box"];4351[label="xuu5043",fontsize=16,color="green",shape="box"];4352[label="xuu5044",fontsize=16,color="green",shape="box"];4353[label="Left xuu300",fontsize=16,color="green",shape="box"];4354[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4355[label="xuu31",fontsize=16,color="green",shape="box"];4356[label="xuu34",fontsize=16,color="green",shape="box"];4357[label="xuu423",fontsize=16,color="green",shape="box"];4358[label="xuu420",fontsize=16,color="green",shape="box"];4359[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4360[label="xuu421",fontsize=16,color="green",shape="box"];4361[label="xuu4243",fontsize=16,color="green",shape="box"];4362[label="xuu4244",fontsize=16,color="green",shape="box"];4363[label="Right xuu300",fontsize=16,color="green",shape="box"];4364[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4365[label="xuu31",fontsize=16,color="green",shape="box"];4366[label="xuu34",fontsize=16,color="green",shape="box"];} 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (16) 30.13/12.46 Complex Obligation (AND) 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (17) 30.13/12.46 Obligation: 30.13/12.46 Q DP problem: 30.13/12.46 The TRS P consists of the following rules: 30.13/12.46 30.13/12.46 new_primCmpNat(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat(xuu47000, xuu48000) 30.13/12.46 30.13/12.46 R is empty. 30.13/12.46 Q is empty. 30.13/12.46 We have to consider all minimal (P,Q,R)-chains. 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (18) QDPSizeChangeProof (EQUIVALENT) 30.13/12.46 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. 30.13/12.46 30.13/12.46 From the DPs we obtained the following set of size-change graphs: 30.13/12.46 *new_primCmpNat(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat(xuu47000, xuu48000) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2 30.13/12.46 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (19) 30.13/12.46 YES 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (20) 30.13/12.46 Obligation: 30.13/12.46 Q DP problem: 30.13/12.46 The TRS P consists of the following rules: 30.13/12.46 30.13/12.46 new_esEs(Just(xuu40000), Just(xuu3000), app(ty_[], bf)) -> new_esEs2(xuu40000, xuu3000, bf) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(ty_Either, he), hf)) -> new_esEs0(xuu40002, xuu3002, he, hf) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu40000, xuu3000, bca, bcb) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(ty_Either, gd), ge), eh) -> new_esEs0(xuu40001, xuu3001, gd, ge) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bbf) -> new_esEs2(xuu40001, xuu3001, bbf) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu40001, xuu3001, bdc, bdd) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, fa), fb), eg, eh) -> new_esEs0(xuu40000, xuu3000, fa, fb) 30.13/12.46 new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ca), cb) -> new_esEs(xuu40000, xuu3000, ca) 30.13/12.46 new_esEs(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu40000, xuu3000, bg, bh) 30.13/12.46 new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xuu40000, xuu3000, df, dg) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_esEs1(xuu40000, xuu3000, fc, fd, ff) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(xuu40001, xuu3001, bde, bdf, bdg) 30.13/12.46 new_esEs(Just(xuu40000), Just(xuu3000), app(ty_Maybe, h)) -> new_esEs(xuu40000, xuu3000, h) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(ty_[], bab)) -> new_esEs2(xuu40002, xuu3002, bab) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(xuu40000, xuu3000, bcc, bcd, bce) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(ty_[], ha), eh) -> new_esEs2(xuu40001, xuu3001, ha) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bbd), bbe)) -> new_esEs3(xuu40000, xuu3000, bbd, bbe) 30.13/12.46 new_esEs(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(xuu40000, xuu3000, bc, bd, be) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu40001, xuu3001, bea, beb) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], fg), eg, eh) -> new_esEs2(xuu40000, xuu3000, fg) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(ty_Maybe, hd)) -> new_esEs(xuu40002, xuu3002, hd) 30.13/12.46 new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, db), dc), cb) -> new_esEs3(xuu40000, xuu3000, db, dc) 30.13/12.46 new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], da), cb) -> new_esEs2(xuu40000, xuu3000, da) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(xuu40000, xuu3000, bah, bba, bbb) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(ty_Maybe, gc), eh) -> new_esEs(xuu40001, xuu3001, gc) 30.13/12.46 new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(ty_@2, ed), ee)) -> new_esEs3(xuu40000, xuu3000, ed, ee) 30.13/12.46 new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xuu40000, xuu3000, cc, cd) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), eg, eh) -> new_esEs(xuu40000, xuu3000, ef) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, baf), bag)) -> new_esEs0(xuu40000, xuu3000, baf, bag) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bcf), bbh) -> new_esEs2(xuu40000, xuu3000, bcf) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs1(xuu40002, xuu3002, hg, hh, baa) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu40000, xuu3000, bcg, bch) 30.13/12.46 new_esEs(Just(xuu40000), Just(xuu3000), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu40000, xuu3000, ba, bb) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(ty_@2, bac), bad)) -> new_esEs3(xuu40002, xuu3002, bac, bad) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bae)) -> new_esEs(xuu40000, xuu3000, bae) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_[], bdh)) -> new_esEs2(xuu40001, xuu3001, bdh) 30.13/12.46 new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bbc)) -> new_esEs2(xuu40000, xuu3000, bbc) 30.13/12.46 new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(ty_[], ec)) -> new_esEs2(xuu40000, xuu3000, ec) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(ty_@2, hb), hc), eh) -> new_esEs3(xuu40001, xuu3001, hb, hc) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_Maybe, bdb)) -> new_esEs(xuu40001, xuu3001, bdb) 30.13/12.46 new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ce), cf), cg), cb) -> new_esEs1(xuu40000, xuu3000, ce, cf, cg) 30.13/12.46 new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(xuu40000, xuu3000, dh, ea, eb) 30.13/12.46 new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu40000, xuu3000, bbg) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, fh), ga), eg, eh) -> new_esEs3(xuu40000, xuu3000, fh, ga) 30.13/12.46 new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_esEs1(xuu40001, xuu3001, gf, gg, gh) 30.13/12.46 new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(ty_Maybe, de)) -> new_esEs(xuu40000, xuu3000, de) 30.13/12.46 30.13/12.46 R is empty. 30.13/12.46 Q is empty. 30.13/12.46 We have to consider all minimal (P,Q,R)-chains. 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (21) QDPSizeChangeProof (EQUIVALENT) 30.13/12.46 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. 30.13/12.46 30.13/12.46 From the DPs we obtained the following set of size-change graphs: 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bae)) -> new_esEs(xuu40000, xuu3000, bae) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(xuu40000, xuu3000, bah, bba, bbb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bbd), bbe)) -> new_esEs3(xuu40000, xuu3000, bbd, bbe) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, baf), bag)) -> new_esEs0(xuu40000, xuu3000, baf, bag) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs(Just(xuu40000), Just(xuu3000), app(ty_Maybe, h)) -> new_esEs(xuu40000, xuu3000, h) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(xuu40000, xuu3000, bc, bd, be) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu40000, xuu3000, bg, bh) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs(Just(xuu40000), Just(xuu3000), app(ty_[], bf)) -> new_esEs2(xuu40000, xuu3000, bf) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs(Just(xuu40000), Just(xuu3000), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu40000, xuu3000, ba, bb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bbf) -> new_esEs2(xuu40001, xuu3001, bbf) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs2(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bbc)) -> new_esEs2(xuu40000, xuu3000, bbc) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ca), cb) -> new_esEs(xuu40000, xuu3000, ca) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(ty_Maybe, de)) -> new_esEs(xuu40000, xuu3000, de) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_Maybe, bdb)) -> new_esEs(xuu40001, xuu3001, bdb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu40000, xuu3000, bbg) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(ty_Maybe, hd)) -> new_esEs(xuu40002, xuu3002, hd) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(ty_Maybe, gc), eh) -> new_esEs(xuu40001, xuu3001, gc) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), eg, eh) -> new_esEs(xuu40000, xuu3000, ef) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ce), cf), cg), cb) -> new_esEs1(xuu40000, xuu3000, ce, cf, cg) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(xuu40000, xuu3000, dh, ea, eb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, db), dc), cb) -> new_esEs3(xuu40000, xuu3000, db, dc) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(ty_@2, ed), ee)) -> new_esEs3(xuu40000, xuu3000, ed, ee) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], da), cb) -> new_esEs2(xuu40000, xuu3000, da) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(ty_[], ec)) -> new_esEs2(xuu40000, xuu3000, ec) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Right(xuu40000), Right(xuu3000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xuu40000, xuu3000, df, dg) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xuu40000, xuu3000, cc, cd) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(xuu40001, xuu3001, bde, bdf, bdg) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(xuu40000, xuu3000, bcc, bcd, bce) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_esEs1(xuu40000, xuu3000, fc, fd, ff) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs1(xuu40002, xuu3002, hg, hh, baa) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_esEs1(xuu40001, xuu3001, gf, gg, gh) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu40001, xuu3001, bea, beb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu40000, xuu3000, bcg, bch) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(ty_@2, bac), bad)) -> new_esEs3(xuu40002, xuu3002, bac, bad) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(ty_@2, hb), hc), eh) -> new_esEs3(xuu40001, xuu3001, hb, hc) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, fh), ga), eg, eh) -> new_esEs3(xuu40000, xuu3000, fh, ga) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bcf), bbh) -> new_esEs2(xuu40000, xuu3000, bcf) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_[], bdh)) -> new_esEs2(xuu40001, xuu3001, bdh) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(ty_[], bab)) -> new_esEs2(xuu40002, xuu3002, bab) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(ty_[], ha), eh) -> new_esEs2(xuu40001, xuu3001, ha) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], fg), eg, eh) -> new_esEs2(xuu40000, xuu3000, fg) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu40000, xuu3000, bca, bcb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu40001, xuu3001, bdc, bdd) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, eg, app(app(ty_Either, he), hf)) -> new_esEs0(xuu40002, xuu3002, he, hf) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), gb, app(app(ty_Either, gd), ge), eh) -> new_esEs0(xuu40001, xuu3001, gd, ge) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.46 30.13/12.46 30.13/12.46 *new_esEs1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, fa), fb), eg, eh) -> new_esEs0(xuu40000, xuu3000, fa, fb) 30.13/12.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.46 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (22) 30.13/12.46 YES 30.13/12.46 30.13/12.46 ---------------------------------------- 30.13/12.46 30.13/12.46 (23) 30.13/12.46 Obligation: 30.13/12.46 Q DP problem: 30.13/12.46 The TRS P consists of the following rules: 30.13/12.46 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(ty_@2, bch), bda)), hc) -> new_ltEs3(xuu47001, xuu48001, bch, bda) 30.13/12.46 new_compare20(xuu47000, xuu48000, False, eh, fa, fb) -> new_ltEs0(xuu47000, xuu48000, eh, fa, fb) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs0(xuu47002, xuu48002, cd, ce, cf) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(ty_Either, da), db)) -> new_ltEs2(xuu47002, xuu48002, da, db) 30.13/12.46 new_primCompAux(xuu47000, xuu48000, xuu214, app(app(app(ty_@3, gc), gd), ge)) -> new_compare3(xuu47000, xuu48000, gc, gd, ge) 30.13/12.46 new_lt3(xuu47000, xuu48000, fg, fh) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(ty_Either, ec), ed), df) -> new_lt2(xuu47001, xuu48001, ec, ed) 30.13/12.46 new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(ty_@2, bbf), bbg)) -> new_ltEs3(xuu47000, xuu48000, bbf, bbg) 30.13/12.46 new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(ty_@2, bbf), bbg)), hc) -> new_ltEs3(xuu47000, xuu48000, bbf, bbg) 30.13/12.46 new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(ty_Maybe, bag)) -> new_ltEs(xuu47000, xuu48000, bag) 30.13/12.46 new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_[], baa)), he), hc) -> new_ltEs1(xuu47000, xuu48000, baa) 30.13/12.46 new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_@2, bad), bae)), he), hc) -> new_ltEs3(xuu47000, xuu48000, bad, bae) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(ty_Either, ec), ed)), df), hc) -> new_lt2(xuu47001, xuu48001, ec, ed) 30.13/12.46 new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(ty_[], bbc)) -> new_ltEs1(xuu47000, xuu48000, bbc) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(app(ty_@3, cd), ce), cf)), hc) -> new_ltEs0(xuu47002, xuu48002, cd, ce, cf) 30.13/12.46 new_ltEs2(Left(xuu47000), Left(xuu48000), app(ty_Maybe, hd), he) -> new_ltEs(xuu47000, xuu48000, hd) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(ty_@2, bch), bda)) -> new_ltEs3(xuu47001, xuu48001, bch, bda) 30.13/12.46 new_compare4(xuu47000, xuu48000, fd, ff) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_@2, fg), fh), cb, df) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_@2, beb), bec), bdc) -> new_lt3(xuu47000, xuu48000, beb, bec) 30.13/12.46 new_compare1(xuu47000, xuu48000, eg) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_Either, be), bf)), hc) -> new_ltEs2(xuu47000, xuu48000, be, bf) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_@2, beb), bec)), bdc), hc) -> new_lt3(xuu47000, xuu48000, beb, bec) 30.13/12.46 new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, hf), hg), hh), he) -> new_ltEs0(xuu47000, xuu48000, hf, hg, hh) 30.13/12.46 new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs0(xuu4700, xuu4800, bef, beg, beh) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_Maybe, bdb), bdc) -> new_lt(xuu47000, xuu48000, bdb) 30.13/12.46 new_compare2(xuu47000, xuu48000, False, eg) -> new_ltEs(xuu47000, xuu48000, eg) 30.13/12.46 new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_Either, bfb), bfc)) -> new_ltEs2(xuu4700, xuu4800, bfb, bfc) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(ty_[], cg)) -> new_ltEs1(xuu47002, xuu48002, cg) 30.13/12.46 new_lt(xuu47000, xuu48000, eg) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(ty_Maybe, bca)), hc) -> new_ltEs(xuu47001, xuu48001, bca) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(ty_[], eb), df) -> new_lt1(xuu47001, xuu48001, eb) 30.13/12.46 new_ltEs1(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu47001, xuu48001, bcb, bcc, bcd) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bcb), bcc), bcd)), hc) -> new_ltEs0(xuu47001, xuu48001, bcb, bcc, bcd) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_@2, fg), fh)), cb), df), hc) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh)), hc) -> new_ltEs3(xuu47000, xuu48000, bg, bh) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(ty_[], eb)), df), hc) -> new_lt1(xuu47001, xuu48001, eb) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(app(ty_@3, eh), fa), fb)), cb), df), hc) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_Either, bab), bac)), he), hc) -> new_ltEs2(xuu47000, xuu48000, bab, bac) 30.13/12.46 new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_Maybe, h)), hc) -> new_ltEs(xuu47000, xuu48000, h) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(ty_Either, bcf), bcg)) -> new_ltEs2(xuu47001, xuu48001, bcf, bcg) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(ty_Maybe, cc)), hc) -> new_ltEs(xuu47002, xuu48002, cc) 30.13/12.46 new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(ty_[], bbc)), hc) -> new_ltEs1(xuu47000, xuu48000, bbc) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(ty_Maybe, bca)) -> new_ltEs(xuu47001, xuu48001, bca) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(ty_@2, ee), ef), df) -> new_lt3(xuu47001, xuu48001, ee, ef) 30.13/12.46 new_compare3(xuu47000, xuu48000, eh, fa, fb) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_Maybe, bee)) -> new_ltEs(xuu4700, xuu4800, bee) 30.13/12.46 new_primCompAux(xuu47000, xuu48000, xuu214, app(ty_Maybe, gb)) -> new_compare1(xuu47000, xuu48000, gb) 30.13/12.46 new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_@2, bfd), bfe)) -> new_ltEs3(xuu4700, xuu4800, bfd, bfe) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(ty_Either, bcf), bcg)), hc) -> new_ltEs2(xuu47001, xuu48001, bcf, bcg) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc), hc) -> new_lt1(xuu47000, xuu48000, bdg) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc), hc) -> new_lt0(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_[], fc), cb, df) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(ty_Maybe, cc)) -> new_ltEs(xuu47002, xuu48002, cc) 30.13/12.46 new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_[], bfa)) -> new_ltEs1(xuu4700, xuu4800, bfa) 30.13/12.46 new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(app(ty_@3, hf), hg), hh)), he), hc) -> new_ltEs0(xuu47000, xuu48000, hf, hg, hh) 30.13/12.46 new_compare22(xuu47000, xuu48000, False, fg, fh) -> new_ltEs3(xuu47000, xuu48000, fg, fh) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_Either, fd), ff), cb, df) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.46 new_primCompAux(xuu47000, xuu48000, xuu214, app(app(ty_Either, gg), gh)) -> new_compare4(xuu47000, xuu48000, gg, gh) 30.13/12.46 new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(ty_Either, bbd), bbe)), hc) -> new_ltEs2(xuu47000, xuu48000, bbd, bbe) 30.13/12.46 new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], ga), hc) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(ty_[], cg)), hc) -> new_ltEs1(xuu47002, xuu48002, cg) 30.13/12.46 new_lt0(xuu47000, xuu48000, eh, fa, fb) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_[], bd)), hc) -> new_ltEs1(xuu47000, xuu48000, bd) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), cb), df), hc) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_Either, bdh), bea), bdc) -> new_lt2(xuu47000, xuu48000, bdh, bea) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_lt0(xuu47001, xuu48001, dg, dh, ea) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu47002, xuu48002, dc, dd) 30.13/12.46 new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.46 new_ltEs(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bg), bh)) -> new_ltEs3(xuu47000, xuu48000, bg, bh) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(app(ty_@3, dg), dh), ea)), df), hc) -> new_lt0(xuu47001, xuu48001, dg, dh, ea) 30.13/12.46 new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(ty_Either, bbd), bbe)) -> new_ltEs2(xuu47000, xuu48000, bbd, bbe) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_@2, dc), dd)), hc) -> new_ltEs3(xuu47002, xuu48002, dc, dd) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(ty_[], bce)), hc) -> new_ltEs1(xuu47001, xuu48001, bce) 30.13/12.46 new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu47000, xuu48000, bah, bba, bbb) 30.13/12.46 new_primCompAux(xuu47000, xuu48000, xuu214, app(app(ty_@2, ha), hb)) -> new_compare5(xuu47000, xuu48000, ha, hb) 30.13/12.46 new_compare5(xuu47000, xuu48000, fg, fh) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_primCompAux(xuu47000, xuu48000, xuu214, app(ty_[], gf)) -> new_compare(xuu47000, xuu48000, gf) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_[], bdg), bdc) -> new_lt1(xuu47000, xuu48000, bdg) 30.13/12.46 new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(app(ty_@3, ba), bb), bc)), hc) -> new_ltEs0(xuu47000, xuu48000, ba, bb, bc) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_Maybe, bdb)), bdc), hc) -> new_lt(xuu47000, xuu48000, bdb) 30.13/12.46 new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_Maybe, hd)), he), hc) -> new_ltEs(xuu47000, xuu48000, hd) 30.13/12.46 new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(ty_@2, bad), bae), he) -> new_ltEs3(xuu47000, xuu48000, bad, bae) 30.13/12.46 new_ltEs(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs0(xuu47000, xuu48000, ba, bb, bc) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_Maybe, eg), cb, df) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(ty_@2, ee), ef)), df), hc) -> new_lt3(xuu47001, xuu48001, ee, ef) 30.13/12.46 new_ltEs2(Left(xuu47000), Left(xuu48000), app(ty_[], baa), he) -> new_ltEs1(xuu47000, xuu48000, baa) 30.13/12.46 new_ltEs(Just(xuu47000), Just(xuu48000), app(ty_Maybe, h)) -> new_ltEs(xuu47000, xuu48000, h) 30.13/12.46 new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.46 new_ltEs(Just(xuu47000), Just(xuu48000), app(app(ty_Either, be), bf)) -> new_ltEs2(xuu47000, xuu48000, be, bf) 30.13/12.46 new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], ga), hc) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.46 new_lt2(xuu47000, xuu48000, fd, ff) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_Either, da), db)), hc) -> new_ltEs2(xuu47002, xuu48002, da, db) 30.13/12.46 new_ltEs1(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.46 new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(ty_Maybe, de), df) -> new_lt(xuu47001, xuu48001, de) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_Maybe, eg)), cb), df), hc) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(app(ty_@3, bah), bba), bbb)), hc) -> new_ltEs0(xuu47000, xuu48000, bah, bba, bbb) 30.13/12.46 new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(ty_Either, bab), bac), he) -> new_ltEs2(xuu47000, xuu48000, bab, bac) 30.13/12.46 new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(ty_[], bce)) -> new_ltEs1(xuu47001, xuu48001, bce) 30.13/12.46 new_ltEs(Just(xuu47000), Just(xuu48000), app(ty_[], bd)) -> new_ltEs1(xuu47000, xuu48000, bd) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_[], fc)), cb), df), hc) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.46 new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(ty_Maybe, bag)), hc) -> new_ltEs(xuu47000, xuu48000, bag) 30.13/12.46 new_lt1(xuu47000, xuu48000, fc) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.46 new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(ty_Maybe, de)), df), hc) -> new_lt(xuu47001, xuu48001, de) 30.13/12.46 new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_Either, bdh), bea)), bdc), hc) -> new_lt2(xuu47000, xuu48000, bdh, bea) 30.13/12.46 30.13/12.46 The TRS R consists of the following rules: 30.13/12.46 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(ty_Maybe, bag)) -> new_ltEs8(xuu47000, xuu48000, bag) 30.13/12.46 new_lt7(xuu47000, xuu48000) -> new_esEs8(new_compare9(xuu47000, xuu48000), LT) 30.13/12.46 new_ltEs17(LT, EQ) -> True 30.13/12.46 new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT 30.13/12.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.13/12.46 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_compare10(xuu47000, xuu48000, True, eh, fa, fb) -> LT 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_primPlusNat0(Zero, Zero) -> Zero 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Double) -> new_ltEs4(xuu47001, xuu48001) 30.13/12.46 new_compare27(Left(xuu4700), Right(xuu4800), False, bed, hc) -> LT 30.13/12.46 new_pePe(True, xuu204) -> True 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Double) -> new_esEs14(xuu47001, xuu48001) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs6(xuu47001, xuu48001, bcb, bcc, bcd) 30.13/12.46 new_ltEs10(False, False) -> True 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.46 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Int) -> new_ltEs11(xuu47002, xuu48002) 30.13/12.46 new_lt4(xuu47000, xuu48000, fd, ff) -> new_esEs8(new_compare6(xuu47000, xuu48000, fd, ff), LT) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(ty_[], dbf)) -> new_esEs9(xuu40001, xuu3001, dbf) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cfc), ced) -> new_esEs15(xuu40000, xuu3000, cfc) 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.13/12.46 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT 30.13/12.46 new_lt17(xuu47000, xuu48000, bhb) -> new_esEs8(new_compare15(xuu47000, xuu48000, bhb), LT) 30.13/12.46 new_esEs5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), chb, chc, chd) -> new_asAs(new_esEs26(xuu40000, xuu3000, chb), new_asAs(new_esEs27(xuu40001, xuu3001, chc), new_esEs28(xuu40002, xuu3002, chd))) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Ordering, he) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(ty_Ratio, bhf)) -> new_ltEs16(xuu47001, xuu48001, bhf) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Ordering) -> new_lt18(xuu47001, xuu48001) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(ty_[], bce)) -> new_ltEs5(xuu47001, xuu48001, bce) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Float, he) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.46 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(ty_Ratio, cgf)) -> new_esEs15(xuu40000, xuu3000, cgf) 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dae), daf)) -> new_esEs7(xuu40000, xuu3000, dae, daf) 30.13/12.46 new_compare111(xuu177, xuu178, True, ddd, dde) -> LT 30.13/12.46 new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat1(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.46 new_lt18(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(ty_Ratio, bhd)) -> new_ltEs16(xuu47002, xuu48002, bhd) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(ty_Maybe, de)) -> new_lt10(xuu47001, xuu48001, de) 30.13/12.46 new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.46 new_ltEs4(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) 30.13/12.46 new_compare14(@0, @0) -> EQ 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(ty_[], cg)) -> new_ltEs5(xuu47002, xuu48002, cg) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, ced) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_esEs8(GT, GT) -> True 30.13/12.46 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.13/12.46 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.46 new_fsEs(xuu187) -> new_not(new_esEs8(xuu187, GT)) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(ty_Ratio, cag)) -> new_esEs15(xuu40000, xuu3000, cag) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(ty_[], bdg)) -> new_esEs9(xuu47000, xuu48000, bdg) 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_@0) -> new_ltEs12(xuu47001, xuu48001) 30.13/12.46 new_esEs8(EQ, EQ) -> True 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(ty_Maybe, de)) -> new_esEs4(xuu47001, xuu48001, de) 30.13/12.46 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Float) -> new_esEs18(xuu47001, xuu48001) 30.13/12.46 new_lt12(xuu47000, xuu48000, eh, fa, fb) -> new_esEs8(new_compare11(xuu47000, xuu48000, eh, fa, fb), LT) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(ty_[], eb)) -> new_lt14(xuu47001, xuu48001, eb) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(app(ty_@2, bbh), bdc)) -> new_ltEs18(xuu4700, xuu4800, bbh, bdc) 30.13/12.46 new_ltEs17(LT, GT) -> True 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Maybe, hd), he) -> new_ltEs8(xuu47000, xuu48000, hd) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Bool) -> new_esEs17(xuu47001, xuu48001) 30.13/12.46 new_not(True) -> False 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs6(xuu47000, xuu48000, bah, bba, bbb) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.46 new_lt14(xuu47000, xuu48000, fc) -> new_esEs8(new_compare0(xuu47000, xuu48000, fc), LT) 30.13/12.46 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.46 new_primCompAux00(xuu228, LT) -> LT 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs11(xuu40002, xuu3002) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.46 new_ltEs6(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, df) -> new_pePe(new_lt9(xuu47000, xuu48000, ca), new_asAs(new_esEs21(xuu47000, xuu48000, ca), new_pePe(new_lt8(xuu47001, xuu48001, cb), new_asAs(new_esEs22(xuu47001, xuu48001, cb), new_ltEs7(xuu47002, xuu48002, df))))) 30.13/12.46 new_ltEs17(EQ, GT) -> True 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_@0) -> new_lt15(xuu47001, xuu48001) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(app(app(ty_@3, ca), cb), df)) -> new_ltEs6(xuu4700, xuu4800, ca, cb, df) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Int) -> new_ltEs11(xuu47001, xuu48001) 30.13/12.46 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.13/12.46 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.46 new_esEs12(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Bool) -> new_lt6(xuu47001, xuu48001) 30.13/12.46 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(ty_Maybe, cdh)) -> new_ltEs8(xuu4700, xuu4800, cdh) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_lt20(xuu47000, xuu48000, app(ty_[], bdg)) -> new_lt14(xuu47000, xuu48000, bdg) 30.13/12.46 new_ltEs17(LT, LT) -> True 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(app(ty_@2, ee), ef)) -> new_esEs7(xuu47001, xuu48001, ee, ef) 30.13/12.46 new_primCompAux00(xuu228, GT) -> GT 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(ty_[], eb)) -> new_esEs9(xuu47001, xuu48001, eb) 30.13/12.46 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(xuu40001, xuu3001, cbf, cbg, cbh) 30.13/12.46 new_lt10(xuu47000, xuu48000, eg) -> new_esEs8(new_compare30(xuu47000, xuu48000, eg), LT) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.46 new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(ty_Maybe, cc)) -> new_ltEs8(xuu47002, xuu48002, cc) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(xuu40000, xuu3000, cad, cae, caf) 30.13/12.46 new_compare110(xuu47000, xuu48000, True, fg, fh) -> LT 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(app(ty_@2, dc), dd)) -> new_ltEs18(xuu47002, xuu48002, dc, dd) 30.13/12.46 new_compare16(xuu47000, xuu48000, False) -> GT 30.13/12.46 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.46 new_primCompAux0(xuu47000, xuu48000, xuu214, ga) -> new_primCompAux00(xuu214, new_compare31(xuu47000, xuu48000, ga)) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_compare31(xuu47000, xuu48000, app(app(ty_Either, gg), gh)) -> new_compare6(xuu47000, xuu48000, gg, gh) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, ced) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, hf), hg), hh), he) -> new_ltEs6(xuu47000, xuu48000, hf, hg, hh) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ceh), cfa), cfb), ced) -> new_esEs5(xuu40000, xuu3000, ceh, cfa, cfb) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_@0) -> new_ltEs12(xuu47002, xuu48002) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_compare27(Right(xuu4700), Left(xuu4800), False, bed, hc) -> GT 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(app(ty_Either, da), db)) -> new_ltEs13(xuu47002, xuu48002, da, db) 30.13/12.46 new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare19(xuu4700, xuu4800)) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_@0) -> new_esEs16(xuu47001, xuu48001) 30.13/12.46 new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.46 new_lt20(xuu47000, xuu48000, app(app(ty_@2, beb), bec)) -> new_lt19(xuu47000, xuu48000, beb, bec) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs5(xuu47000, xuu48000, eh, fa, fb) 30.13/12.46 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.46 new_sr(Integer(xuu480000), Integer(xuu470010)) -> Integer(new_primMulInt(xuu480000, xuu470010)) 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbg), dbh)) -> new_esEs7(xuu40001, xuu3001, dbg, dbh) 30.13/12.46 new_lt9(xuu47000, xuu48000, app(ty_[], fc)) -> new_lt14(xuu47000, xuu48000, fc) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, ced) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(ty_Ratio, bge)) -> new_esEs15(xuu40000, xuu3000, bge) 30.13/12.46 new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt12(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.46 new_pePe(False, xuu204) -> xuu204 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_ltEs13(Left(xuu47000), Right(xuu48000), baf, he) -> True 30.13/12.46 new_compare29(xuu47000, xuu48000, fg, fh) -> new_compare28(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_compare210(xuu47000, xuu48000, True, eg) -> EQ 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_compare24(xuu47000, xuu48000, False) -> new_compare13(xuu47000, xuu48000, new_ltEs17(xuu47000, xuu48000)) 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(app(ty_Either, ec), ed)) -> new_esEs6(xuu47001, xuu48001, ec, ed) 30.13/12.46 new_compare112(xuu184, xuu185, True, ddf, ddg) -> LT 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Ordering) -> new_ltEs17(xuu47002, xuu48002) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Char, he) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.46 new_esEs11(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, ced) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_esEs8(LT, EQ) -> False 30.13/12.46 new_esEs8(EQ, LT) -> False 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_Either, bab), bac), he) -> new_ltEs13(xuu47000, xuu48000, bab, bac) 30.13/12.46 new_esEs9(:(xuu40000, xuu40001), [], bff) -> False 30.13/12.46 new_esEs9([], :(xuu3000, xuu3001), bff) -> False 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bdb)) -> new_esEs4(xuu47000, xuu48000, bdb) 30.13/12.46 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.46 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(ty_[], dad)) -> new_esEs9(xuu40000, xuu3000, dad) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs16(xuu40002, xuu3002) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.46 new_ltEs13(Right(xuu47000), Left(xuu48000), baf, he) -> False 30.13/12.46 new_ltEs10(True, False) -> False 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(xuu40000, xuu3000, cda, cdb, cdc) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.46 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_compare31(xuu47000, xuu48000, app(app(app(ty_@3, gc), gd), ge)) -> new_compare11(xuu47000, xuu48000, gc, gd, ge) 30.13/12.46 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(app(ty_Either, baf), he)) -> new_ltEs13(xuu4700, xuu4800, baf, he) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Float) -> new_ltEs9(xuu47002, xuu48002) 30.13/12.46 new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.46 new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(app(ty_Either, cab), cac)) -> new_esEs6(xuu40000, xuu3000, cab, cac) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Integer) -> new_lt16(xuu47001, xuu48001) 30.13/12.46 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.46 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cef), ceg), ced) -> new_esEs6(xuu40000, xuu3000, cef, ceg) 30.13/12.46 new_compare12(xuu47000, xuu48000, False, eg) -> GT 30.13/12.46 new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs6(xuu47000, xuu48000, ba, bb, bc) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Float) -> new_lt11(xuu47001, xuu48001) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.46 new_lt13(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cdd)) -> new_esEs15(xuu40000, xuu3000, cdd) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(ty_Maybe, bca)) -> new_ltEs8(xuu47001, xuu48001, bca) 30.13/12.46 new_primMulNat0(Succ(xuu4000100), Zero) -> Zero 30.13/12.46 new_primMulNat0(Zero, Succ(xuu300000)) -> Zero 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(app(ty_Either, bfh), bga)) -> new_esEs6(xuu40000, xuu3000, bfh, bga) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(app(ty_Either, bcf), bcg)) -> new_ltEs13(xuu47001, xuu48001, bcf, bcg) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs5(xuu40000, xuu3000, cgc, cgd, cge) 30.13/12.46 new_primPlusNat1(Succ(xuu1410), xuu300000) -> Succ(Succ(new_primPlusNat0(xuu1410, xuu300000))) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Ratio, ddh), he) -> new_ltEs16(xuu47000, xuu48000, ddh) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.46 new_primCmpNat0(Zero, xuu4700) -> LT 30.13/12.46 new_primPlusNat0(Succ(xuu50200), Zero) -> Succ(xuu50200) 30.13/12.46 new_primPlusNat0(Zero, Succ(xuu13200)) -> Succ(xuu13200) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cfe), cff), ced) -> new_esEs7(xuu40000, xuu3000, cfe, cff) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_@0, he) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Integer) -> new_ltEs14(xuu47001, xuu48001) 30.13/12.46 new_primPlusNat1(Zero, xuu300000) -> Succ(xuu300000) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.46 new_esEs8(LT, LT) -> True 30.13/12.46 new_compare25(xuu47000, xuu48000, False) -> new_compare16(xuu47000, xuu48000, new_ltEs10(xuu47000, xuu48000)) 30.13/12.46 new_compare19(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(ty_Ratio, bhc)) -> new_esEs15(xuu47001, xuu48001, bhc) 30.13/12.46 new_compare6(xuu47000, xuu48000, fd, ff) -> new_compare27(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(ty_Maybe, bfg)) -> new_esEs4(xuu40000, xuu3000, bfg) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_[], baa), he) -> new_ltEs5(xuu47000, xuu48000, baa) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(ty_Ratio, bhe)) -> new_esEs15(xuu47000, xuu48000, bhe) 30.13/12.46 new_ltEs10(False, True) -> True 30.13/12.46 new_lt9(xuu47000, xuu48000, app(app(ty_Either, fd), ff)) -> new_lt4(xuu47000, xuu48000, fd, ff) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs14(xuu40002, xuu3002) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Ordering) -> new_ltEs17(xuu47001, xuu48001) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Ratio, cec)) -> new_ltEs16(xuu47000, xuu48000, cec) 30.13/12.46 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(ty_[], cgg)) -> new_esEs9(xuu40000, xuu3000, cgg) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(ty_Maybe, eg)) -> new_esEs4(xuu47000, xuu48000, eg) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Int) -> new_esEs13(xuu47001, xuu48001) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Integer, he) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_[], bd)) -> new_ltEs5(xuu47000, xuu48000, bd) 30.13/12.46 new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Char) -> new_ltEs15(xuu47001, xuu48001) 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(app(ty_@2, ccc), ccd)) -> new_esEs7(xuu40001, xuu3001, ccc, ccd) 30.13/12.46 new_compare8(xuu47000, xuu48000) -> new_compare25(xuu47000, xuu48000, new_esEs17(xuu47000, xuu48000)) 30.13/12.46 new_lt16(xuu47000, xuu48000) -> new_esEs8(new_compare19(xuu47000, xuu48000), LT) 30.13/12.46 new_lt20(xuu47000, xuu48000, app(ty_Maybe, bdb)) -> new_lt10(xuu47000, xuu48000, bdb) 30.13/12.46 new_lt20(xuu47000, xuu48000, app(ty_Ratio, bhe)) -> new_lt17(xuu47000, xuu48000, bhe) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(app(ty_@2, cgh), cha)) -> new_esEs7(xuu40000, xuu3000, cgh, cha) 30.13/12.46 new_ltEs16(xuu4700, xuu4800, cea) -> new_fsEs(new_compare15(xuu4700, xuu4800, cea)) 30.13/12.46 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare19(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs5(xuu40000, xuu3000, bgb, bgc, bgd) 30.13/12.46 new_ltEs17(EQ, EQ) -> True 30.13/12.46 new_compare31(xuu47000, xuu48000, app(app(ty_@2, ha), hb)) -> new_compare29(xuu47000, xuu48000, ha, hb) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.46 new_primCmpNat2(xuu4700, Zero) -> GT 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Maybe, ccf)) -> new_esEs4(xuu40000, xuu3000, ccf) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.46 new_lt19(xuu47000, xuu48000, fg, fh) -> new_esEs8(new_compare29(xuu47000, xuu48000, fg, fh), LT) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu47000, xuu48000, bdh, bea) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(ty_[], cah)) -> new_esEs9(xuu40000, xuu3000, cah) 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(ty_[], bgf)) -> new_esEs9(xuu40000, xuu3000, bgf) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu47000, xuu48000, fd, ff) 30.13/12.46 new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) 30.13/12.46 new_ltEs17(GT, LT) -> False 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_ltEs17(EQ, LT) -> False 30.13/12.46 new_compare16(xuu47000, xuu48000, True) -> LT 30.13/12.46 new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.46 new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(ty_Maybe, caa)) -> new_esEs4(xuu40000, xuu3000, caa) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(app(ty_Either, cga), cgb)) -> new_esEs6(xuu40000, xuu3000, cga, cgb) 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dac)) -> new_esEs15(xuu40000, xuu3000, dac) 30.13/12.46 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bhg, bhh) -> new_asAs(new_esEs24(xuu40000, xuu3000, bhg), new_esEs25(xuu40001, xuu3001, bhh)) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_compare31(xuu47000, xuu48000, app(ty_[], gf)) -> new_compare0(xuu47000, xuu48000, gf) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.46 new_compare10(xuu47000, xuu48000, False, eh, fa, fb) -> GT 30.13/12.46 new_primCmpNat1(Succ(xuu47000), Zero) -> GT 30.13/12.46 new_esEs22(xuu47001, xuu48001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xuu47001, xuu48001, dg, dh, ea) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Char) -> new_ltEs15(xuu47002, xuu48002) 30.13/12.46 new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare17(xuu4700, xuu4800)) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.46 new_esEs9(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bff) -> new_asAs(new_esEs10(xuu40000, xuu3000, bff), new_esEs9(xuu40001, xuu3001, bff)) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Float) -> new_compare17(xuu47000, xuu48000) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_Either, ccg), cch)) -> new_esEs6(xuu40000, xuu3000, ccg, cch) 30.13/12.46 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Integer) -> new_ltEs14(xuu47002, xuu48002) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_lt9(xuu47000, xuu48000, app(ty_Ratio, bhb)) -> new_lt17(xuu47000, xuu48000, bhb) 30.13/12.46 new_compare0([], :(xuu48000, xuu48001), ga) -> LT 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Char) -> new_lt7(xuu47001, xuu48001) 30.13/12.46 new_asAs(True, xuu172) -> xuu172 30.13/12.46 new_esEs17(False, True) -> False 30.13/12.46 new_esEs17(True, False) -> False 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(ty_[], ccb)) -> new_esEs9(xuu40001, xuu3001, ccb) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Double) -> new_compare7(xuu47000, xuu48000) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(app(ty_Either, ec), ed)) -> new_lt4(xuu47001, xuu48001, ec, ed) 30.13/12.46 new_esEs6(Left(xuu40000), Right(xuu3000), cfg, ced) -> False 30.13/12.46 new_esEs6(Right(xuu40000), Left(xuu3000), cfg, ced) -> False 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(app(ty_Either, bbd), bbe)) -> new_ltEs13(xuu47000, xuu48000, bbd, bbe) 30.13/12.46 new_esEs16(@0, @0) -> True 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(app(ty_@2, bbf), bbg)) -> new_ltEs18(xuu47000, xuu48000, bbf, bbg) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(ty_Ratio, bhb)) -> new_esEs15(xuu47000, xuu48000, bhb) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.46 new_compare111(xuu177, xuu178, False, ddd, dde) -> GT 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, ced) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.46 new_esEs24(xuu40000, xuu3000, app(app(ty_@2, cba), cbb)) -> new_esEs7(xuu40000, xuu3000, cba, cbb) 30.13/12.46 new_compare30(xuu47000, xuu48000, eg) -> new_compare210(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.46 new_esEs18(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.46 new_primCompAux00(xuu228, EQ) -> xuu228 30.13/12.46 new_compare0([], [], ga) -> EQ 30.13/12.46 new_compare210(xuu47000, xuu48000, False, eg) -> new_compare12(xuu47000, xuu48000, new_ltEs8(xuu47000, xuu48000, eg), eg) 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_primMulNat0(Zero, Zero) -> Zero 30.13/12.46 new_ltEs10(True, True) -> True 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.46 new_esEs10(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cee), ced) -> new_esEs4(xuu40000, xuu3000, cee) 30.13/12.46 new_primCmpNat1(Zero, Zero) -> EQ 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, chf), chg)) -> new_esEs6(xuu40000, xuu3000, chf, chg) 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, dca)) -> new_esEs4(xuu40002, xuu3002, dca) 30.13/12.46 new_esEs23(xuu47000, xuu48000, app(app(ty_@2, beb), bec)) -> new_esEs7(xuu47000, xuu48000, beb, bec) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(ty_[], fc)) -> new_esEs9(xuu47000, xuu48000, fc) 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.46 new_lt15(xuu47000, xuu48000) -> new_esEs8(new_compare14(xuu47000, xuu48000), LT) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_[], cde)) -> new_esEs9(xuu40000, xuu3000, cde) 30.13/12.46 new_esEs4(Nothing, Nothing, cce) -> True 30.13/12.46 new_compare23(xuu47000, xuu48000, False, eh, fa, fb) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_@0) -> new_compare14(xuu47000, xuu48000) 30.13/12.46 new_esEs4(Nothing, Just(xuu3000), cce) -> False 30.13/12.46 new_esEs4(Just(xuu40000), Nothing, cce) -> False 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(app(app(ty_@3, dg), dh), ea)) -> new_lt12(xuu47001, xuu48001, dg, dh, ea) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bg), bh)) -> new_ltEs18(xuu47000, xuu48000, bg, bh) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, app(ty_Maybe, cfh)) -> new_esEs4(xuu40000, xuu3000, cfh) 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(app(ty_Either, cbd), cbe)) -> new_esEs6(xuu40001, xuu3001, cbd, cbe) 30.13/12.46 new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare14(xuu4700, xuu4800)) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs12(xuu40002, xuu3002) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(ty_Maybe, bee)) -> new_ltEs8(xuu4700, xuu4800, bee) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Int, he) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Maybe, h)) -> new_ltEs8(xuu47000, xuu48000, h) 30.13/12.46 new_lt5(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) 30.13/12.46 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.13/12.46 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.46 new_ltEs8(Nothing, Just(xuu48000), cdh) -> True 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_Either, be), bf)) -> new_ltEs13(xuu47000, xuu48000, be, bf) 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Char) -> new_esEs11(xuu47001, xuu48001) 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.46 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.46 new_lt9(xuu47000, xuu48000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt12(xuu47000, xuu48000, eh, fa, fb) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(app(ty_@2, bfd), bfe)) -> new_ltEs18(xuu4700, xuu4800, bfd, bfe) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Bool) -> new_compare8(xuu47000, xuu48000) 30.13/12.46 new_compare24(xuu47000, xuu48000, True) -> EQ 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dda), ddb)) -> new_esEs7(xuu40002, xuu3002, dda, ddb) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.46 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.13/12.46 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(ty_Ratio, cca)) -> new_esEs15(xuu40001, xuu3001, cca) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(app(ty_Either, bfb), bfc)) -> new_ltEs13(xuu4700, xuu4800, bfb, bfc) 30.13/12.46 new_esEs15(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bha) -> new_asAs(new_esEs19(xuu40000, xuu3000, bha), new_esEs20(xuu40001, xuu3001, bha)) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.13/12.46 new_esEs17(True, True) -> True 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Float) -> new_ltEs9(xuu47001, xuu48001) 30.13/12.46 new_compare12(xuu47000, xuu48000, True, eg) -> LT 30.13/12.46 new_ltEs18(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, bdc) -> new_pePe(new_lt20(xuu47000, xuu48000, bbh), new_asAs(new_esEs23(xuu47000, xuu48000, bbh), new_ltEs19(xuu47001, xuu48001, bdc))) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.46 new_compare112(xuu184, xuu185, False, ddf, ddg) -> GT 30.13/12.46 new_compare23(xuu47000, xuu48000, True, eh, fa, fb) -> EQ 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(ty_Ratio, bhc)) -> new_lt17(xuu47001, xuu48001, bhc) 30.13/12.46 new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.46 new_not(False) -> True 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.46 new_lt9(xuu47000, xuu48000, app(ty_Maybe, eg)) -> new_lt10(xuu47000, xuu48000, eg) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Double, he) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) 30.13/12.46 new_compare0(:(xuu47000, xuu47001), [], ga) -> GT 30.13/12.46 new_esEs8(LT, GT) -> False 30.13/12.46 new_esEs8(GT, LT) -> False 30.13/12.46 new_compare27(Right(xuu4700), Right(xuu4800), False, bed, hc) -> new_compare112(xuu4700, xuu4800, new_ltEs21(xuu4700, xuu4800, hc), bed, hc) 30.13/12.46 new_primPlusNat0(Succ(xuu50200), Succ(xuu13200)) -> Succ(Succ(new_primPlusNat0(xuu50200, xuu13200))) 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dbe)) -> new_esEs15(xuu40001, xuu3001, dbe) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cfd), ced) -> new_esEs9(xuu40000, xuu3000, cfd) 30.13/12.46 new_esEs14(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.46 new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs5(xuu40002, xuu3002, dcd, dce, dcf) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.46 new_compare25(xuu47000, xuu48000, True) -> EQ 30.13/12.46 new_compare27(xuu470, xuu480, True, bed, hc) -> EQ 30.13/12.46 new_compare13(xuu47000, xuu48000, True) -> LT 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, ced) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_compare11(xuu47000, xuu48000, eh, fa, fb) -> new_compare23(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(ty_[], bfa)) -> new_ltEs5(xuu4700, xuu4800, bfa) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Char) -> new_compare9(xuu47000, xuu48000) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Double) -> new_lt5(xuu47001, xuu48001) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, ced) -> new_esEs14(xuu40000, xuu3000) 30.13/12.46 new_esEs6(Right(xuu40000), Right(xuu3000), cfg, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.46 new_primCmpNat1(Zero, Succ(xuu48000)) -> LT 30.13/12.46 new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Bool) -> new_ltEs10(xuu47002, xuu48002) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, app(app(ty_@2, bch), bda)) -> new_ltEs18(xuu47001, xuu48001, bch, bda) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.13/12.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.13/12.46 new_esEs22(xuu47001, xuu48001, ty_Integer) -> new_esEs12(xuu47001, xuu48001) 30.13/12.46 new_compare9(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.46 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.46 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(ty_Ratio, dea)) -> new_ltEs16(xuu47000, xuu48000, dea) 30.13/12.46 new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_primCompAux0(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.46 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.46 new_compare31(xuu47000, xuu48000, app(ty_Ratio, ddc)) -> new_compare15(xuu47000, xuu48000, ddc) 30.13/12.46 new_ltEs11(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) 30.13/12.46 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.46 new_esEs10(xuu40000, xuu3000, app(app(ty_@2, bgg), bgh)) -> new_esEs7(xuu40000, xuu3000, bgg, bgh) 30.13/12.46 new_ltEs17(GT, EQ) -> False 30.13/12.46 new_compare27(Left(xuu4700), Left(xuu4800), False, bed, hc) -> new_compare111(xuu4700, xuu4800, new_ltEs20(xuu4700, xuu4800, bed), bed, hc) 30.13/12.46 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(ty_[], dch)) -> new_esEs9(xuu40002, xuu3002, dch) 30.13/12.46 new_esEs25(xuu40001, xuu3001, app(ty_Maybe, cbc)) -> new_esEs4(xuu40001, xuu3001, cbc) 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dah), dba)) -> new_esEs6(xuu40001, xuu3001, dah, dba) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs6(xuu4700, xuu4800, bef, beg, beh) 30.13/12.46 new_lt8(xuu47001, xuu48001, app(app(ty_@2, ee), ef)) -> new_lt19(xuu47001, xuu48001, ee, ef) 30.13/12.46 new_esEs21(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Bool, he) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.46 new_esEs17(False, False) -> True 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, app(ty_[], bbc)) -> new_ltEs5(xuu47000, xuu48000, bbc) 30.13/12.46 new_lt9(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.46 new_ltEs15(xuu4700, xuu4800) -> new_fsEs(new_compare9(xuu4700, xuu4800)) 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(xuu40000, xuu3000, chh, daa, dab) 30.13/12.46 new_esEs21(xuu47000, xuu48000, app(app(ty_@2, fg), fh)) -> new_esEs7(xuu47000, xuu48000, fg, fh) 30.13/12.46 new_ltEs7(xuu47002, xuu48002, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs6(xuu47002, xuu48002, cd, ce, cf) 30.13/12.46 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.46 new_ltEs8(Nothing, Nothing, cdh) -> True 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dag)) -> new_esEs4(xuu40001, xuu3001, dag) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 30.13/12.46 new_ltEs8(Just(xuu47000), Nothing, cdh) -> False 30.13/12.46 new_lt9(xuu47000, xuu48000, app(app(ty_@2, fg), fh)) -> new_lt19(xuu47000, xuu48000, fg, fh) 30.13/12.46 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cdf), cdg)) -> new_esEs7(xuu40000, xuu3000, cdf, cdg) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, app(ty_Ratio, ceb)) -> new_ltEs16(xuu4700, xuu4800, ceb) 30.13/12.46 new_ltEs21(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.46 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_@2, bad), bae), he) -> new_ltEs18(xuu47000, xuu48000, bad, bae) 30.13/12.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.13/12.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.13/12.46 new_esEs9([], [], bff) -> True 30.13/12.46 new_ltEs17(GT, GT) -> True 30.13/12.46 new_ltEs7(xuu47002, xuu48002, ty_Double) -> new_ltEs4(xuu47002, xuu48002) 30.13/12.46 new_ltEs5(xuu4700, xuu4800, ga) -> new_fsEs(new_compare0(xuu4700, xuu4800, ga)) 30.13/12.46 new_compare110(xuu47000, xuu48000, False, fg, fh) -> GT 30.13/12.46 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.46 new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, ced) -> new_esEs16(xuu40000, xuu3000) 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, dcb), dcc)) -> new_esEs6(xuu40002, xuu3002, dcb, dcc) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.46 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, che)) -> new_esEs4(xuu40000, xuu3000, che) 30.13/12.46 new_esEs24(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.46 new_primEqNat0(Zero, Zero) -> True 30.13/12.46 new_compare26(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) 30.13/12.46 new_compare13(xuu47000, xuu48000, False) -> GT 30.13/12.46 new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdh), bea)) -> new_lt4(xuu47000, xuu48000, bdh, bea) 30.13/12.46 new_ltEs19(xuu47001, xuu48001, ty_Bool) -> new_ltEs10(xuu47001, xuu48001) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(ty_[], ga)) -> new_ltEs5(xuu4700, xuu4800, ga) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, app(ty_Ratio, cea)) -> new_ltEs16(xuu4700, xuu4800, cea) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Ordering) -> new_compare26(xuu47000, xuu48000) 30.13/12.46 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.46 new_compare31(xuu47000, xuu48000, app(ty_Maybe, gb)) -> new_compare30(xuu47000, xuu48000, gb) 30.13/12.46 new_asAs(False, xuu172) -> False 30.13/12.46 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, dcg)) -> new_esEs15(xuu40002, xuu3002, dcg) 30.13/12.46 new_compare31(xuu47000, xuu48000, ty_Integer) -> new_compare19(xuu47000, xuu48000) 30.13/12.46 new_esEs25(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.46 new_compare28(xuu47000, xuu48000, True, fg, fh) -> EQ 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.46 new_ltEs20(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.46 new_esEs8(EQ, GT) -> False 30.13/12.46 new_esEs8(GT, EQ) -> False 30.13/12.46 new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) 30.13/12.46 new_ltEs13(Right(xuu47000), Right(xuu48000), baf, ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.46 new_lt8(xuu47001, xuu48001, ty_Int) -> new_lt13(xuu47001, xuu48001) 30.13/12.46 new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.46 new_compare28(xuu47000, xuu48000, False, fg, fh) -> new_compare110(xuu47000, xuu48000, new_ltEs18(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.46 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(xuu40001, xuu3001, dbb, dbc, dbd) 30.13/12.46 30.13/12.46 The set Q consists of the following terms: 30.13/12.46 30.13/12.46 new_esEs21(x0, x1, ty_Bool) 30.13/12.46 new_esEs22(x0, x1, ty_Integer) 30.13/12.46 new_esEs27(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs8(EQ, EQ) 30.13/12.46 new_esEs23(x0, x1, ty_@0) 30.13/12.46 new_esEs27(x0, x1, ty_Ordering) 30.13/12.46 new_ltEs20(x0, x1, ty_Double) 30.13/12.46 new_compare27(Left(x0), Right(x1), False, x2, x3) 30.13/12.46 new_compare27(Right(x0), Left(x1), False, x2, x3) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 30.13/12.46 new_ltEs17(EQ, EQ) 30.13/12.46 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.46 new_esEs23(x0, x1, ty_Bool) 30.13/12.46 new_esEs25(x0, x1, ty_Ordering) 30.13/12.46 new_esEs21(x0, x1, ty_@0) 30.13/12.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs28(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs26(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_ltEs21(x0, x1, ty_Float) 30.13/12.46 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs27(x0, x1, ty_Double) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.46 new_esEs28(x0, x1, ty_Char) 30.13/12.46 new_compare31(x0, x1, app(ty_[], x2)) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 30.13/12.46 new_primCmpNat1(Zero, Zero) 30.13/12.46 new_primPlusNat1(Zero, x0) 30.13/12.46 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_esEs4(Nothing, Nothing, x0) 30.13/12.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.13/12.46 new_lt19(x0, x1, x2, x3) 30.13/12.46 new_compare18(x0, x1) 30.13/12.46 new_esEs24(x0, x1, app(ty_[], x2)) 30.13/12.46 new_ltEs19(x0, x1, ty_Int) 30.13/12.46 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs25(x0, x1, ty_Char) 30.13/12.46 new_primEqInt(Pos(Zero), Pos(Zero)) 30.13/12.46 new_esEs24(x0, x1, ty_Ordering) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.46 new_primPlusNat0(Succ(x0), Zero) 30.13/12.46 new_esEs22(x0, x1, ty_Bool) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Float) 30.13/12.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 30.13/12.46 new_esEs25(x0, x1, ty_Double) 30.13/12.46 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.46 new_esEs17(False, False) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Integer) 30.13/12.46 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_compare8(x0, x1) 30.13/12.46 new_compare0([], :(x0, x1), x2) 30.13/12.46 new_lt9(x0, x1, ty_Float) 30.13/12.46 new_ltEs19(x0, x1, ty_Char) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.46 new_esEs24(x0, x1, ty_Double) 30.13/12.46 new_esEs25(x0, x1, ty_Int) 30.13/12.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.13/12.46 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_primEqInt(Neg(Zero), Neg(Zero)) 30.13/12.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_ltEs7(x0, x1, app(ty_[], x2)) 30.13/12.46 new_compare110(x0, x1, True, x2, x3) 30.13/12.46 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_primCompAux00(x0, EQ) 30.13/12.46 new_ltEs12(x0, x1) 30.13/12.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.46 new_esEs23(x0, x1, ty_Char) 30.13/12.46 new_ltEs20(x0, x1, ty_Char) 30.13/12.46 new_ltEs19(x0, x1, ty_Bool) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 30.13/12.46 new_primPlusNat0(Succ(x0), Succ(x1)) 30.13/12.46 new_compare31(x0, x1, ty_Bool) 30.13/12.46 new_compare28(x0, x1, False, x2, x3) 30.13/12.46 new_ltEs4(x0, x1) 30.13/12.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.13/12.46 new_ltEs19(x0, x1, ty_Ordering) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.46 new_compare23(x0, x1, True, x2, x3, x4) 30.13/12.46 new_compare31(x0, x1, ty_Double) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 30.13/12.46 new_esEs24(x0, x1, ty_Int) 30.13/12.46 new_esEs10(x0, x1, ty_Ordering) 30.13/12.46 new_esEs12(Integer(x0), Integer(x1)) 30.13/12.46 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 30.13/12.46 new_esEs27(x0, x1, ty_Char) 30.13/12.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.13/12.46 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs23(x0, x1, ty_Integer) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 30.13/12.46 new_compare31(x0, x1, ty_@0) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.46 new_lt20(x0, x1, ty_@0) 30.13/12.46 new_ltEs21(x0, x1, ty_Integer) 30.13/12.46 new_esEs22(x0, x1, ty_Float) 30.13/12.46 new_lt20(x0, x1, ty_Bool) 30.13/12.46 new_esEs21(x0, x1, ty_Integer) 30.13/12.46 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.13/12.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.13/12.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.46 new_ltEs10(False, False) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.46 new_compare24(x0, x1, False) 30.13/12.46 new_primMulNat0(Zero, Succ(x0)) 30.13/12.46 new_compare31(x0, x1, ty_Int) 30.13/12.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs21(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs4(Just(x0), Just(x1), ty_Double) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_ltEs7(x0, x1, ty_Double) 30.13/12.46 new_primEqInt(Pos(Zero), Neg(Zero)) 30.13/12.46 new_primEqInt(Neg(Zero), Pos(Zero)) 30.13/12.46 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_esEs27(x0, x1, ty_Int) 30.13/12.46 new_ltEs19(x0, x1, ty_Integer) 30.13/12.46 new_esEs26(x0, x1, ty_Ordering) 30.13/12.46 new_lt18(x0, x1) 30.13/12.46 new_compare27(Right(x0), Right(x1), False, x2, x3) 30.13/12.46 new_ltEs20(x0, x1, ty_Int) 30.13/12.46 new_lt20(x0, x1, ty_Int) 30.13/12.46 new_lt9(x0, x1, ty_Bool) 30.13/12.46 new_compare31(x0, x1, ty_Char) 30.13/12.46 new_compare0(:(x0, x1), :(x2, x3), x4) 30.13/12.46 new_esEs9(:(x0, x1), :(x2, x3), x4) 30.13/12.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.13/12.46 new_esEs27(x0, x1, ty_@0) 30.13/12.46 new_primCmpNat0(Zero, x0) 30.13/12.46 new_primMulInt(Neg(x0), Neg(x1)) 30.13/12.46 new_lt20(x0, x1, ty_Double) 30.13/12.46 new_esEs22(x0, x1, ty_@0) 30.13/12.46 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.46 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_compare13(x0, x1, False) 30.13/12.46 new_lt8(x0, x1, ty_Float) 30.13/12.46 new_esEs28(x0, x1, ty_Ordering) 30.13/12.46 new_lt20(x0, x1, ty_Char) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.46 new_lt11(x0, x1) 30.13/12.46 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_sr(Integer(x0), Integer(x1)) 30.13/12.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.46 new_ltEs20(x0, x1, ty_@0) 30.13/12.46 new_esEs20(x0, x1, ty_Integer) 30.13/12.46 new_lt6(x0, x1) 30.13/12.46 new_esEs23(x0, x1, ty_Float) 30.13/12.46 new_esEs21(x0, x1, ty_Double) 30.13/12.46 new_esEs10(x0, x1, ty_Char) 30.13/12.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_esEs27(x0, x1, ty_Bool) 30.13/12.46 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.46 new_esEs28(x0, x1, ty_Integer) 30.13/12.46 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs22(x0, x1, ty_Char) 30.13/12.46 new_esEs25(x0, x1, ty_Bool) 30.13/12.46 new_ltEs21(x0, x1, ty_Bool) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.46 new_ltEs7(x0, x1, ty_Ordering) 30.13/12.46 new_compare10(x0, x1, False, x2, x3, x4) 30.13/12.46 new_ltEs21(x0, x1, app(ty_[], x2)) 30.13/12.46 new_primCompAux00(x0, GT) 30.13/12.46 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.46 new_compare27(x0, x1, True, x2, x3) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.46 new_esEs24(x0, x1, ty_Bool) 30.13/12.46 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_esEs10(x0, x1, ty_Int) 30.13/12.46 new_lt5(x0, x1) 30.13/12.46 new_esEs4(Just(x0), Just(x1), ty_Float) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.46 new_lt8(x0, x1, ty_Bool) 30.13/12.46 new_lt20(x0, x1, ty_Integer) 30.13/12.46 new_lt16(x0, x1) 30.13/12.46 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_primCmpNat1(Succ(x0), Succ(x1)) 30.13/12.46 new_ltEs8(Just(x0), Nothing, x1) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs28(x0, x1, ty_Bool) 30.13/12.46 new_esEs13(x0, x1) 30.13/12.46 new_compare19(Integer(x0), Integer(x1)) 30.13/12.46 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.46 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_compare112(x0, x1, False, x2, x3) 30.13/12.46 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 30.13/12.46 new_esEs23(x0, x1, ty_Int) 30.13/12.46 new_ltEs19(x0, x1, ty_Double) 30.13/12.46 new_primEqNat0(Zero, Succ(x0)) 30.13/12.46 new_compare9(Char(x0), Char(x1)) 30.13/12.46 new_esEs24(x0, x1, ty_Char) 30.13/12.46 new_esEs8(GT, GT) 30.13/12.46 new_esEs8(LT, EQ) 30.13/12.46 new_esEs8(EQ, LT) 30.13/12.46 new_compare31(x0, x1, ty_Integer) 30.13/12.46 new_lt4(x0, x1, x2, x3) 30.13/12.46 new_esEs10(x0, x1, ty_Float) 30.13/12.46 new_ltEs17(LT, LT) 30.13/12.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.13/12.46 new_compare31(x0, x1, ty_Ordering) 30.13/12.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs24(x0, x1, ty_Integer) 30.13/12.46 new_esEs10(x0, x1, ty_Bool) 30.13/12.46 new_lt20(x0, x1, ty_Ordering) 30.13/12.46 new_primCmpNat2(x0, Zero) 30.13/12.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_compare23(x0, x1, False, x2, x3, x4) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Int) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.46 new_esEs8(LT, LT) 30.13/12.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.13/12.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.13/12.46 new_primCmpNat0(Succ(x0), x1) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.46 new_ltEs8(Nothing, Just(x0), x1) 30.13/12.46 new_compare210(x0, x1, False, x2) 30.13/12.46 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_ltEs19(x0, x1, ty_@0) 30.13/12.46 new_lt8(x0, x1, app(ty_[], x2)) 30.13/12.46 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_compare11(x0, x1, x2, x3, x4) 30.13/12.46 new_esEs22(x0, x1, ty_Ordering) 30.13/12.46 new_primCompAux0(x0, x1, x2, x3) 30.13/12.46 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_ltEs17(GT, GT) 30.13/12.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.46 new_primEqNat0(Succ(x0), Zero) 30.13/12.46 new_compare25(x0, x1, False) 30.13/12.46 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.13/12.46 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.13/12.46 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.46 new_esEs27(x0, x1, ty_Integer) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Char) 30.13/12.46 new_primMulNat0(Succ(x0), Succ(x1)) 30.13/12.46 new_esEs26(x0, x1, ty_Double) 30.13/12.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_compare6(x0, x1, x2, x3) 30.13/12.46 new_primCmpNat1(Succ(x0), Zero) 30.13/12.46 new_lt8(x0, x1, ty_Ordering) 30.13/12.46 new_ltEs14(x0, x1) 30.13/12.46 new_esEs28(x0, x1, ty_Float) 30.13/12.46 new_lt9(x0, x1, app(ty_[], x2)) 30.13/12.46 new_compare12(x0, x1, False, x2) 30.13/12.46 new_esEs10(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs22(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs20(x0, x1, ty_Int) 30.13/12.46 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.46 new_compare30(x0, x1, x2) 30.13/12.46 new_esEs26(x0, x1, ty_@0) 30.13/12.46 new_esEs28(x0, x1, ty_Int) 30.13/12.46 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.46 new_esEs16(@0, @0) 30.13/12.46 new_esEs9([], [], x0) 30.13/12.46 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 30.13/12.46 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_lt8(x0, x1, ty_Integer) 30.13/12.46 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 30.13/12.46 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_ltEs17(LT, EQ) 30.13/12.46 new_ltEs17(EQ, LT) 30.13/12.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_primPlusNat1(Succ(x0), x1) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Bool) 30.13/12.46 new_pePe(False, x0) 30.13/12.46 new_compare14(@0, @0) 30.13/12.46 new_lt8(x0, x1, ty_Int) 30.13/12.46 new_ltEs13(Left(x0), Right(x1), x2, x3) 30.13/12.46 new_ltEs13(Right(x0), Left(x1), x2, x3) 30.13/12.46 new_compare29(x0, x1, x2, x3) 30.13/12.46 new_esEs27(x0, x1, ty_Float) 30.13/12.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.46 new_ltEs20(x0, x1, ty_Float) 30.13/12.46 new_lt9(x0, x1, ty_Double) 30.13/12.46 new_ltEs21(x0, x1, ty_Double) 30.13/12.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_compare10(x0, x1, True, x2, x3, x4) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.46 new_lt8(x0, x1, ty_Char) 30.13/12.46 new_primMulNat0(Zero, Zero) 30.13/12.46 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs25(x0, x1, ty_Float) 30.13/12.46 new_esEs24(x0, x1, ty_Float) 30.13/12.46 new_lt9(x0, x1, ty_Ordering) 30.13/12.46 new_esEs4(Just(x0), Just(x1), ty_Bool) 30.13/12.46 new_esEs6(Left(x0), Right(x1), x2, x3) 30.13/12.46 new_esEs6(Right(x0), Left(x1), x2, x3) 30.13/12.46 new_esEs4(Just(x0), Nothing, x1) 30.13/12.46 new_primPlusNat0(Zero, Succ(x0)) 30.13/12.46 new_esEs4(Just(x0), Just(x1), ty_Integer) 30.13/12.46 new_lt14(x0, x1, x2) 30.13/12.46 new_esEs17(True, True) 30.13/12.46 new_ltEs8(Nothing, Nothing, x0) 30.13/12.46 new_compare25(x0, x1, True) 30.13/12.46 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.13/12.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_ltEs5(x0, x1, x2) 30.13/12.46 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.13/12.46 new_ltEs21(x0, x1, ty_Ordering) 30.13/12.46 new_ltEs10(True, False) 30.13/12.46 new_ltEs10(False, True) 30.13/12.46 new_compare13(x0, x1, True) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 30.13/12.46 new_ltEs7(x0, x1, ty_@0) 30.13/12.46 new_lt8(x0, x1, ty_Double) 30.13/12.46 new_compare111(x0, x1, True, x2, x3) 30.13/12.46 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_ltEs21(x0, x1, ty_Int) 30.13/12.46 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 30.13/12.46 new_compare12(x0, x1, True, x2) 30.13/12.46 new_primCmpNat1(Zero, Succ(x0)) 30.13/12.46 new_esEs23(x0, x1, app(ty_[], x2)) 30.13/12.46 new_esEs18(Float(x0, x1), Float(x2, x3)) 30.13/12.46 new_ltEs15(x0, x1) 30.13/12.46 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 30.13/12.46 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.46 new_esEs10(x0, x1, ty_Integer) 30.13/12.46 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.46 new_primPlusNat0(Zero, Zero) 30.13/12.46 new_ltEs7(x0, x1, ty_Integer) 30.13/12.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.13/12.46 new_not(True) 30.13/12.46 new_primMulNat0(Succ(x0), Zero) 30.13/12.46 new_ltEs21(x0, x1, ty_Char) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.46 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_lt20(x0, x1, ty_Float) 30.13/12.46 new_esEs8(EQ, GT) 30.13/12.46 new_esEs8(GT, EQ) 30.13/12.46 new_lt9(x0, x1, ty_Char) 30.13/12.46 new_esEs9(:(x0, x1), [], x2) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.46 new_lt9(x0, x1, ty_Int) 30.13/12.46 new_asAs(True, x0) 30.13/12.46 new_ltEs19(x0, x1, app(ty_[], x2)) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.46 new_esEs26(x0, x1, ty_Integer) 30.13/12.46 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_compare28(x0, x1, True, x2, x3) 30.13/12.46 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_lt20(x0, x1, app(ty_[], x2)) 30.13/12.46 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 30.13/12.46 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.46 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.46 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.46 new_esEs17(False, True) 30.13/12.46 new_esEs17(True, False) 30.13/12.47 new_primEqNat0(Succ(x0), Succ(x1)) 30.13/12.47 new_ltEs7(x0, x1, ty_Bool) 30.13/12.47 new_compare16(x0, x1, False) 30.13/12.47 new_lt15(x0, x1) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_@0) 30.13/12.47 new_ltEs7(x0, x1, ty_Char) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Char) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 30.13/12.47 new_esEs22(x0, x1, ty_Double) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 30.13/12.47 new_primCompAux00(x0, LT) 30.13/12.47 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_lt8(x0, x1, ty_@0) 30.13/12.47 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs11(Char(x0), Char(x1)) 30.13/12.47 new_esEs22(x0, x1, ty_Int) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 30.13/12.47 new_lt10(x0, x1, x2) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Int) 30.13/12.47 new_compare0([], [], x0) 30.13/12.47 new_compare26(x0, x1) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.13/12.47 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 30.13/12.47 new_pePe(True, x0) 30.13/12.47 new_ltEs20(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.47 new_lt9(x0, x1, ty_@0) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.47 new_primMulInt(Pos(x0), Pos(x1)) 30.13/12.47 new_esEs24(x0, x1, ty_@0) 30.13/12.47 new_compare110(x0, x1, False, x2, x3) 30.13/12.47 new_ltEs16(x0, x1, x2) 30.13/12.47 new_ltEs21(x0, x1, ty_@0) 30.13/12.47 new_lt7(x0, x1) 30.13/12.47 new_esEs21(x0, x1, ty_Ordering) 30.13/12.47 new_fsEs(x0) 30.13/12.47 new_ltEs17(LT, GT) 30.13/12.47 new_ltEs17(GT, LT) 30.13/12.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_primMulInt(Pos(x0), Neg(x1)) 30.13/12.47 new_primMulInt(Neg(x0), Pos(x1)) 30.13/12.47 new_esEs9([], :(x0, x1), x2) 30.13/12.47 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs25(x0, x1, ty_Integer) 30.13/12.47 new_esEs8(LT, GT) 30.13/12.47 new_esEs8(GT, LT) 30.13/12.47 new_esEs23(x0, x1, ty_Double) 30.13/12.47 new_esEs21(x0, x1, ty_Float) 30.13/12.47 new_ltEs7(x0, x1, ty_Int) 30.13/12.47 new_compare111(x0, x1, False, x2, x3) 30.13/12.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.13/12.47 new_compare27(Left(x0), Left(x1), False, x2, x3) 30.13/12.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs26(x0, x1, ty_Bool) 30.13/12.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.13/12.47 new_esEs25(x0, x1, ty_@0) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_@0) 30.13/12.47 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.47 new_esEs23(x0, x1, ty_Ordering) 30.13/12.47 new_lt12(x0, x1, x2, x3, x4) 30.13/12.47 new_lt13(x0, x1) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.47 new_ltEs20(x0, x1, ty_Bool) 30.13/12.47 new_esEs4(Nothing, Just(x0), x1) 30.13/12.47 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 30.13/12.47 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.13/12.47 new_compare31(x0, x1, ty_Float) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 30.13/12.47 new_lt9(x0, x1, ty_Integer) 30.13/12.47 new_esEs19(x0, x1, ty_Int) 30.13/12.47 new_ltEs7(x0, x1, ty_Float) 30.13/12.47 new_sr0(x0, x1) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.47 new_esEs26(x0, x1, ty_Int) 30.13/12.47 new_primEqNat0(Zero, Zero) 30.13/12.47 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.47 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.47 new_ltEs19(x0, x1, ty_Float) 30.13/12.47 new_primCmpNat2(x0, Succ(x1)) 30.13/12.47 new_not(False) 30.13/12.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.13/12.47 new_esEs10(x0, x1, ty_@0) 30.13/12.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare0(:(x0, x1), [], x2) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.47 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs10(x0, x1, ty_Double) 30.13/12.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_compare210(x0, x1, True, x2) 30.13/12.47 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.47 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 30.13/12.47 new_ltEs17(EQ, GT) 30.13/12.47 new_ltEs17(GT, EQ) 30.13/12.47 new_ltEs11(x0, x1) 30.13/12.47 new_compare16(x0, x1, True) 30.13/12.47 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.47 new_esEs19(x0, x1, ty_Integer) 30.13/12.47 new_esEs28(x0, x1, ty_Double) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.47 new_esEs21(x0, x1, ty_Int) 30.13/12.47 new_esEs26(x0, x1, ty_Float) 30.13/12.47 new_ltEs9(x0, x1) 30.13/12.47 new_lt17(x0, x1, x2) 30.13/12.47 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Double) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.47 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.13/12.47 new_compare24(x0, x1, True) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.47 new_esEs26(x0, x1, ty_Char) 30.13/12.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.47 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_asAs(False, x0) 30.13/12.47 new_esEs25(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs20(x0, x1, ty_Integer) 30.13/12.47 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Ordering) 30.13/12.47 new_esEs21(x0, x1, ty_Char) 30.13/12.47 new_ltEs10(True, True) 30.13/12.47 new_ltEs20(x0, x1, ty_Ordering) 30.13/12.47 new_esEs28(x0, x1, ty_@0) 30.13/12.47 new_compare112(x0, x1, True, x2, x3) 30.13/12.47 30.13/12.47 We have to consider all minimal (P,Q,R)-chains. 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (24) QDPSizeChangeProof (EQUIVALENT) 30.13/12.47 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. 30.13/12.47 30.13/12.47 From the DPs we obtained the following set of size-change graphs: 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_Either, fd), ff), cb, df) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu47001, xuu48001, bcb, bcc, bcd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs0(xuu47002, xuu48002, cd, ce, cf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare3(xuu47000, xuu48000, eh, fa, fb) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_@2, beb), bec), bdc) -> new_lt3(xuu47000, xuu48000, beb, bec) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(ty_@2, ee), ef), df) -> new_lt3(xuu47001, xuu48001, ee, ef) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare22(xuu47000, xuu48000, False, fg, fh) -> new_ltEs3(xuu47000, xuu48000, fg, fh) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_lt2(xuu47000, xuu48000, fd, ff) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(ty_Either, bcf), bcg)) -> new_ltEs2(xuu47001, xuu48001, bcf, bcg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(ty_Either, da), db)) -> new_ltEs2(xuu47002, xuu48002, da, db) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs0(xuu47000, xuu48000, ba, bb, bc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs(Just(xuu47000), Just(xuu48000), app(app(ty_Either, be), bf)) -> new_ltEs2(xuu47000, xuu48000, be, bf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs1(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs1(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(app(ty_@2, bch), bda)) -> new_ltEs3(xuu47001, xuu48001, bch, bda) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu47002, xuu48002, dc, dd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs(Just(xuu47000), Just(xuu48000), app(app(ty_@2, bg), bh)) -> new_ltEs3(xuu47000, xuu48000, bg, bh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), cb), df), hc) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare4(xuu47000, xuu48000, fd, ff) -> new_compare21(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, fd, ff), fd, ff) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(app(ty_@3, eh), fa), fb)), cb), df), hc) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 30.13/12.47 30.13/12.47 30.13/12.47 *new_lt0(xuu47000, xuu48000, eh, fa, fb) -> new_compare20(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, eh, fa, fb), eh, fa, fb) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare20(xuu47000, xuu48000, False, eh, fa, fb) -> new_ltEs0(xuu47000, xuu48000, eh, fa, fb) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], ga), hc) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_primCompAux(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, ga), ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_primCompAux(xuu47000, xuu48000, xuu214, app(app(ty_Either, gg), gh)) -> new_compare4(xuu47000, xuu48000, gg, gh) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_lt3(xuu47000, xuu48000, fg, fh) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare2(xuu47000, xuu48000, False, eg) -> new_ltEs(xuu47000, xuu48000, eg) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_primCompAux(xuu47000, xuu48000, xuu214, app(ty_Maybe, gb)) -> new_compare1(xuu47000, xuu48000, gb) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_lt(xuu47000, xuu48000, eg) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_Maybe, eg), cb, df) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_Maybe, eg)), cb), df), hc) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare1(xuu47000, xuu48000, eg) -> new_compare2(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, eg), eg) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_Maybe, bdb), bdc) -> new_lt(xuu47000, xuu48000, bdb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(ty_Maybe, de), df) -> new_lt(xuu47001, xuu48001, de) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_lt1(xuu47000, xuu48000, fc) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(ty_[], bce)) -> new_ltEs1(xuu47001, xuu48001, bce) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(ty_[], cg)) -> new_ltEs1(xuu47002, xuu48002, cg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs(Just(xuu47000), Just(xuu48000), app(ty_[], bd)) -> new_ltEs1(xuu47000, xuu48000, bd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs(Just(xuu47000), Just(xuu48000), app(ty_Maybe, h)) -> new_ltEs(xuu47000, xuu48000, h) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare(:(xuu47000, xuu47001), :(xuu48000, xuu48001), ga) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_primCompAux(xuu47000, xuu48000, xuu214, app(app(app(ty_@3, gc), gd), ge)) -> new_compare3(xuu47000, xuu48000, gc, gd, ge) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(app(ty_@2, fg), fh), cb, df) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(app(ty_@2, fg), fh)), cb), df), hc) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare5(xuu47000, xuu48000, fg, fh) -> new_compare22(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, fg, fh), fg, fh) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_lt0(xuu47001, xuu48001, dg, dh, ea) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), app(ty_[], fc), cb, df) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_primCompAux(xuu47000, xuu48000, xuu214, app(ty_[], gf)) -> new_compare(xuu47000, xuu48000, gf) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_primCompAux(xuu47000, xuu48000, xuu214, app(app(ty_@2, ha), hb)) -> new_compare5(xuu47000, xuu48000, ha, hb) 30.13/12.47 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bbh, app(ty_Maybe, bca)) -> new_ltEs(xuu47001, xuu48001, bca) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, cb, app(ty_Maybe, cc)) -> new_ltEs(xuu47002, xuu48002, cc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(app(ty_Either, bdh), bea), bdc) -> new_lt2(xuu47000, xuu48000, bdh, bea) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs3(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), app(ty_[], bdg), bdc) -> new_lt1(xuu47000, xuu48000, bdg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(app(ty_Either, ec), ed), df) -> new_lt2(xuu47001, xuu48001, ec, ed) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs0(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), ca, app(ty_[], eb), df) -> new_lt1(xuu47001, xuu48001, eb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, hf), hg), hh), he) -> new_ltEs0(xuu47000, xuu48000, hf, hg, hh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu47000, xuu48000, bah, bba, bbb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(app(ty_@3, cd), ce), cf)), hc) -> new_ltEs0(xuu47002, xuu48002, cd, ce, cf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs0(xuu4700, xuu4800, bef, beg, beh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bcb), bcc), bcd)), hc) -> new_ltEs0(xuu47001, xuu48001, bcb, bcc, bcd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(app(ty_@3, hf), hg), hh)), he), hc) -> new_ltEs0(xuu47000, xuu48000, hf, hg, hh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(app(ty_@3, ba), bb), bc)), hc) -> new_ltEs0(xuu47000, xuu48000, ba, bb, bc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(app(ty_@3, bah), bba), bbb)), hc) -> new_ltEs0(xuu47000, xuu48000, bah, bba, bbb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(ty_Either, bbd), bbe)) -> new_ltEs2(xuu47000, xuu48000, bbd, bbe) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(ty_Either, bab), bac), he) -> new_ltEs2(xuu47000, xuu48000, bab, bac) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(app(ty_@2, bbf), bbg)) -> new_ltEs3(xuu47000, xuu48000, bbf, bbg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Left(xuu47000), Left(xuu48000), app(app(ty_@2, bad), bae), he) -> new_ltEs3(xuu47000, xuu48000, bad, bae) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(ty_[], bbc)) -> new_ltEs1(xuu47000, xuu48000, bbc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Left(xuu47000), Left(xuu48000), app(ty_[], baa), he) -> new_ltEs1(xuu47000, xuu48000, baa) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Right(xuu47000), Right(xuu48000), baf, app(ty_Maybe, bag)) -> new_ltEs(xuu47000, xuu48000, bag) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_ltEs2(Left(xuu47000), Left(xuu48000), app(ty_Maybe, hd), he) -> new_ltEs(xuu47000, xuu48000, hd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_@2, beb), bec)), bdc), hc) -> new_lt3(xuu47000, xuu48000, beb, bec) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(ty_@2, ee), ef)), df), hc) -> new_lt3(xuu47001, xuu48001, ee, ef) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_Either, be), bf)), hc) -> new_ltEs2(xuu47000, xuu48000, be, bf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_Either, bfb), bfc)) -> new_ltEs2(xuu4700, xuu4800, bfb, bfc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_Either, bab), bac)), he), hc) -> new_ltEs2(xuu47000, xuu48000, bab, bac) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(ty_Either, bcf), bcg)), hc) -> new_ltEs2(xuu47001, xuu48001, bcf, bcg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(ty_Either, bbd), bbe)), hc) -> new_ltEs2(xuu47000, xuu48000, bbd, bbe) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_Either, da), db)), hc) -> new_ltEs2(xuu47002, xuu48002, da, db) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(app(ty_@2, bch), bda)), hc) -> new_ltEs3(xuu47001, xuu48001, bch, bda) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(app(ty_@2, bbf), bbg)), hc) -> new_ltEs3(xuu47000, xuu48000, bbf, bbg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(app(ty_@2, bad), bae)), he), hc) -> new_ltEs3(xuu47000, xuu48000, bad, bae) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh)), hc) -> new_ltEs3(xuu47000, xuu48000, bg, bh) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(app(ty_@2, bfd), bfe)) -> new_ltEs3(xuu4700, xuu4800, bfd, bfe) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_@2, dc), dd)), hc) -> new_ltEs3(xuu47002, xuu48002, dc, dd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_Maybe, bdb)), bdc), hc) -> new_lt(xuu47000, xuu48000, bdb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(ty_Maybe, de)), df), hc) -> new_lt(xuu47001, xuu48001, de) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_[], baa)), he), hc) -> new_ltEs1(xuu47000, xuu48000, baa) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(ty_[], bbc)), hc) -> new_ltEs1(xuu47000, xuu48000, bbc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_[], bfa)) -> new_ltEs1(xuu4700, xuu4800, bfa) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(ty_[], cg)), hc) -> new_ltEs1(xuu47002, xuu48002, cg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_[], bd)), hc) -> new_ltEs1(xuu47000, xuu48000, bd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(ty_[], bce)), hc) -> new_ltEs1(xuu47001, xuu48001, bce) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc), hc) -> new_lt0(xuu47000, xuu48000, bdd, bde, bdf) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(app(ty_@3, dg), dh), ea)), df), hc) -> new_lt0(xuu47001, xuu48001, dg, dh, ea) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(:(xuu47000, xuu47001)), Left(:(xuu48000, xuu48001)), False, app(ty_[], ga), hc) -> new_compare(xuu47001, xuu48001, ga) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, app(ty_[], fc)), cb), df), hc) -> new_compare(xuu47000, xuu48000, fc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, bbh), app(ty_Maybe, bca)), hc) -> new_ltEs(xuu47001, xuu48001, bca) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Just(xuu47000)), Left(Just(xuu48000)), False, app(ty_Maybe, app(ty_Maybe, h)), hc) -> new_ltEs(xuu47000, xuu48000, h) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), cb), app(ty_Maybe, cc)), hc) -> new_ltEs(xuu47002, xuu48002, cc) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Right(xuu4700), Right(xuu4800), False, bed, app(ty_Maybe, bee)) -> new_ltEs(xuu4700, xuu4800, bee) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Left(xuu47000)), Left(Left(xuu48000)), False, app(app(ty_Either, app(ty_Maybe, hd)), he), hc) -> new_ltEs(xuu47000, xuu48000, hd) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(Right(xuu47000)), Left(Right(xuu48000)), False, app(app(ty_Either, baf), app(ty_Maybe, bag)), hc) -> new_ltEs(xuu47000, xuu48000, bag) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(app(ty_Either, ec), ed)), df), hc) -> new_lt2(xuu47001, xuu48001, ec, ed) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(app(ty_Either, bdh), bea)), bdc), hc) -> new_lt2(xuu47000, xuu48000, bdh, bea) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@3(xuu47000, xuu47001, xuu47002)), Left(@3(xuu48000, xuu48001, xuu48002)), False, app(app(app(ty_@3, ca), app(ty_[], eb)), df), hc) -> new_lt1(xuu47001, xuu48001, eb) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 *new_compare21(Left(@2(xuu47000, xuu47001)), Left(@2(xuu48000, xuu48001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc), hc) -> new_lt1(xuu47000, xuu48000, bdg) 30.13/12.47 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.13/12.47 30.13/12.47 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (25) 30.13/12.47 YES 30.13/12.47 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (26) 30.13/12.47 Obligation: 30.13/12.47 Q DP problem: 30.13/12.47 The TRS P consists of the following rules: 30.13/12.47 30.13/12.47 new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.47 new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.47 new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.47 new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) 30.13/12.47 new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) 30.13/12.47 new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) 30.13/12.47 new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) 30.13/12.47 new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.47 30.13/12.47 The TRS R consists of the following rules: 30.13/12.47 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Maybe, dhg)) -> new_ltEs8(xuu47000, xuu48000, dhg) 30.13/12.47 new_lt7(xuu47000, xuu48000) -> new_esEs8(new_compare9(xuu47000, xuu48000), LT) 30.13/12.47 new_ltEs17(LT, EQ) -> True 30.13/12.47 new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.13/12.47 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_compare10(xuu47000, xuu48000, True, dh, ea, eb) -> LT 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_primPlusNat0(Zero, Zero) -> Zero 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Double) -> new_ltEs4(xuu47001, xuu48001) 30.13/12.47 new_compare27(Left(xuu4700), Right(xuu4800), False, cag, cah) -> LT 30.13/12.47 new_pePe(True, xuu204) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Double) -> new_esEs14(xuu47001, xuu48001) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs6(xuu47001, xuu48001, bdh, bea, beb) 30.13/12.47 new_ltEs10(False, False) -> True 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Int) -> new_ltEs11(xuu47002, xuu48002) 30.13/12.47 new_lt4(xuu47000, xuu48000, ca, cb) -> new_esEs8(new_compare6(xuu47000, xuu48000, ca, cb), LT) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(ty_[], dbh)) -> new_esEs9(xuu40001, xuu3001, dbh) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cga), fh) -> new_esEs15(xuu40000, xuu3000, cga) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.13/12.47 new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu19, xuu14, cdb, cdc, cdd) 30.13/12.47 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT 30.13/12.47 new_lt17(xuu47000, xuu48000, hd) -> new_esEs8(new_compare15(xuu47000, xuu48000, hd), LT) 30.13/12.47 new_esEs5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, gc) -> new_asAs(new_esEs26(xuu40000, xuu3000, ga), new_asAs(new_esEs27(xuu40001, xuu3001, gb), new_esEs28(xuu40002, xuu3002, gc))) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Ordering, cbc) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(ty_Ratio, bef)) -> new_ltEs16(xuu47001, xuu48001, bef) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Ordering) -> new_lt18(xuu47001, xuu48001) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(ty_[], bec)) -> new_ltEs5(xuu47001, xuu48001, bec) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Float, cbc) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.47 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Ratio, chc)) -> new_esEs15(xuu40000, xuu3000, chc) 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dag), dah)) -> new_esEs7(xuu40000, xuu3000, dag, dah) 30.13/12.47 new_compare111(xuu177, xuu178, True, deg, deh) -> LT 30.13/12.47 new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat1(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.47 new_lt18(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_Ratio, bbh)) -> new_ltEs16(xuu47002, xuu48002, bbh) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_lt10(xuu47001, xuu48001, hg) 30.13/12.47 new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.47 new_ltEs4(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) 30.13/12.47 new_compare14(@0, @0) -> EQ 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_[], bbe)) -> new_ltEs5(xuu47002, xuu48002, bbe) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, fh) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_esEs8(GT, GT) -> True 30.13/12.47 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.47 new_fsEs(xuu187) -> new_not(new_esEs8(xuu187, GT)) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(ty_Ratio, bfg)) -> new_esEs15(xuu40000, xuu3000, bfg) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(ty_[], bda)) -> new_esEs9(xuu47000, xuu48000, bda) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_@0) -> new_ltEs12(xuu47001, xuu48001) 30.13/12.47 new_esEs8(EQ, EQ) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_esEs4(xuu47001, xuu48001, hg) 30.13/12.47 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Float) -> new_esEs18(xuu47001, xuu48001) 30.13/12.47 new_lt12(xuu47000, xuu48000, dh, ea, eb) -> new_esEs8(new_compare11(xuu47000, xuu48000, dh, ea, eb), LT) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(ty_[], bac)) -> new_lt14(xuu47001, xuu48001, bac) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(app(ty_@2, bcc), bcd)) -> new_ltEs18(xuu4700, xuu4800, bcc, bcd) 30.13/12.47 new_ltEs17(LT, GT) -> True 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dge), cbc) -> new_ltEs8(xuu47000, xuu48000, dge) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Bool) -> new_esEs17(xuu47001, xuu48001) 30.13/12.47 new_not(True) -> False 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(app(ty_@3, dhh), eaa), eab)) -> new_ltEs6(xuu47000, xuu48000, dhh, eaa, eab) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.47 new_lt14(xuu47000, xuu48000, hc) -> new_esEs8(new_compare0(xuu47000, xuu48000, hc), LT) 30.13/12.47 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.47 new_primCompAux00(xuu228, LT) -> LT 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs13(xuu19, xuu14) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs11(xuu40002, xuu3002) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.47 new_ltEs6(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), gg, gh, ha) -> new_pePe(new_lt9(xuu47000, xuu48000, gg), new_asAs(new_esEs21(xuu47000, xuu48000, gg), new_pePe(new_lt8(xuu47001, xuu48001, gh), new_asAs(new_esEs22(xuu47001, xuu48001, gh), new_ltEs7(xuu47002, xuu48002, ha))))) 30.13/12.47 new_ltEs17(EQ, GT) -> True 30.13/12.47 new_esEs30(xuu4000, xuu300, app(ty_Ratio, gd)) -> new_esEs15(xuu4000, xuu300, gd) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_@0) -> new_lt15(xuu47001, xuu48001) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs6(xuu4700, xuu4800, gg, gh, ha) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Int) -> new_ltEs11(xuu47001, xuu48001) 30.13/12.47 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.13/12.47 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs12(xuu19, xuu14) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.47 new_esEs12(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Bool) -> new_lt6(xuu47001, xuu48001) 30.13/12.47 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(ty_Maybe, cba)) -> new_ltEs8(xuu4700, xuu4800, cba) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs5(xuu4000, xuu300, dfd, dfe, dff) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(ty_[], bda)) -> new_lt14(xuu47000, xuu48000, bda) 30.13/12.47 new_ltEs17(LT, LT) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_esEs7(xuu47001, xuu48001, bag, bah) 30.13/12.47 new_primCompAux00(xuu228, GT) -> GT 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(ty_[], bac)) -> new_esEs9(xuu47001, xuu48001, bac) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs5(xuu40001, xuu3001, bgf, bgg, bgh) 30.13/12.47 new_lt10(xuu47000, xuu48000, hb) -> new_esEs8(new_compare30(xuu47000, xuu48000, hb), LT) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs18(xuu36, xuu31) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs14(xuu36, xuu31) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.47 new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_Maybe, bba)) -> new_ltEs8(xuu47002, xuu48002, bba) 30.13/12.47 new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(xuu4000, xuu300, ga, gb, gc) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs5(xuu40000, xuu3000, bfd, bfe, bff) 30.13/12.47 new_compare110(xuu47000, xuu48000, True, he, hf) -> LT 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(app(ty_@2, bca), bcb)) -> new_ltEs18(xuu47002, xuu48002, bca, bcb) 30.13/12.47 new_compare16(xuu47000, xuu48000, False) -> GT 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs17(xuu36, xuu31) 30.13/12.47 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.47 new_primCompAux0(xuu47000, xuu48000, xuu214, cc) -> new_primCompAux00(xuu214, new_compare31(xuu47000, xuu48000, cc)) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(app(ty_Either, deb), dec)) -> new_compare6(xuu47000, xuu48000, deb, dec) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, fh) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, dgf), dgg), dgh), cbc) -> new_ltEs6(xuu47000, xuu48000, dgf, dgg, dgh) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cff), cfg), cfh), fh) -> new_esEs5(xuu40000, xuu3000, cff, cfg, cfh) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_@0) -> new_ltEs12(xuu47002, xuu48002) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_compare27(Right(xuu4700), Left(xuu4800), False, cag, cah) -> GT 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(app(ty_Either, bbf), bbg)) -> new_ltEs13(xuu47002, xuu48002, bbf, bbg) 30.13/12.47 new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare19(xuu4700, xuu4800)) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_@0) -> new_esEs16(xuu47001, xuu48001) 30.13/12.47 new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_lt19(xuu47000, xuu48000, bde, bdf) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(xuu47000, xuu48000, dh, ea, eb) 30.13/12.47 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.47 new_sr(Integer(xuu480000), Integer(xuu470010)) -> Integer(new_primMulInt(xuu480000, xuu470010)) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dca), dcb)) -> new_esEs7(xuu40001, xuu3001, dca, dcb) 30.13/12.47 new_lt9(xuu47000, xuu48000, app(ty_[], hc)) -> new_lt14(xuu47000, xuu48000, hc) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, fh) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(ty_Ratio, dd)) -> new_esEs15(xuu40000, xuu3000, dd) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs13(xuu36, xuu31) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_lt12(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.47 new_pePe(False, xuu204) -> xuu204 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_ltEs13(Left(xuu47000), Right(xuu48000), cbb, cbc) -> True 30.13/12.47 new_compare29(xuu47000, xuu48000, he, hf) -> new_compare28(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.47 new_compare210(xuu47000, xuu48000, True, hb) -> EQ 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_compare24(xuu47000, xuu48000, False) -> new_compare13(xuu47000, xuu48000, new_ltEs17(xuu47000, xuu48000)) 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_esEs6(xuu47001, xuu48001, bad, bae) 30.13/12.47 new_compare112(xuu184, xuu185, True, dgc, dgd) -> LT 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Ordering) -> new_ltEs17(xuu47002, xuu48002) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Char, cbc) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.47 new_esEs11(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, fh) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_esEs8(LT, EQ) -> False 30.13/12.47 new_esEs8(EQ, LT) -> False 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_Either, dhb), dhc), cbc) -> new_ltEs13(xuu47000, xuu48000, dhb, dhc) 30.13/12.47 new_esEs9(:(xuu40000, xuu40001), [], cd) -> False 30.13/12.47 new_esEs9([], :(xuu3000, xuu3001), cd) -> False 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_esEs4(xuu47000, xuu48000, bce) 30.13/12.47 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.47 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(ty_[], daf)) -> new_esEs9(xuu40000, xuu3000, daf) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs16(xuu40002, xuu3002) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.47 new_ltEs13(Right(xuu47000), Left(xuu48000), cbb, cbc) -> False 30.13/12.47 new_ltEs10(True, False) -> False 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs5(xuu40000, xuu3000, bhh, caa, cab) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.47 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare11(xuu47000, xuu48000, ddf, ddg, ddh) 30.13/12.47 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(app(ty_Either, cbb), cbc)) -> new_ltEs13(xuu4700, xuu4800, cbb, cbc) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Float) -> new_ltEs9(xuu47002, xuu48002) 30.13/12.47 new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.47 new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40000, xuu3000, bfb, bfc) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Integer) -> new_lt16(xuu47001, xuu48001) 30.13/12.47 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfd), cfe), fh) -> new_esEs6(xuu40000, xuu3000, cfd, cfe) 30.13/12.47 new_compare12(xuu47000, xuu48000, False, hb) -> GT 30.13/12.47 new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs16(xuu36, xuu31) 30.13/12.47 new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs6(xuu47000, xuu48000, ceb, cec, ced) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Float) -> new_lt11(xuu47001, xuu48001) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.47 new_lt13(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cac)) -> new_esEs15(xuu40000, xuu3000, cac) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(ty_Maybe, bdg)) -> new_ltEs8(xuu47001, xuu48001, bdg) 30.13/12.47 new_primMulNat0(Succ(xuu4000100), Zero) -> Zero 30.13/12.47 new_primMulNat0(Zero, Succ(xuu300000)) -> Zero 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(app(ty_Either, cf), cg)) -> new_esEs6(xuu40000, xuu3000, cf, cg) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(app(ty_Either, bed), bee)) -> new_ltEs13(xuu47001, xuu48001, bed, bee) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(xuu40000, xuu3000, cgh, cha, chb) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(ty_Maybe, dfa)) -> new_esEs4(xuu4000, xuu300, dfa) 30.13/12.47 new_primPlusNat1(Succ(xuu1410), xuu300000) -> Succ(Succ(new_primPlusNat0(xuu1410, xuu300000))) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Ratio, dhd), cbc) -> new_ltEs16(xuu47000, xuu48000, dhd) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.47 new_primCmpNat0(Zero, xuu4700) -> LT 30.13/12.47 new_primPlusNat0(Succ(xuu50200), Zero) -> Succ(xuu50200) 30.13/12.47 new_primPlusNat0(Zero, Succ(xuu13200)) -> Succ(xuu13200) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cgc), cgd), fh) -> new_esEs7(xuu40000, xuu3000, cgc, cgd) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_@0, cbc) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Integer) -> new_ltEs14(xuu47001, xuu48001) 30.13/12.47 new_primPlusNat1(Zero, xuu300000) -> Succ(xuu300000) 30.13/12.47 new_esEs32(xuu36, xuu31, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(xuu36, xuu31, ef, eg, eh) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.47 new_esEs8(LT, LT) -> True 30.13/12.47 new_compare25(xuu47000, xuu48000, False) -> new_compare16(xuu47000, xuu48000, new_ltEs10(xuu47000, xuu48000)) 30.13/12.47 new_compare19(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_esEs15(xuu47001, xuu48001, baf) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.47 new_compare6(xuu47000, xuu48000, ca, cb) -> new_compare27(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ca, cb), ca, cb) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(ty_Maybe, ce)) -> new_esEs4(xuu40000, xuu3000, ce) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_[], dha), cbc) -> new_ltEs5(xuu47000, xuu48000, dha) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_esEs15(xuu47000, xuu48000, bdd) 30.13/12.47 new_ltEs10(False, True) -> True 30.13/12.47 new_lt9(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_lt4(xuu47000, xuu48000, ca, cb) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs14(xuu40002, xuu3002) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Ordering) -> new_ltEs17(xuu47001, xuu48001) 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs17(xuu19, xuu14) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Ratio, ceh)) -> new_ltEs16(xuu47000, xuu48000, ceh) 30.13/12.47 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_[], chd)) -> new_esEs9(xuu40000, xuu3000, chd) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_esEs4(xuu47000, xuu48000, hb) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Int) -> new_esEs13(xuu47001, xuu48001) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Integer, cbc) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_[], cee)) -> new_ltEs5(xuu47000, xuu48000, cee) 30.13/12.47 new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Char) -> new_ltEs15(xuu47001, xuu48001) 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs14(xuu19, xuu14) 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(app(ty_@2, bhc), bhd)) -> new_esEs7(xuu40001, xuu3001, bhc, bhd) 30.13/12.47 new_compare8(xuu47000, xuu48000) -> new_compare25(xuu47000, xuu48000, new_esEs17(xuu47000, xuu48000)) 30.13/12.47 new_lt16(xuu47000, xuu48000) -> new_esEs8(new_compare19(xuu47000, xuu48000), LT) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_lt10(xuu47000, xuu48000, bce) 30.13/12.47 new_esEs32(xuu36, xuu31, app(ty_Maybe, ec)) -> new_esEs4(xuu36, xuu31, ec) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_lt17(xuu47000, xuu48000, bdd) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_@2, che), chf)) -> new_esEs7(xuu40000, xuu3000, che, chf) 30.13/12.47 new_ltEs16(xuu4700, xuu4800, cbd) -> new_fsEs(new_compare15(xuu4700, xuu4800, cbd)) 30.13/12.47 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare19(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(app(app(ty_@3, da), db), dc)) -> new_esEs5(xuu40000, xuu3000, da, db, dc) 30.13/12.47 new_ltEs17(EQ, EQ) -> True 30.13/12.47 new_compare31(xuu47000, xuu48000, app(app(ty_@2, dee), def)) -> new_compare29(xuu47000, xuu48000, dee, def) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.47 new_primCmpNat2(xuu4700, Zero) -> GT 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bhe)) -> new_esEs4(xuu40000, xuu3000, bhe) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.47 new_lt19(xuu47000, xuu48000, he, hf) -> new_esEs8(new_compare29(xuu47000, xuu48000, he, hf), LT) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(xuu47000, xuu48000, bdb, bdc) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(ty_[], bfh)) -> new_esEs9(xuu40000, xuu3000, bfh) 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(ty_[], de)) -> new_esEs9(xuu40000, xuu3000, de) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_esEs6(xuu47000, xuu48000, ca, cb) 30.13/12.47 new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) 30.13/12.47 new_ltEs17(GT, LT) -> False 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_ltEs17(EQ, LT) -> False 30.13/12.47 new_compare16(xuu47000, xuu48000, True) -> LT 30.13/12.47 new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.47 new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) 30.13/12.47 new_esEs30(xuu4000, xuu300, app(ty_Maybe, ff)) -> new_esEs4(xuu4000, xuu300, ff) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(ty_Maybe, bfa)) -> new_esEs4(xuu40000, xuu3000, bfa) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_Either, cgf), cgg)) -> new_esEs6(xuu40000, xuu3000, cgf, cgg) 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs15(xuu40000, xuu3000, dae) 30.13/12.47 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ge, gf) -> new_asAs(new_esEs24(xuu40000, xuu3000, ge), new_esEs25(xuu40001, xuu3001, gf)) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(ty_[], dea)) -> new_compare0(xuu47000, xuu48000, dea) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.47 new_compare10(xuu47000, xuu48000, False, dh, ea, eb) -> GT 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.47 new_primCmpNat1(Succ(xuu47000), Zero) -> GT 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs5(xuu47001, xuu48001, hh, baa, bab) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Char) -> new_ltEs15(xuu47002, xuu48002) 30.13/12.47 new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare17(xuu4700, xuu4800)) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.47 new_esEs9(:(xuu40000, xuu40001), :(xuu3000, xuu3001), cd) -> new_asAs(new_esEs10(xuu40000, xuu3000, cd), new_esEs9(xuu40001, xuu3001, cd)) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Float) -> new_compare17(xuu47000, xuu48000) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bhf), bhg)) -> new_esEs6(xuu40000, xuu3000, bhf, bhg) 30.13/12.47 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Integer) -> new_ltEs14(xuu47002, xuu48002) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_lt9(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_lt17(xuu47000, xuu48000, hd) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(ty_[], dfh)) -> new_esEs9(xuu4000, xuu300, dfh) 30.13/12.47 new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs16(xuu19, xuu14) 30.13/12.47 new_compare0([], :(xuu48000, xuu48001), cc) -> LT 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Char) -> new_lt7(xuu47001, xuu48001) 30.13/12.47 new_asAs(True, xuu172) -> xuu172 30.13/12.47 new_esEs32(xuu36, xuu31, app(ty_Ratio, fa)) -> new_esEs15(xuu36, xuu31, fa) 30.13/12.47 new_esEs17(False, True) -> False 30.13/12.47 new_esEs17(True, False) -> False 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(ty_[], bhb)) -> new_esEs9(xuu40001, xuu3001, bhb) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Double) -> new_compare7(xuu47000, xuu48000) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_lt4(xuu47001, xuu48001, bad, bae) 30.13/12.47 new_esEs6(Left(xuu40000), Right(xuu3000), fg, fh) -> False 30.13/12.47 new_esEs6(Right(xuu40000), Left(xuu3000), fg, fh) -> False 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_Either, ead), eae)) -> new_ltEs13(xuu47000, xuu48000, ead, eae) 30.13/12.47 new_esEs16(@0, @0) -> True 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_@2, eag), eah)) -> new_ltEs18(xuu47000, xuu48000, eag, eah) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_esEs15(xuu47000, xuu48000, hd) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.47 new_compare111(xuu177, xuu178, False, deg, deh) -> GT 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, fh) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs11(xuu36, xuu31) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(app(ty_@2, bga), bgb)) -> new_esEs7(xuu40000, xuu3000, bga, bgb) 30.13/12.47 new_esEs30(xuu4000, xuu300, app(app(ty_@2, ge), gf)) -> new_esEs7(xuu4000, xuu300, ge, gf) 30.13/12.47 new_compare30(xuu47000, xuu48000, hb) -> new_compare210(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, hb), hb) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.47 new_esEs18(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.47 new_primCompAux00(xuu228, EQ) -> xuu228 30.13/12.47 new_compare0([], [], cc) -> EQ 30.13/12.47 new_compare210(xuu47000, xuu48000, False, hb) -> new_compare12(xuu47000, xuu48000, new_ltEs8(xuu47000, xuu48000, hb), hb) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_primMulNat0(Zero, Zero) -> Zero 30.13/12.47 new_ltEs10(True, True) -> True 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cfc), fh) -> new_esEs4(xuu40000, xuu3000, cfc) 30.13/12.47 new_primCmpNat1(Zero, Zero) -> EQ 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, chh), daa)) -> new_esEs6(xuu40000, xuu3000, chh, daa) 30.13/12.47 new_esEs32(xuu36, xuu31, app(app(ty_Either, ed), ee)) -> new_esEs6(xuu36, xuu31, ed, ee) 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, dcc)) -> new_esEs4(xuu40002, xuu3002, dcc) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_esEs7(xuu47000, xuu48000, bde, bdf) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(ty_[], hc)) -> new_esEs9(xuu47000, xuu48000, hc) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.47 new_lt15(xuu47000, xuu48000) -> new_esEs8(new_compare14(xuu47000, xuu48000), LT) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_[], cad)) -> new_esEs9(xuu40000, xuu3000, cad) 30.13/12.47 new_esEs4(Nothing, Nothing, ff) -> True 30.13/12.47 new_compare23(xuu47000, xuu48000, False, dh, ea, eb) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_@0) -> new_compare14(xuu47000, xuu48000) 30.13/12.47 new_esEs4(Nothing, Just(xuu3000), ff) -> False 30.13/12.47 new_esEs4(Just(xuu40000), Nothing, ff) -> False 30.13/12.47 new_esEs31(xuu4000, xuu300, app(app(ty_Either, dfb), dfc)) -> new_esEs6(xuu4000, xuu300, dfb, dfc) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_lt12(xuu47001, xuu48001, hh, baa, bab) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_@2, cfa), cfb)) -> new_ltEs18(xuu47000, xuu48000, cfa, cfb) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Maybe, cge)) -> new_esEs4(xuu40000, xuu3000, cge) 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40001, xuu3001, bgd, bge) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) 30.13/12.47 new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare14(xuu4700, xuu4800)) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs12(xuu40002, xuu3002) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(ty_Maybe, cbe)) -> new_ltEs8(xuu4700, xuu4800, cbe) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Int, cbc) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Maybe, cea)) -> new_ltEs8(xuu47000, xuu48000, cea) 30.13/12.47 new_lt5(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) 30.13/12.47 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.13/12.47 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.47 new_ltEs8(Nothing, Just(xuu48000), cba) -> True 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_Either, cef), ceg)) -> new_ltEs13(xuu47000, xuu48000, cef, ceg) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Char) -> new_esEs11(xuu47001, xuu48001) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.47 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.47 new_lt9(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_lt12(xuu47000, xuu48000, dh, ea, eb) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(app(ty_@2, cce), ccf)) -> new_ltEs18(xuu4700, xuu4800, cce, ccf) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Bool) -> new_compare8(xuu47000, xuu48000) 30.13/12.47 new_compare24(xuu47000, xuu48000, True) -> EQ 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xuu40002, xuu3002, ddc, ddd) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.13/12.47 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(ty_Ratio, bha)) -> new_esEs15(xuu40001, xuu3001, bha) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_esEs15(xuu4000, xuu300, dfg) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(app(ty_Either, ccb), ccc)) -> new_ltEs13(xuu4700, xuu4800, ccb, ccc) 30.13/12.47 new_esEs15(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), gd) -> new_asAs(new_esEs19(xuu40000, xuu3000, gd), new_esEs20(xuu40001, xuu3001, gd)) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.47 new_esEs29(xuu19, xuu14, app(ty_Maybe, ccg)) -> new_esEs4(xuu19, xuu14, ccg) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.13/12.47 new_esEs17(True, True) -> True 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Float) -> new_ltEs9(xuu47001, xuu48001) 30.13/12.47 new_compare12(xuu47000, xuu48000, True, hb) -> LT 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.47 new_ltEs18(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bcc, bcd) -> new_pePe(new_lt20(xuu47000, xuu48000, bcc), new_asAs(new_esEs23(xuu47000, xuu48000, bcc), new_ltEs19(xuu47001, xuu48001, bcd))) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.47 new_compare112(xuu184, xuu185, False, dgc, dgd) -> GT 30.13/12.47 new_compare23(xuu47000, xuu48000, True, dh, ea, eb) -> EQ 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_lt17(xuu47001, xuu48001, baf) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.47 new_not(False) -> True 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.47 new_lt9(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_lt10(xuu47000, xuu48000, hb) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Double, cbc) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.47 new_esEs32(xuu36, xuu31, app(ty_[], fb)) -> new_esEs9(xuu36, xuu31, fb) 30.13/12.47 new_compare0(:(xuu47000, xuu47001), [], cc) -> GT 30.13/12.47 new_esEs8(LT, GT) -> False 30.13/12.47 new_esEs8(GT, LT) -> False 30.13/12.47 new_compare27(Right(xuu4700), Right(xuu4800), False, cag, cah) -> new_compare112(xuu4700, xuu4800, new_ltEs21(xuu4700, xuu4800, cah), cag, cah) 30.13/12.47 new_primPlusNat0(Succ(xuu50200), Succ(xuu13200)) -> Succ(Succ(new_primPlusNat0(xuu50200, xuu13200))) 30.13/12.47 new_esEs29(xuu19, xuu14, app(app(ty_Either, cch), cda)) -> new_esEs6(xuu19, xuu14, cch, cda) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs15(xuu40001, xuu3001, dbg) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cgb), fh) -> new_esEs9(xuu40000, xuu3000, cgb) 30.13/12.47 new_esEs14(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.47 new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(xuu40002, xuu3002, dcf, dcg, dch) 30.13/12.47 new_esEs29(xuu19, xuu14, app(ty_Ratio, cde)) -> new_esEs15(xuu19, xuu14, cde) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.47 new_compare25(xuu47000, xuu48000, True) -> EQ 30.13/12.47 new_compare27(xuu470, xuu480, True, cag, cah) -> EQ 30.13/12.47 new_esEs29(xuu19, xuu14, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu19, xuu14, cdg, cdh) 30.13/12.47 new_compare13(xuu47000, xuu48000, True) -> LT 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, fh) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_compare11(xuu47000, xuu48000, dh, ea, eb) -> new_compare23(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(ty_[], cca)) -> new_ltEs5(xuu4700, xuu4800, cca) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Char) -> new_compare9(xuu47000, xuu48000) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Double) -> new_lt5(xuu47001, xuu48001) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, fh) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_esEs30(xuu4000, xuu300, app(app(ty_Either, fg), fh)) -> new_esEs6(xuu4000, xuu300, fg, fh) 30.13/12.47 new_primCmpNat1(Zero, Succ(xuu48000)) -> LT 30.13/12.47 new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Bool) -> new_ltEs10(xuu47002, xuu48002) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(app(ty_@2, beg), beh)) -> new_ltEs18(xuu47001, xuu48001, beg, beh) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.47 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.13/12.47 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Integer) -> new_esEs12(xuu47001, xuu48001) 30.13/12.47 new_compare9(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.47 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Ratio, eaf)) -> new_ltEs16(xuu47000, xuu48000, eaf) 30.13/12.47 new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), cc) -> new_primCompAux0(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, cc), cc) 30.13/12.47 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(ty_Ratio, ded)) -> new_compare15(xuu47000, xuu48000, ded) 30.13/12.47 new_ltEs11(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.47 new_esEs10(xuu40000, xuu3000, app(app(ty_@2, df), dg)) -> new_esEs7(xuu40000, xuu3000, df, dg) 30.13/12.47 new_ltEs17(GT, EQ) -> False 30.13/12.47 new_compare27(Left(xuu4700), Left(xuu4800), False, cag, cah) -> new_compare111(xuu4700, xuu4800, new_ltEs20(xuu4700, xuu4800, cag), cag, cah) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(ty_[], ddb)) -> new_esEs9(xuu40002, xuu3002, ddb) 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(ty_Maybe, bgc)) -> new_esEs4(xuu40001, xuu3001, bgc) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbb), dbc)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs6(xuu4700, xuu4800, cbf, cbg, cbh) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_lt19(xuu47001, xuu48001, bag, bah) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.47 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Bool, cbc) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.47 new_esEs17(False, False) -> True 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_[], eac)) -> new_ltEs5(xuu47000, xuu48000, eac) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.47 new_ltEs15(xuu4700, xuu4800) -> new_fsEs(new_compare9(xuu4700, xuu4800)) 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(xuu40000, xuu3000, dab, dac, dad) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_esEs7(xuu47000, xuu48000, he, hf) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs6(xuu47002, xuu48002, bbb, bbc, bbd) 30.13/12.47 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.47 new_ltEs8(Nothing, Nothing, cba) -> True 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dba)) -> new_esEs4(xuu40001, xuu3001, dba) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 30.13/12.47 new_ltEs8(Just(xuu47000), Nothing, cba) -> False 30.13/12.47 new_lt9(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_lt19(xuu47000, xuu48000, he, hf) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cae), caf)) -> new_esEs7(xuu40000, xuu3000, cae, caf) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, app(ty_Ratio, ccd)) -> new_ltEs16(xuu4700, xuu4800, ccd) 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs11(xuu19, xuu14) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_@2, dhe), dhf), cbc) -> new_ltEs18(xuu47000, xuu48000, dhe, dhf) 30.13/12.47 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.13/12.47 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.13/12.47 new_esEs9([], [], cd) -> True 30.13/12.47 new_ltEs17(GT, GT) -> True 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Double) -> new_ltEs4(xuu47002, xuu48002) 30.13/12.47 new_ltEs5(xuu4700, xuu4800, cc) -> new_fsEs(new_compare0(xuu4700, xuu4800, cc)) 30.13/12.47 new_compare110(xuu47000, xuu48000, False, he, hf) -> GT 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, fh) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, dcd), dce)) -> new_esEs6(xuu40002, xuu3002, dcd, dce) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.47 new_esEs29(xuu19, xuu14, app(ty_[], cdf)) -> new_esEs9(xuu19, xuu14, cdf) 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, chg)) -> new_esEs4(xuu40000, xuu3000, chg) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_primEqNat0(Zero, Zero) -> True 30.13/12.47 new_compare26(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) 30.13/12.47 new_compare13(xuu47000, xuu48000, False) -> GT 30.13/12.47 new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_lt4(xuu47000, xuu48000, bdb, bdc) 30.13/12.47 new_esEs32(xuu36, xuu31, app(app(ty_@2, fc), fd)) -> new_esEs7(xuu36, xuu31, fc, fd) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Bool) -> new_ltEs10(xuu47001, xuu48001) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(ty_[], cc)) -> new_ltEs5(xuu4700, xuu4800, cc) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(ty_Ratio, cbd)) -> new_ltEs16(xuu4700, xuu4800, cbd) 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Ordering) -> new_compare26(xuu47000, xuu48000) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(app(ty_@2, dga), dgb)) -> new_esEs7(xuu4000, xuu300, dga, dgb) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(ty_Maybe, dde)) -> new_compare30(xuu47000, xuu48000, dde) 30.13/12.47 new_asAs(False, xuu172) -> False 30.13/12.47 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, dda)) -> new_esEs15(xuu40002, xuu3002, dda) 30.13/12.47 new_compare31(xuu47000, xuu48000, ty_Integer) -> new_compare19(xuu47000, xuu48000) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.47 new_compare28(xuu47000, xuu48000, True, he, hf) -> EQ 30.13/12.47 new_esEs30(xuu4000, xuu300, app(ty_[], cd)) -> new_esEs9(xuu4000, xuu300, cd) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs12(xuu36, xuu31) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.47 new_esEs8(EQ, GT) -> False 30.13/12.47 new_esEs8(GT, EQ) -> False 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs18(xuu19, xuu14) 30.13/12.47 new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Int) -> new_lt13(xuu47001, xuu48001) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.47 new_compare28(xuu47000, xuu48000, False, he, hf) -> new_compare110(xuu47000, xuu48000, new_ltEs18(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(xuu40001, xuu3001, dbd, dbe, dbf) 30.13/12.47 30.13/12.47 The set Q consists of the following terms: 30.13/12.47 30.13/12.47 new_compare112(x0, x1, False, x2, x3) 30.13/12.47 new_esEs21(x0, x1, ty_Bool) 30.13/12.47 new_esEs22(x0, x1, ty_Integer) 30.13/12.47 new_esEs8(EQ, EQ) 30.13/12.47 new_esEs4(Nothing, Nothing, x0) 30.13/12.47 new_esEs23(x0, x1, ty_@0) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.47 new_ltEs8(Just(x0), Nothing, x1) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.47 new_esEs27(x0, x1, ty_Ordering) 30.13/12.47 new_ltEs20(x0, x1, ty_Double) 30.13/12.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.47 new_ltEs17(EQ, EQ) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 30.13/12.47 new_esEs23(x0, x1, ty_Bool) 30.13/12.47 new_esEs25(x0, x1, ty_Ordering) 30.13/12.47 new_esEs21(x0, x1, ty_@0) 30.13/12.47 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.47 new_esEs32(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs21(x0, x1, ty_Float) 30.13/12.47 new_esEs27(x0, x1, ty_Double) 30.13/12.47 new_esEs28(x0, x1, ty_Char) 30.13/12.47 new_primCmpNat1(Zero, Zero) 30.13/12.47 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_primPlusNat1(Zero, x0) 30.13/12.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.13/12.47 new_compare18(x0, x1) 30.13/12.47 new_esEs9([], [], x0) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 30.13/12.47 new_ltEs19(x0, x1, ty_Int) 30.13/12.47 new_compare12(x0, x1, False, x2) 30.13/12.47 new_esEs25(x0, x1, ty_Char) 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Zero)) 30.13/12.47 new_esEs24(x0, x1, ty_Ordering) 30.13/12.47 new_primPlusNat0(Succ(x0), Zero) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 30.13/12.47 new_esEs22(x0, x1, ty_Bool) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Float) 30.13/12.47 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.47 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_primCompAux0(x0, x1, x2, x3) 30.13/12.47 new_compare0(:(x0, x1), :(x2, x3), x4) 30.13/12.47 new_compare10(x0, x1, False, x2, x3, x4) 30.13/12.47 new_esEs25(x0, x1, ty_Double) 30.13/12.47 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs31(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs17(False, False) 30.13/12.47 new_esEs21(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Integer) 30.13/12.47 new_compare8(x0, x1) 30.13/12.47 new_lt9(x0, x1, ty_Float) 30.13/12.47 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs19(x0, x1, ty_Char) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 30.13/12.47 new_ltEs7(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs24(x0, x1, ty_Double) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 30.13/12.47 new_esEs25(x0, x1, ty_Int) 30.13/12.47 new_compare23(x0, x1, True, x2, x3, x4) 30.13/12.47 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.13/12.47 new_primEqInt(Neg(Zero), Neg(Zero)) 30.13/12.47 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs32(x0, x1, ty_Ordering) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.47 new_esEs29(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primCompAux00(x0, EQ) 30.13/12.47 new_compare210(x0, x1, False, x2) 30.13/12.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_ltEs12(x0, x1) 30.13/12.47 new_esEs23(x0, x1, ty_Char) 30.13/12.47 new_ltEs20(x0, x1, ty_Char) 30.13/12.47 new_ltEs19(x0, x1, ty_Bool) 30.13/12.47 new_compare110(x0, x1, True, x2, x3) 30.13/12.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs23(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primPlusNat0(Succ(x0), Succ(x1)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.47 new_esEs30(x0, x1, ty_Float) 30.13/12.47 new_compare31(x0, x1, ty_Bool) 30.13/12.47 new_ltEs4(x0, x1) 30.13/12.47 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.13/12.47 new_ltEs19(x0, x1, ty_Ordering) 30.13/12.47 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 30.13/12.47 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_compare31(x0, x1, ty_Double) 30.13/12.47 new_compare110(x0, x1, False, x2, x3) 30.13/12.47 new_esEs24(x0, x1, ty_Int) 30.13/12.47 new_esEs10(x0, x1, ty_Ordering) 30.13/12.47 new_esEs12(Integer(x0), Integer(x1)) 30.13/12.47 new_esEs26(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs31(x0, x1, ty_Double) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 30.13/12.47 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 30.13/12.47 new_esEs27(x0, x1, ty_Char) 30.13/12.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.13/12.47 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs30(x0, x1, ty_@0) 30.13/12.47 new_esEs23(x0, x1, ty_Integer) 30.13/12.47 new_compare31(x0, x1, ty_@0) 30.13/12.47 new_lt20(x0, x1, ty_@0) 30.13/12.47 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_lt8(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs21(x0, x1, ty_Integer) 30.13/12.47 new_lt9(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs22(x0, x1, ty_Float) 30.13/12.47 new_lt20(x0, x1, ty_Bool) 30.13/12.47 new_compare0([], :(x0, x1), x2) 30.13/12.47 new_esEs21(x0, x1, ty_Integer) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.13/12.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.13/12.47 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.47 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.47 new_ltEs10(False, False) 30.13/12.47 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare24(x0, x1, False) 30.13/12.47 new_primMulNat0(Zero, Succ(x0)) 30.13/12.47 new_compare31(x0, x1, ty_Int) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Double) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.47 new_ltEs7(x0, x1, ty_Double) 30.13/12.47 new_primEqInt(Pos(Zero), Neg(Zero)) 30.13/12.47 new_primEqInt(Neg(Zero), Pos(Zero)) 30.13/12.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs27(x0, x1, ty_Int) 30.13/12.47 new_ltEs19(x0, x1, ty_Integer) 30.13/12.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs26(x0, x1, ty_Ordering) 30.13/12.47 new_lt18(x0, x1) 30.13/12.47 new_ltEs20(x0, x1, ty_Int) 30.13/12.47 new_lt20(x0, x1, ty_Int) 30.13/12.47 new_lt9(x0, x1, ty_Bool) 30.13/12.47 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_compare31(x0, x1, ty_Char) 30.13/12.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.13/12.47 new_esEs27(x0, x1, ty_@0) 30.13/12.47 new_primCmpNat0(Zero, x0) 30.13/12.47 new_primMulInt(Neg(x0), Neg(x1)) 30.13/12.47 new_lt20(x0, x1, ty_Double) 30.13/12.47 new_esEs22(x0, x1, ty_@0) 30.13/12.47 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs10(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 30.13/12.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.47 new_compare13(x0, x1, False) 30.13/12.47 new_lt8(x0, x1, ty_Float) 30.13/12.47 new_esEs28(x0, x1, ty_Ordering) 30.13/12.47 new_lt20(x0, x1, ty_Char) 30.13/12.47 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_lt11(x0, x1) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare27(x0, x1, True, x2, x3) 30.13/12.47 new_sr(Integer(x0), Integer(x1)) 30.13/12.47 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs20(x0, x1, ty_@0) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.47 new_esEs20(x0, x1, ty_Integer) 30.13/12.47 new_lt6(x0, x1) 30.13/12.47 new_esEs23(x0, x1, ty_Float) 30.13/12.47 new_esEs4(Nothing, Just(x0), x1) 30.13/12.47 new_compare28(x0, x1, False, x2, x3) 30.13/12.47 new_esEs21(x0, x1, ty_Double) 30.13/12.47 new_esEs10(x0, x1, ty_Char) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs27(x0, x1, ty_Bool) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.47 new_esEs28(x0, x1, ty_Integer) 30.13/12.47 new_esEs22(x0, x1, ty_Char) 30.13/12.47 new_esEs25(x0, x1, ty_Bool) 30.13/12.47 new_esEs9(:(x0, x1), :(x2, x3), x4) 30.13/12.47 new_ltEs21(x0, x1, ty_Bool) 30.13/12.47 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs7(x0, x1, ty_Ordering) 30.13/12.47 new_primCompAux00(x0, GT) 30.13/12.47 new_ltEs5(x0, x1, x2) 30.13/12.47 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs24(x0, x1, ty_Bool) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs10(x0, x1, ty_Int) 30.13/12.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs6(Left(x0), Right(x1), x2, x3) 30.13/12.47 new_esEs6(Right(x0), Left(x1), x2, x3) 30.13/12.47 new_esEs29(x0, x1, ty_Integer) 30.13/12.47 new_lt5(x0, x1) 30.13/12.47 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Float) 30.13/12.47 new_lt8(x0, x1, ty_Bool) 30.13/12.47 new_lt20(x0, x1, ty_Integer) 30.13/12.47 new_lt16(x0, x1) 30.13/12.47 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs30(x0, x1, ty_Int) 30.13/12.47 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_primCmpNat1(Succ(x0), Succ(x1)) 30.13/12.47 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.47 new_esEs28(x0, x1, ty_Bool) 30.13/12.47 new_esEs13(x0, x1) 30.13/12.47 new_compare19(Integer(x0), Integer(x1)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.47 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs27(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs9([], :(x0, x1), x2) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.47 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs30(x0, x1, ty_Char) 30.13/12.47 new_esEs23(x0, x1, ty_Int) 30.13/12.47 new_ltEs19(x0, x1, ty_Double) 30.13/12.47 new_primEqNat0(Zero, Succ(x0)) 30.13/12.47 new_esEs32(x0, x1, ty_@0) 30.13/12.47 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare9(Char(x0), Char(x1)) 30.13/12.47 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.47 new_ltEs21(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs24(x0, x1, ty_Char) 30.13/12.47 new_esEs8(GT, GT) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.47 new_esEs8(LT, EQ) 30.13/12.47 new_esEs8(EQ, LT) 30.13/12.47 new_compare31(x0, x1, ty_Integer) 30.13/12.47 new_esEs10(x0, x1, ty_Float) 30.13/12.47 new_ltEs17(LT, LT) 30.13/12.47 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.13/12.47 new_ltEs16(x0, x1, x2) 30.13/12.47 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare31(x0, x1, ty_Ordering) 30.13/12.47 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.47 new_compare30(x0, x1, x2) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.47 new_esEs24(x0, x1, ty_Integer) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 30.13/12.47 new_compare111(x0, x1, False, x2, x3) 30.13/12.47 new_esEs10(x0, x1, ty_Bool) 30.13/12.47 new_lt20(x0, x1, ty_Ordering) 30.13/12.47 new_primCmpNat2(x0, Zero) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Int) 30.13/12.47 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs8(LT, LT) 30.13/12.47 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.13/12.47 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.13/12.47 new_esEs30(x0, x1, ty_Ordering) 30.13/12.47 new_primCmpNat0(Succ(x0), x1) 30.13/12.47 new_compare29(x0, x1, x2, x3) 30.13/12.47 new_compare0(:(x0, x1), [], x2) 30.13/12.47 new_esEs31(x0, x1, ty_Ordering) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.47 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 30.13/12.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.47 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.47 new_ltEs19(x0, x1, ty_@0) 30.13/12.47 new_ltEs13(Left(x0), Right(x1), x2, x3) 30.13/12.47 new_ltEs13(Right(x0), Left(x1), x2, x3) 30.13/12.47 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs29(x0, x1, ty_Bool) 30.13/12.47 new_lt19(x0, x1, x2, x3) 30.13/12.47 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs29(x0, x1, ty_Float) 30.13/12.47 new_esEs32(x0, x1, ty_Double) 30.13/12.47 new_esEs30(x0, x1, ty_Bool) 30.13/12.47 new_esEs22(x0, x1, ty_Ordering) 30.13/12.47 new_ltEs17(GT, GT) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.47 new_primEqNat0(Succ(x0), Zero) 30.13/12.47 new_compare25(x0, x1, False) 30.13/12.47 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.13/12.47 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.13/12.47 new_esEs30(x0, x1, ty_Integer) 30.13/12.47 new_esEs27(x0, x1, ty_Integer) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Char) 30.13/12.47 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_primMulNat0(Succ(x0), Succ(x1)) 30.13/12.47 new_esEs26(x0, x1, ty_Double) 30.13/12.47 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_primCmpNat1(Succ(x0), Zero) 30.13/12.47 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_lt8(x0, x1, ty_Ordering) 30.13/12.47 new_ltEs14(x0, x1) 30.13/12.47 new_esEs28(x0, x1, ty_Float) 30.13/12.47 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs20(x0, x1, ty_Int) 30.13/12.47 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs26(x0, x1, ty_@0) 30.13/12.47 new_esEs28(x0, x1, ty_Int) 30.13/12.47 new_esEs16(@0, @0) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 30.13/12.47 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 30.13/12.47 new_esEs29(x0, x1, ty_Int) 30.13/12.47 new_lt8(x0, x1, ty_Integer) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.47 new_ltEs17(LT, EQ) 30.13/12.47 new_ltEs17(EQ, LT) 30.13/12.47 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_primPlusNat1(Succ(x0), x1) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Bool) 30.13/12.47 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_pePe(False, x0) 30.13/12.47 new_esEs28(x0, x1, app(ty_[], x2)) 30.13/12.47 new_compare14(@0, @0) 30.13/12.47 new_lt8(x0, x1, ty_Int) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 30.13/12.47 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs27(x0, x1, ty_Float) 30.13/12.47 new_ltEs20(x0, x1, ty_Float) 30.13/12.47 new_lt9(x0, x1, ty_Double) 30.13/12.47 new_ltEs21(x0, x1, ty_Double) 30.13/12.47 new_esEs29(x0, x1, ty_Char) 30.13/12.47 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_lt8(x0, x1, ty_Char) 30.13/12.47 new_primMulNat0(Zero, Zero) 30.13/12.47 new_lt10(x0, x1, x2) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.47 new_esEs25(x0, x1, ty_Float) 30.13/12.47 new_esEs24(x0, x1, ty_Float) 30.13/12.47 new_lt17(x0, x1, x2) 30.13/12.47 new_compare27(Left(x0), Right(x1), False, x2, x3) 30.13/12.47 new_compare27(Right(x0), Left(x1), False, x2, x3) 30.13/12.47 new_lt9(x0, x1, ty_Ordering) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Bool) 30.13/12.47 new_esEs4(Just(x0), Nothing, x1) 30.13/12.47 new_compare28(x0, x1, True, x2, x3) 30.13/12.47 new_primPlusNat0(Zero, Succ(x0)) 30.13/12.47 new_compare0([], [], x0) 30.13/12.47 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Integer) 30.13/12.47 new_esEs17(True, True) 30.13/12.47 new_compare25(x0, x1, True) 30.13/12.47 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.47 new_ltEs21(x0, x1, ty_Ordering) 30.13/12.47 new_ltEs10(True, False) 30.13/12.47 new_ltEs10(False, True) 30.13/12.47 new_compare13(x0, x1, True) 30.13/12.47 new_compare11(x0, x1, x2, x3, x4) 30.13/12.47 new_ltEs7(x0, x1, ty_@0) 30.13/12.47 new_lt8(x0, x1, ty_Double) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.47 new_esEs32(x0, x1, ty_Integer) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 30.13/12.47 new_ltEs21(x0, x1, ty_Int) 30.13/12.47 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 30.13/12.47 new_primCmpNat1(Zero, Succ(x0)) 30.13/12.47 new_esEs18(Float(x0, x1), Float(x2, x3)) 30.13/12.47 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.47 new_ltEs15(x0, x1) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.47 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare6(x0, x1, x2, x3) 30.13/12.47 new_esEs10(x0, x1, ty_Integer) 30.13/12.47 new_esEs31(x0, x1, ty_Integer) 30.13/12.47 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.47 new_primPlusNat0(Zero, Zero) 30.13/12.47 new_ltEs7(x0, x1, ty_Integer) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 30.13/12.47 new_ltEs20(x0, x1, app(ty_[], x2)) 30.13/12.47 new_not(True) 30.13/12.47 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_primMulNat0(Succ(x0), Zero) 30.13/12.47 new_ltEs21(x0, x1, ty_Char) 30.13/12.47 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs31(x0, x1, ty_Bool) 30.13/12.47 new_esEs31(x0, x1, ty_@0) 30.13/12.47 new_lt20(x0, x1, ty_Float) 30.13/12.47 new_esEs8(EQ, GT) 30.13/12.47 new_esEs8(GT, EQ) 30.13/12.47 new_lt9(x0, x1, ty_Char) 30.13/12.47 new_esEs32(x0, x1, ty_Float) 30.13/12.47 new_esEs29(x0, x1, ty_Ordering) 30.13/12.47 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 30.13/12.47 new_lt9(x0, x1, ty_Int) 30.13/12.47 new_asAs(True, x0) 30.13/12.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs19(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs26(x0, x1, ty_Integer) 30.13/12.47 new_esEs25(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.47 new_esEs17(False, True) 30.13/12.47 new_esEs17(True, False) 30.13/12.47 new_primEqNat0(Succ(x0), Succ(x1)) 30.13/12.47 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_ltEs7(x0, x1, ty_Bool) 30.13/12.47 new_compare16(x0, x1, False) 30.13/12.47 new_lt15(x0, x1) 30.13/12.47 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_@0) 30.13/12.47 new_lt12(x0, x1, x2, x3, x4) 30.13/12.47 new_ltEs7(x0, x1, ty_Char) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Char) 30.13/12.47 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs22(x0, x1, ty_Double) 30.13/12.47 new_primCompAux00(x0, LT) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.47 new_esEs9(:(x0, x1), [], x2) 30.13/12.47 new_lt8(x0, x1, ty_@0) 30.13/12.47 new_compare23(x0, x1, False, x2, x3, x4) 30.13/12.47 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs11(Char(x0), Char(x1)) 30.13/12.47 new_esEs22(x0, x1, ty_Int) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Int) 30.13/12.47 new_compare26(x0, x1) 30.13/12.47 new_esEs22(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.13/12.47 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_pePe(True, x0) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.47 new_compare112(x0, x1, True, x2, x3) 30.13/12.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.47 new_lt9(x0, x1, ty_@0) 30.13/12.47 new_primMulInt(Pos(x0), Pos(x1)) 30.13/12.47 new_esEs24(x0, x1, ty_@0) 30.13/12.47 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_ltEs8(Nothing, Nothing, x0) 30.13/12.47 new_ltEs21(x0, x1, ty_@0) 30.13/12.47 new_lt7(x0, x1) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 30.13/12.47 new_esEs21(x0, x1, ty_Ordering) 30.13/12.47 new_esEs31(x0, x1, ty_Char) 30.13/12.47 new_fsEs(x0) 30.13/12.47 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs17(LT, GT) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 30.13/12.47 new_ltEs17(GT, LT) 30.13/12.47 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 30.13/12.47 new_primMulInt(Pos(x0), Neg(x1)) 30.13/12.47 new_primMulInt(Neg(x0), Pos(x1)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 30.13/12.47 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.47 new_esEs25(x0, x1, ty_Integer) 30.13/12.47 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs32(x0, x1, ty_Char) 30.13/12.47 new_esEs8(LT, GT) 30.13/12.47 new_esEs8(GT, LT) 30.13/12.47 new_esEs23(x0, x1, ty_Double) 30.13/12.47 new_esEs31(x0, x1, ty_Int) 30.13/12.47 new_esEs21(x0, x1, ty_Float) 30.13/12.47 new_ltEs7(x0, x1, ty_Int) 30.13/12.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.47 new_esEs26(x0, x1, ty_Bool) 30.13/12.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.13/12.47 new_esEs25(x0, x1, ty_@0) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_@0) 30.13/12.47 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 30.13/12.47 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs32(x0, x1, ty_Int) 30.13/12.47 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_compare27(Left(x0), Left(x1), False, x2, x3) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.47 new_lt14(x0, x1, x2) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.47 new_esEs23(x0, x1, ty_Ordering) 30.13/12.47 new_lt13(x0, x1) 30.13/12.47 new_ltEs20(x0, x1, ty_Bool) 30.13/12.47 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.13/12.47 new_compare31(x0, x1, ty_Float) 30.13/12.47 new_lt9(x0, x1, ty_Integer) 30.13/12.47 new_esEs19(x0, x1, ty_Int) 30.13/12.47 new_ltEs7(x0, x1, ty_Float) 30.13/12.47 new_sr0(x0, x1) 30.13/12.47 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs31(x0, x1, ty_Float) 30.13/12.47 new_lt20(x0, x1, app(ty_[], x2)) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.47 new_esEs30(x0, x1, app(ty_[], x2)) 30.13/12.47 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.47 new_esEs29(x0, x1, ty_Double) 30.13/12.47 new_esEs26(x0, x1, ty_Int) 30.13/12.47 new_lt4(x0, x1, x2, x3) 30.13/12.47 new_compare111(x0, x1, True, x2, x3) 30.13/12.47 new_primEqNat0(Zero, Zero) 30.13/12.47 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_ltEs8(Nothing, Just(x0), x1) 30.13/12.47 new_ltEs19(x0, x1, ty_Float) 30.13/12.47 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_primCmpNat2(x0, Succ(x1)) 30.13/12.47 new_not(False) 30.13/12.47 new_esEs30(x0, x1, ty_Double) 30.13/12.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.13/12.47 new_esEs10(x0, x1, ty_@0) 30.13/12.47 new_esEs29(x0, x1, ty_@0) 30.13/12.47 new_esEs32(x0, x1, ty_Bool) 30.13/12.47 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 30.13/12.47 new_esEs10(x0, x1, ty_Double) 30.13/12.47 new_esEs24(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.47 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_ltEs17(EQ, GT) 30.13/12.47 new_ltEs17(GT, EQ) 30.13/12.47 new_ltEs11(x0, x1) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.47 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_compare16(x0, x1, True) 30.13/12.47 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.47 new_compare12(x0, x1, True, x2) 30.13/12.47 new_esEs19(x0, x1, ty_Integer) 30.13/12.47 new_esEs28(x0, x1, ty_Double) 30.13/12.47 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.47 new_esEs21(x0, x1, ty_Int) 30.13/12.47 new_esEs26(x0, x1, ty_Float) 30.13/12.47 new_ltEs9(x0, x1) 30.13/12.47 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.47 new_compare210(x0, x1, True, x2) 30.13/12.47 new_ltEs8(Just(x0), Just(x1), ty_Double) 30.13/12.47 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.13/12.47 new_compare24(x0, x1, True) 30.13/12.47 new_esEs26(x0, x1, ty_Char) 30.13/12.47 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.47 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.47 new_compare31(x0, x1, app(ty_[], x2)) 30.13/12.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.47 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.13/12.47 new_asAs(False, x0) 30.13/12.47 new_ltEs20(x0, x1, ty_Integer) 30.13/12.47 new_esEs4(Just(x0), Just(x1), ty_Ordering) 30.13/12.47 new_esEs21(x0, x1, ty_Char) 30.13/12.47 new_ltEs10(True, True) 30.13/12.47 new_compare10(x0, x1, True, x2, x3, x4) 30.13/12.47 new_ltEs20(x0, x1, ty_Ordering) 30.13/12.47 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_esEs28(x0, x1, ty_@0) 30.13/12.47 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.47 new_compare27(Right(x0), Right(x1), False, x2, x3) 30.13/12.47 30.13/12.47 We have to consider all minimal (P,Q,R)-chains. 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (27) DependencyGraphProof (EQUIVALENT) 30.13/12.47 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (28) 30.13/12.47 Complex Obligation (AND) 30.13/12.47 30.13/12.47 ---------------------------------------- 30.13/12.47 30.13/12.47 (29) 30.13/12.47 Obligation: 30.13/12.47 Q DP problem: 30.13/12.47 The TRS P consists of the following rules: 30.13/12.47 30.13/12.47 new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.47 new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.47 new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) 30.13/12.47 new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.47 new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) 30.13/12.47 new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.47 30.13/12.47 The TRS R consists of the following rules: 30.13/12.47 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Maybe, dhg)) -> new_ltEs8(xuu47000, xuu48000, dhg) 30.13/12.47 new_lt7(xuu47000, xuu48000) -> new_esEs8(new_compare9(xuu47000, xuu48000), LT) 30.13/12.47 new_ltEs17(LT, EQ) -> True 30.13/12.47 new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.13/12.47 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_compare10(xuu47000, xuu48000, True, dh, ea, eb) -> LT 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_primPlusNat0(Zero, Zero) -> Zero 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Double) -> new_ltEs4(xuu47001, xuu48001) 30.13/12.47 new_compare27(Left(xuu4700), Right(xuu4800), False, cag, cah) -> LT 30.13/12.47 new_pePe(True, xuu204) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Double) -> new_esEs14(xuu47001, xuu48001) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs6(xuu47001, xuu48001, bdh, bea, beb) 30.13/12.47 new_ltEs10(False, False) -> True 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.47 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_Int) -> new_ltEs11(xuu47002, xuu48002) 30.13/12.47 new_lt4(xuu47000, xuu48000, ca, cb) -> new_esEs8(new_compare6(xuu47000, xuu48000, ca, cb), LT) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(ty_[], dbh)) -> new_esEs9(xuu40001, xuu3001, dbh) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cga), fh) -> new_esEs15(xuu40000, xuu3000, cga) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.13/12.47 new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu19, xuu14, cdb, cdc, cdd) 30.13/12.47 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT 30.13/12.47 new_lt17(xuu47000, xuu48000, hd) -> new_esEs8(new_compare15(xuu47000, xuu48000, hd), LT) 30.13/12.47 new_esEs5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, gc) -> new_asAs(new_esEs26(xuu40000, xuu3000, ga), new_asAs(new_esEs27(xuu40001, xuu3001, gb), new_esEs28(xuu40002, xuu3002, gc))) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Ordering, cbc) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(ty_Ratio, bef)) -> new_ltEs16(xuu47001, xuu48001, bef) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Ordering) -> new_lt18(xuu47001, xuu48001) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, app(ty_[], bec)) -> new_ltEs5(xuu47001, xuu48001, bec) 30.13/12.47 new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Float, cbc) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.47 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Ratio, chc)) -> new_esEs15(xuu40000, xuu3000, chc) 30.13/12.47 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dag), dah)) -> new_esEs7(xuu40000, xuu3000, dag, dah) 30.13/12.47 new_compare111(xuu177, xuu178, True, deg, deh) -> LT 30.13/12.47 new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat1(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.47 new_lt18(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_Ratio, bbh)) -> new_ltEs16(xuu47002, xuu48002, bbh) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_lt10(xuu47001, xuu48001, hg) 30.13/12.47 new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.47 new_ltEs4(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) 30.13/12.47 new_compare14(@0, @0) -> EQ 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_[], bbe)) -> new_ltEs5(xuu47002, xuu48002, bbe) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, fh) -> new_esEs12(xuu40000, xuu3000) 30.13/12.47 new_esEs8(GT, GT) -> True 30.13/12.47 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.13/12.47 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.47 new_fsEs(xuu187) -> new_not(new_esEs8(xuu187, GT)) 30.13/12.47 new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(ty_Ratio, bfg)) -> new_esEs15(xuu40000, xuu3000, bfg) 30.13/12.47 new_esEs23(xuu47000, xuu48000, app(ty_[], bda)) -> new_esEs9(xuu47000, xuu48000, bda) 30.13/12.47 new_esEs21(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_@0) -> new_ltEs12(xuu47001, xuu48001) 30.13/12.47 new_esEs8(EQ, EQ) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_esEs4(xuu47001, xuu48001, hg) 30.13/12.47 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Float) -> new_esEs18(xuu47001, xuu48001) 30.13/12.47 new_lt12(xuu47000, xuu48000, dh, ea, eb) -> new_esEs8(new_compare11(xuu47000, xuu48000, dh, ea, eb), LT) 30.13/12.47 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, app(ty_[], bac)) -> new_lt14(xuu47001, xuu48001, bac) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(app(ty_@2, bcc), bcd)) -> new_ltEs18(xuu4700, xuu4800, bcc, bcd) 30.13/12.47 new_ltEs17(LT, GT) -> True 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dge), cbc) -> new_ltEs8(xuu47000, xuu48000, dge) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_Bool) -> new_esEs17(xuu47001, xuu48001) 30.13/12.47 new_not(True) -> False 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(app(ty_@3, dhh), eaa), eab)) -> new_ltEs6(xuu47000, xuu48000, dhh, eaa, eab) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.47 new_lt14(xuu47000, xuu48000, hc) -> new_esEs8(new_compare0(xuu47000, xuu48000, hc), LT) 30.13/12.47 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.47 new_primCompAux00(xuu228, LT) -> LT 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs13(xuu19, xuu14) 30.13/12.47 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs11(xuu40002, xuu3002) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.47 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.47 new_ltEs6(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), gg, gh, ha) -> new_pePe(new_lt9(xuu47000, xuu48000, gg), new_asAs(new_esEs21(xuu47000, xuu48000, gg), new_pePe(new_lt8(xuu47001, xuu48001, gh), new_asAs(new_esEs22(xuu47001, xuu48001, gh), new_ltEs7(xuu47002, xuu48002, ha))))) 30.13/12.47 new_ltEs17(EQ, GT) -> True 30.13/12.47 new_esEs30(xuu4000, xuu300, app(ty_Ratio, gd)) -> new_esEs15(xuu4000, xuu300, gd) 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_@0) -> new_lt15(xuu47001, xuu48001) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs6(xuu4700, xuu4800, gg, gh, ha) 30.13/12.47 new_ltEs19(xuu47001, xuu48001, ty_Int) -> new_ltEs11(xuu47001, xuu48001) 30.13/12.47 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.13/12.47 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.13/12.47 new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs12(xuu19, xuu14) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.47 new_esEs12(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.13/12.47 new_lt8(xuu47001, xuu48001, ty_Bool) -> new_lt6(xuu47001, xuu48001) 30.13/12.47 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.47 new_ltEs20(xuu4700, xuu4800, app(ty_Maybe, cba)) -> new_ltEs8(xuu4700, xuu4800, cba) 30.13/12.47 new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.47 new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs5(xuu4000, xuu300, dfd, dfe, dff) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(ty_[], bda)) -> new_lt14(xuu47000, xuu48000, bda) 30.13/12.47 new_ltEs17(LT, LT) -> True 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_esEs7(xuu47001, xuu48001, bag, bah) 30.13/12.47 new_primCompAux00(xuu228, GT) -> GT 30.13/12.47 new_esEs22(xuu47001, xuu48001, app(ty_[], bac)) -> new_esEs9(xuu47001, xuu48001, bac) 30.13/12.47 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) 30.13/12.47 new_esEs25(xuu40001, xuu3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs5(xuu40001, xuu3001, bgf, bgg, bgh) 30.13/12.47 new_lt10(xuu47000, xuu48000, hb) -> new_esEs8(new_compare30(xuu47000, xuu48000, hb), LT) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs18(xuu36, xuu31) 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs14(xuu36, xuu31) 30.13/12.47 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.47 new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT 30.13/12.47 new_esEs10(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.47 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(ty_Maybe, bba)) -> new_ltEs8(xuu47002, xuu48002, bba) 30.13/12.47 new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(xuu4000, xuu300, ga, gb, gc) 30.13/12.47 new_esEs24(xuu40000, xuu3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs5(xuu40000, xuu3000, bfd, bfe, bff) 30.13/12.47 new_compare110(xuu47000, xuu48000, True, he, hf) -> LT 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(app(ty_@2, bca), bcb)) -> new_ltEs18(xuu47002, xuu48002, bca, bcb) 30.13/12.47 new_compare16(xuu47000, xuu48000, False) -> GT 30.13/12.47 new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs17(xuu36, xuu31) 30.13/12.47 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.47 new_primCompAux0(xuu47000, xuu48000, xuu214, cc) -> new_primCompAux00(xuu214, new_compare31(xuu47000, xuu48000, cc)) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.47 new_compare31(xuu47000, xuu48000, app(app(ty_Either, deb), dec)) -> new_compare6(xuu47000, xuu48000, deb, dec) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, fh) -> new_esEs13(xuu40000, xuu3000) 30.13/12.47 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, dgf), dgg), dgh), cbc) -> new_ltEs6(xuu47000, xuu48000, dgf, dgg, dgh) 30.13/12.47 new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.47 new_lt9(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.47 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cff), cfg), cfh), fh) -> new_esEs5(xuu40000, xuu3000, cff, cfg, cfh) 30.13/12.47 new_ltEs7(xuu47002, xuu48002, ty_@0) -> new_ltEs12(xuu47002, xuu48002) 30.13/12.47 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.47 new_compare27(Right(xuu4700), Left(xuu4800), False, cag, cah) -> GT 30.13/12.47 new_ltEs7(xuu47002, xuu48002, app(app(ty_Either, bbf), bbg)) -> new_ltEs13(xuu47002, xuu48002, bbf, bbg) 30.13/12.47 new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare19(xuu4700, xuu4800)) 30.13/12.47 new_esEs22(xuu47001, xuu48001, ty_@0) -> new_esEs16(xuu47001, xuu48001) 30.13/12.47 new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) 30.13/12.47 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.47 new_lt20(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_lt19(xuu47000, xuu48000, bde, bdf) 30.13/12.47 new_esEs21(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(xuu47000, xuu48000, dh, ea, eb) 30.13/12.47 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.47 new_ltEs21(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.47 new_sr(Integer(xuu480000), Integer(xuu470010)) -> Integer(new_primMulInt(xuu480000, xuu470010)) 30.13/12.47 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dca), dcb)) -> new_esEs7(xuu40001, xuu3001, dca, dcb) 30.13/12.47 new_lt9(xuu47000, xuu48000, app(ty_[], hc)) -> new_lt14(xuu47000, xuu48000, hc) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, fh) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_Ratio, dd)) -> new_esEs15(xuu40000, xuu3000, dd) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs13(xuu36, xuu31) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_lt12(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.48 new_pePe(False, xuu204) -> xuu204 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Left(xuu47000), Right(xuu48000), cbb, cbc) -> True 30.13/12.48 new_compare29(xuu47000, xuu48000, he, hf) -> new_compare28(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.48 new_compare210(xuu47000, xuu48000, True, hb) -> EQ 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_compare24(xuu47000, xuu48000, False) -> new_compare13(xuu47000, xuu48000, new_ltEs17(xuu47000, xuu48000)) 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_esEs6(xuu47001, xuu48001, bad, bae) 30.13/12.48 new_compare112(xuu184, xuu185, True, dgc, dgd) -> LT 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Ordering) -> new_ltEs17(xuu47002, xuu48002) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Char, cbc) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.48 new_esEs11(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, fh) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_esEs8(LT, EQ) -> False 30.13/12.48 new_esEs8(EQ, LT) -> False 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_Either, dhb), dhc), cbc) -> new_ltEs13(xuu47000, xuu48000, dhb, dhc) 30.13/12.48 new_esEs9(:(xuu40000, xuu40001), [], cd) -> False 30.13/12.48 new_esEs9([], :(xuu3000, xuu3001), cd) -> False 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_esEs4(xuu47000, xuu48000, bce) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_[], daf)) -> new_esEs9(xuu40000, xuu3000, daf) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs16(xuu40002, xuu3002) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Right(xuu47000), Left(xuu48000), cbb, cbc) -> False 30.13/12.48 new_ltEs10(True, False) -> False 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs5(xuu40000, xuu3000, bhh, caa, cab) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare11(xuu47000, xuu48000, ddf, ddg, ddh) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(app(ty_Either, cbb), cbc)) -> new_ltEs13(xuu4700, xuu4800, cbb, cbc) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Float) -> new_ltEs9(xuu47002, xuu48002) 30.13/12.48 new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.48 new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40000, xuu3000, bfb, bfc) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Integer) -> new_lt16(xuu47001, xuu48001) 30.13/12.48 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfd), cfe), fh) -> new_esEs6(xuu40000, xuu3000, cfd, cfe) 30.13/12.48 new_compare12(xuu47000, xuu48000, False, hb) -> GT 30.13/12.48 new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs16(xuu36, xuu31) 30.13/12.48 new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs6(xuu47000, xuu48000, ceb, cec, ced) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Float) -> new_lt11(xuu47001, xuu48001) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_lt13(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cac)) -> new_esEs15(xuu40000, xuu3000, cac) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(ty_Maybe, bdg)) -> new_ltEs8(xuu47001, xuu48001, bdg) 30.13/12.48 new_primMulNat0(Succ(xuu4000100), Zero) -> Zero 30.13/12.48 new_primMulNat0(Zero, Succ(xuu300000)) -> Zero 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(ty_Either, cf), cg)) -> new_esEs6(xuu40000, xuu3000, cf, cg) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(app(ty_Either, bed), bee)) -> new_ltEs13(xuu47001, xuu48001, bed, bee) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(xuu40000, xuu3000, cgh, cha, chb) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_Maybe, dfa)) -> new_esEs4(xuu4000, xuu300, dfa) 30.13/12.48 new_primPlusNat1(Succ(xuu1410), xuu300000) -> Succ(Succ(new_primPlusNat0(xuu1410, xuu300000))) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Ratio, dhd), cbc) -> new_ltEs16(xuu47000, xuu48000, dhd) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.48 new_primCmpNat0(Zero, xuu4700) -> LT 30.13/12.48 new_primPlusNat0(Succ(xuu50200), Zero) -> Succ(xuu50200) 30.13/12.48 new_primPlusNat0(Zero, Succ(xuu13200)) -> Succ(xuu13200) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cgc), cgd), fh) -> new_esEs7(xuu40000, xuu3000, cgc, cgd) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_@0, cbc) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Integer) -> new_ltEs14(xuu47001, xuu48001) 30.13/12.48 new_primPlusNat1(Zero, xuu300000) -> Succ(xuu300000) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(xuu36, xuu31, ef, eg, eh) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.48 new_esEs8(LT, LT) -> True 30.13/12.48 new_compare25(xuu47000, xuu48000, False) -> new_compare16(xuu47000, xuu48000, new_ltEs10(xuu47000, xuu48000)) 30.13/12.48 new_compare19(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_esEs15(xuu47001, xuu48001, baf) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.48 new_compare6(xuu47000, xuu48000, ca, cb) -> new_compare27(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ca, cb), ca, cb) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_Maybe, ce)) -> new_esEs4(xuu40000, xuu3000, ce) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_[], dha), cbc) -> new_ltEs5(xuu47000, xuu48000, dha) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_esEs15(xuu47000, xuu48000, bdd) 30.13/12.48 new_ltEs10(False, True) -> True 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_lt4(xuu47000, xuu48000, ca, cb) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs14(xuu40002, xuu3002) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Ordering) -> new_ltEs17(xuu47001, xuu48001) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs17(xuu19, xuu14) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Ratio, ceh)) -> new_ltEs16(xuu47000, xuu48000, ceh) 30.13/12.48 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_[], chd)) -> new_esEs9(xuu40000, xuu3000, chd) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_esEs4(xuu47000, xuu48000, hb) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Int) -> new_esEs13(xuu47001, xuu48001) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Integer, cbc) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_[], cee)) -> new_ltEs5(xuu47000, xuu48000, cee) 30.13/12.48 new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Char) -> new_ltEs15(xuu47001, xuu48001) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs14(xuu19, xuu14) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(app(ty_@2, bhc), bhd)) -> new_esEs7(xuu40001, xuu3001, bhc, bhd) 30.13/12.48 new_compare8(xuu47000, xuu48000) -> new_compare25(xuu47000, xuu48000, new_esEs17(xuu47000, xuu48000)) 30.13/12.48 new_lt16(xuu47000, xuu48000) -> new_esEs8(new_compare19(xuu47000, xuu48000), LT) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_lt10(xuu47000, xuu48000, bce) 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_Maybe, ec)) -> new_esEs4(xuu36, xuu31, ec) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_lt17(xuu47000, xuu48000, bdd) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_@2, che), chf)) -> new_esEs7(xuu40000, xuu3000, che, chf) 30.13/12.48 new_ltEs16(xuu4700, xuu4800, cbd) -> new_fsEs(new_compare15(xuu4700, xuu4800, cbd)) 30.13/12.48 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare19(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(app(ty_@3, da), db), dc)) -> new_esEs5(xuu40000, xuu3000, da, db, dc) 30.13/12.48 new_ltEs17(EQ, EQ) -> True 30.13/12.48 new_compare31(xuu47000, xuu48000, app(app(ty_@2, dee), def)) -> new_compare29(xuu47000, xuu48000, dee, def) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.48 new_primCmpNat2(xuu4700, Zero) -> GT 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bhe)) -> new_esEs4(xuu40000, xuu3000, bhe) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.48 new_lt19(xuu47000, xuu48000, he, hf) -> new_esEs8(new_compare29(xuu47000, xuu48000, he, hf), LT) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(xuu47000, xuu48000, bdb, bdc) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(ty_[], bfh)) -> new_esEs9(xuu40000, xuu3000, bfh) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_[], de)) -> new_esEs9(xuu40000, xuu3000, de) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_esEs6(xuu47000, xuu48000, ca, cb) 30.13/12.48 new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) 30.13/12.48 new_ltEs17(GT, LT) -> False 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_ltEs17(EQ, LT) -> False 30.13/12.48 new_compare16(xuu47000, xuu48000, True) -> LT 30.13/12.48 new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(ty_Maybe, ff)) -> new_esEs4(xuu4000, xuu300, ff) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(ty_Maybe, bfa)) -> new_esEs4(xuu40000, xuu3000, bfa) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_Either, cgf), cgg)) -> new_esEs6(xuu40000, xuu3000, cgf, cgg) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs15(xuu40000, xuu3000, dae) 30.13/12.48 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ge, gf) -> new_asAs(new_esEs24(xuu40000, xuu3000, ge), new_esEs25(xuu40001, xuu3001, gf)) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_[], dea)) -> new_compare0(xuu47000, xuu48000, dea) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.48 new_compare10(xuu47000, xuu48000, False, dh, ea, eb) -> GT 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.48 new_primCmpNat1(Succ(xuu47000), Zero) -> GT 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs5(xuu47001, xuu48001, hh, baa, bab) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Char) -> new_ltEs15(xuu47002, xuu48002) 30.13/12.48 new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare17(xuu4700, xuu4800)) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.48 new_esEs9(:(xuu40000, xuu40001), :(xuu3000, xuu3001), cd) -> new_asAs(new_esEs10(xuu40000, xuu3000, cd), new_esEs9(xuu40001, xuu3001, cd)) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Float) -> new_compare17(xuu47000, xuu48000) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bhf), bhg)) -> new_esEs6(xuu40000, xuu3000, bhf, bhg) 30.13/12.48 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Integer) -> new_ltEs14(xuu47002, xuu48002) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_lt17(xuu47000, xuu48000, hd) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_[], dfh)) -> new_esEs9(xuu4000, xuu300, dfh) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs16(xuu19, xuu14) 30.13/12.48 new_compare0([], :(xuu48000, xuu48001), cc) -> LT 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Char) -> new_lt7(xuu47001, xuu48001) 30.13/12.48 new_asAs(True, xuu172) -> xuu172 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_Ratio, fa)) -> new_esEs15(xuu36, xuu31, fa) 30.13/12.48 new_esEs17(False, True) -> False 30.13/12.48 new_esEs17(True, False) -> False 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_[], bhb)) -> new_esEs9(xuu40001, xuu3001, bhb) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Double) -> new_compare7(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_lt4(xuu47001, xuu48001, bad, bae) 30.13/12.48 new_esEs6(Left(xuu40000), Right(xuu3000), fg, fh) -> False 30.13/12.48 new_esEs6(Right(xuu40000), Left(xuu3000), fg, fh) -> False 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_Either, ead), eae)) -> new_ltEs13(xuu47000, xuu48000, ead, eae) 30.13/12.48 new_esEs16(@0, @0) -> True 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_@2, eag), eah)) -> new_ltEs18(xuu47000, xuu48000, eag, eah) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_esEs15(xuu47000, xuu48000, hd) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.48 new_compare111(xuu177, xuu178, False, deg, deh) -> GT 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, fh) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs11(xuu36, xuu31) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(app(ty_@2, bga), bgb)) -> new_esEs7(xuu40000, xuu3000, bga, bgb) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(app(ty_@2, ge), gf)) -> new_esEs7(xuu4000, xuu300, ge, gf) 30.13/12.48 new_compare30(xuu47000, xuu48000, hb) -> new_compare210(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, hb), hb) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.48 new_esEs18(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.48 new_primCompAux00(xuu228, EQ) -> xuu228 30.13/12.48 new_compare0([], [], cc) -> EQ 30.13/12.48 new_compare210(xuu47000, xuu48000, False, hb) -> new_compare12(xuu47000, xuu48000, new_ltEs8(xuu47000, xuu48000, hb), hb) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_primMulNat0(Zero, Zero) -> Zero 30.13/12.48 new_ltEs10(True, True) -> True 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cfc), fh) -> new_esEs4(xuu40000, xuu3000, cfc) 30.13/12.48 new_primCmpNat1(Zero, Zero) -> EQ 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, chh), daa)) -> new_esEs6(xuu40000, xuu3000, chh, daa) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(ty_Either, ed), ee)) -> new_esEs6(xuu36, xuu31, ed, ee) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, dcc)) -> new_esEs4(xuu40002, xuu3002, dcc) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_esEs7(xuu47000, xuu48000, bde, bdf) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_[], hc)) -> new_esEs9(xuu47000, xuu48000, hc) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.48 new_lt15(xuu47000, xuu48000) -> new_esEs8(new_compare14(xuu47000, xuu48000), LT) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_[], cad)) -> new_esEs9(xuu40000, xuu3000, cad) 30.13/12.48 new_esEs4(Nothing, Nothing, ff) -> True 30.13/12.48 new_compare23(xuu47000, xuu48000, False, dh, ea, eb) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_@0) -> new_compare14(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Nothing, Just(xuu3000), ff) -> False 30.13/12.48 new_esEs4(Just(xuu40000), Nothing, ff) -> False 30.13/12.48 new_esEs31(xuu4000, xuu300, app(app(ty_Either, dfb), dfc)) -> new_esEs6(xuu4000, xuu300, dfb, dfc) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_lt12(xuu47001, xuu48001, hh, baa, bab) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_@2, cfa), cfb)) -> new_ltEs18(xuu47000, xuu48000, cfa, cfb) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Maybe, cge)) -> new_esEs4(xuu40000, xuu3000, cge) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40001, xuu3001, bgd, bge) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) 30.13/12.48 new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare14(xuu4700, xuu4800)) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs12(xuu40002, xuu3002) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_Maybe, cbe)) -> new_ltEs8(xuu4700, xuu4800, cbe) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Int, cbc) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Maybe, cea)) -> new_ltEs8(xuu47000, xuu48000, cea) 30.13/12.48 new_lt5(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.48 new_ltEs8(Nothing, Just(xuu48000), cba) -> True 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_Either, cef), ceg)) -> new_ltEs13(xuu47000, xuu48000, cef, ceg) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Char) -> new_esEs11(xuu47001, xuu48001) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.48 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_lt12(xuu47000, xuu48000, dh, ea, eb) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(ty_@2, cce), ccf)) -> new_ltEs18(xuu4700, xuu4800, cce, ccf) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Bool) -> new_compare8(xuu47000, xuu48000) 30.13/12.48 new_compare24(xuu47000, xuu48000, True) -> EQ 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xuu40002, xuu3002, ddc, ddd) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_Ratio, bha)) -> new_esEs15(xuu40001, xuu3001, bha) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_esEs15(xuu4000, xuu300, dfg) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(ty_Either, ccb), ccc)) -> new_ltEs13(xuu4700, xuu4800, ccb, ccc) 30.13/12.48 new_esEs15(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), gd) -> new_asAs(new_esEs19(xuu40000, xuu3000, gd), new_esEs20(xuu40001, xuu3001, gd)) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_Maybe, ccg)) -> new_esEs4(xuu19, xuu14, ccg) 30.13/12.48 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.13/12.48 new_esEs17(True, True) -> True 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Float) -> new_ltEs9(xuu47001, xuu48001) 30.13/12.48 new_compare12(xuu47000, xuu48000, True, hb) -> LT 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.48 new_ltEs18(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bcc, bcd) -> new_pePe(new_lt20(xuu47000, xuu48000, bcc), new_asAs(new_esEs23(xuu47000, xuu48000, bcc), new_ltEs19(xuu47001, xuu48001, bcd))) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.48 new_compare112(xuu184, xuu185, False, dgc, dgd) -> GT 30.13/12.48 new_compare23(xuu47000, xuu48000, True, dh, ea, eb) -> EQ 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_lt17(xuu47001, xuu48001, baf) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.48 new_not(False) -> True 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_lt10(xuu47000, xuu48000, hb) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Double, cbc) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_[], fb)) -> new_esEs9(xuu36, xuu31, fb) 30.13/12.48 new_compare0(:(xuu47000, xuu47001), [], cc) -> GT 30.13/12.48 new_esEs8(LT, GT) -> False 30.13/12.48 new_esEs8(GT, LT) -> False 30.13/12.48 new_compare27(Right(xuu4700), Right(xuu4800), False, cag, cah) -> new_compare112(xuu4700, xuu4800, new_ltEs21(xuu4700, xuu4800, cah), cag, cah) 30.13/12.48 new_primPlusNat0(Succ(xuu50200), Succ(xuu13200)) -> Succ(Succ(new_primPlusNat0(xuu50200, xuu13200))) 30.13/12.48 new_esEs29(xuu19, xuu14, app(app(ty_Either, cch), cda)) -> new_esEs6(xuu19, xuu14, cch, cda) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs15(xuu40001, xuu3001, dbg) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cgb), fh) -> new_esEs9(xuu40000, xuu3000, cgb) 30.13/12.48 new_esEs14(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.48 new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(xuu40002, xuu3002, dcf, dcg, dch) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_Ratio, cde)) -> new_esEs15(xuu19, xuu14, cde) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.48 new_compare25(xuu47000, xuu48000, True) -> EQ 30.13/12.48 new_compare27(xuu470, xuu480, True, cag, cah) -> EQ 30.13/12.48 new_esEs29(xuu19, xuu14, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu19, xuu14, cdg, cdh) 30.13/12.48 new_compare13(xuu47000, xuu48000, True) -> LT 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, fh) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_compare11(xuu47000, xuu48000, dh, ea, eb) -> new_compare23(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_[], cca)) -> new_ltEs5(xuu4700, xuu4800, cca) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Char) -> new_compare9(xuu47000, xuu48000) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Double) -> new_lt5(xuu47001, xuu48001) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, fh) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(app(ty_Either, fg), fh)) -> new_esEs6(xuu4000, xuu300, fg, fh) 30.13/12.48 new_primCmpNat1(Zero, Succ(xuu48000)) -> LT 30.13/12.48 new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Bool) -> new_ltEs10(xuu47002, xuu48002) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(app(ty_@2, beg), beh)) -> new_ltEs18(xuu47001, xuu48001, beg, beh) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Integer) -> new_esEs12(xuu47001, xuu48001) 30.13/12.48 new_compare9(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.48 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Ratio, eaf)) -> new_ltEs16(xuu47000, xuu48000, eaf) 30.13/12.48 new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), cc) -> new_primCompAux0(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, cc), cc) 30.13/12.48 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_Ratio, ded)) -> new_compare15(xuu47000, xuu48000, ded) 30.13/12.48 new_ltEs11(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(ty_@2, df), dg)) -> new_esEs7(xuu40000, xuu3000, df, dg) 30.13/12.48 new_ltEs17(GT, EQ) -> False 30.13/12.48 new_compare27(Left(xuu4700), Left(xuu4800), False, cag, cah) -> new_compare111(xuu4700, xuu4800, new_ltEs20(xuu4700, xuu4800, cag), cag, cah) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_[], ddb)) -> new_esEs9(xuu40002, xuu3002, ddb) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_Maybe, bgc)) -> new_esEs4(xuu40001, xuu3001, bgc) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbb), dbc)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs6(xuu4700, xuu4800, cbf, cbg, cbh) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_lt19(xuu47001, xuu48001, bag, bah) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Bool, cbc) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs17(False, False) -> True 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_[], eac)) -> new_ltEs5(xuu47000, xuu48000, eac) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.48 new_ltEs15(xuu4700, xuu4800) -> new_fsEs(new_compare9(xuu4700, xuu4800)) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(xuu40000, xuu3000, dab, dac, dad) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_esEs7(xuu47000, xuu48000, he, hf) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs6(xuu47002, xuu48002, bbb, bbc, bbd) 30.13/12.48 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.48 new_ltEs8(Nothing, Nothing, cba) -> True 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dba)) -> new_esEs4(xuu40001, xuu3001, dba) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 30.13/12.48 new_ltEs8(Just(xuu47000), Nothing, cba) -> False 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_lt19(xuu47000, xuu48000, he, hf) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cae), caf)) -> new_esEs7(xuu40000, xuu3000, cae, caf) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_Ratio, ccd)) -> new_ltEs16(xuu4700, xuu4800, ccd) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs11(xuu19, xuu14) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_@2, dhe), dhf), cbc) -> new_ltEs18(xuu47000, xuu48000, dhe, dhf) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.13/12.48 new_esEs9([], [], cd) -> True 30.13/12.48 new_ltEs17(GT, GT) -> True 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Double) -> new_ltEs4(xuu47002, xuu48002) 30.13/12.48 new_ltEs5(xuu4700, xuu4800, cc) -> new_fsEs(new_compare0(xuu4700, xuu4800, cc)) 30.13/12.48 new_compare110(xuu47000, xuu48000, False, he, hf) -> GT 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, fh) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, dcd), dce)) -> new_esEs6(xuu40002, xuu3002, dcd, dce) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_[], cdf)) -> new_esEs9(xuu19, xuu14, cdf) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, chg)) -> new_esEs4(xuu40000, xuu3000, chg) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_primEqNat0(Zero, Zero) -> True 30.13/12.48 new_compare26(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) 30.13/12.48 new_compare13(xuu47000, xuu48000, False) -> GT 30.13/12.48 new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_lt4(xuu47000, xuu48000, bdb, bdc) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(ty_@2, fc), fd)) -> new_esEs7(xuu36, xuu31, fc, fd) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Bool) -> new_ltEs10(xuu47001, xuu48001) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(ty_[], cc)) -> new_ltEs5(xuu4700, xuu4800, cc) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(ty_Ratio, cbd)) -> new_ltEs16(xuu4700, xuu4800, cbd) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Ordering) -> new_compare26(xuu47000, xuu48000) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(app(ty_@2, dga), dgb)) -> new_esEs7(xuu4000, xuu300, dga, dgb) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_Maybe, dde)) -> new_compare30(xuu47000, xuu48000, dde) 30.13/12.48 new_asAs(False, xuu172) -> False 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, dda)) -> new_esEs15(xuu40002, xuu3002, dda) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Integer) -> new_compare19(xuu47000, xuu48000) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.48 new_compare28(xuu47000, xuu48000, True, he, hf) -> EQ 30.13/12.48 new_esEs30(xuu4000, xuu300, app(ty_[], cd)) -> new_esEs9(xuu4000, xuu300, cd) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs12(xuu36, xuu31) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.48 new_esEs8(EQ, GT) -> False 30.13/12.48 new_esEs8(GT, EQ) -> False 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs18(xuu19, xuu14) 30.13/12.48 new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Int) -> new_lt13(xuu47001, xuu48001) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.48 new_compare28(xuu47000, xuu48000, False, he, hf) -> new_compare110(xuu47000, xuu48000, new_ltEs18(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(xuu40001, xuu3001, dbd, dbe, dbf) 30.13/12.48 30.13/12.48 The set Q consists of the following terms: 30.13/12.48 30.13/12.48 new_compare112(x0, x1, False, x2, x3) 30.13/12.48 new_esEs21(x0, x1, ty_Bool) 30.13/12.48 new_esEs22(x0, x1, ty_Integer) 30.13/12.48 new_esEs8(EQ, EQ) 30.13/12.48 new_esEs4(Nothing, Nothing, x0) 30.13/12.48 new_esEs23(x0, x1, ty_@0) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.48 new_ltEs8(Just(x0), Nothing, x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.48 new_esEs27(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs20(x0, x1, ty_Double) 30.13/12.48 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.48 new_ltEs17(EQ, EQ) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 30.13/12.48 new_esEs23(x0, x1, ty_Bool) 30.13/12.48 new_esEs25(x0, x1, ty_Ordering) 30.13/12.48 new_esEs21(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.48 new_esEs32(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs21(x0, x1, ty_Float) 30.13/12.48 new_esEs27(x0, x1, ty_Double) 30.13/12.48 new_esEs28(x0, x1, ty_Char) 30.13/12.48 new_primCmpNat1(Zero, Zero) 30.13/12.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_primPlusNat1(Zero, x0) 30.13/12.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.13/12.48 new_compare18(x0, x1) 30.13/12.48 new_esEs9([], [], x0) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 30.13/12.48 new_ltEs19(x0, x1, ty_Int) 30.13/12.48 new_compare12(x0, x1, False, x2) 30.13/12.48 new_esEs25(x0, x1, ty_Char) 30.13/12.48 new_primEqInt(Pos(Zero), Pos(Zero)) 30.13/12.48 new_esEs24(x0, x1, ty_Ordering) 30.13/12.48 new_primPlusNat0(Succ(x0), Zero) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 30.13/12.48 new_esEs22(x0, x1, ty_Bool) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Float) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.48 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_primCompAux0(x0, x1, x2, x3) 30.13/12.48 new_compare0(:(x0, x1), :(x2, x3), x4) 30.13/12.48 new_compare10(x0, x1, False, x2, x3, x4) 30.13/12.48 new_esEs25(x0, x1, ty_Double) 30.13/12.48 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs31(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs17(False, False) 30.13/12.48 new_esEs21(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Integer) 30.13/12.48 new_compare8(x0, x1) 30.13/12.48 new_lt9(x0, x1, ty_Float) 30.13/12.48 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs19(x0, x1, ty_Char) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 30.13/12.48 new_ltEs7(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs24(x0, x1, ty_Double) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 30.13/12.48 new_esEs25(x0, x1, ty_Int) 30.13/12.48 new_compare23(x0, x1, True, x2, x3, x4) 30.13/12.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Zero)) 30.13/12.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs32(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.48 new_esEs29(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primCompAux00(x0, EQ) 30.13/12.48 new_compare210(x0, x1, False, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs12(x0, x1) 30.13/12.48 new_esEs23(x0, x1, ty_Char) 30.13/12.48 new_ltEs20(x0, x1, ty_Char) 30.13/12.48 new_ltEs19(x0, x1, ty_Bool) 30.13/12.48 new_compare110(x0, x1, True, x2, x3) 30.13/12.48 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs23(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primPlusNat0(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.48 new_esEs30(x0, x1, ty_Float) 30.13/12.48 new_compare31(x0, x1, ty_Bool) 30.13/12.48 new_ltEs4(x0, x1) 30.13/12.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.13/12.48 new_ltEs19(x0, x1, ty_Ordering) 30.13/12.48 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 30.13/12.48 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, ty_Double) 30.13/12.48 new_compare110(x0, x1, False, x2, x3) 30.13/12.48 new_esEs24(x0, x1, ty_Int) 30.13/12.48 new_esEs10(x0, x1, ty_Ordering) 30.13/12.48 new_esEs12(Integer(x0), Integer(x1)) 30.13/12.48 new_esEs26(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs31(x0, x1, ty_Double) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 30.13/12.48 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 30.13/12.48 new_esEs27(x0, x1, ty_Char) 30.13/12.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.13/12.48 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs30(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, ty_Integer) 30.13/12.48 new_compare31(x0, x1, ty_@0) 30.13/12.48 new_lt20(x0, x1, ty_@0) 30.13/12.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_lt8(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs21(x0, x1, ty_Integer) 30.13/12.48 new_lt9(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs22(x0, x1, ty_Float) 30.13/12.48 new_lt20(x0, x1, ty_Bool) 30.13/12.48 new_compare0([], :(x0, x1), x2) 30.13/12.48 new_esEs21(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.48 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.13/12.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.48 new_ltEs10(False, False) 30.13/12.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare24(x0, x1, False) 30.13/12.48 new_primMulNat0(Zero, Succ(x0)) 30.13/12.48 new_compare31(x0, x1, ty_Int) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Double) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.48 new_ltEs7(x0, x1, ty_Double) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Zero)) 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Zero)) 30.13/12.48 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs27(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, ty_Integer) 30.13/12.48 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs26(x0, x1, ty_Ordering) 30.13/12.48 new_lt18(x0, x1) 30.13/12.48 new_ltEs20(x0, x1, ty_Int) 30.13/12.48 new_lt20(x0, x1, ty_Int) 30.13/12.48 new_lt9(x0, x1, ty_Bool) 30.13/12.48 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, ty_Char) 30.13/12.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.13/12.48 new_esEs27(x0, x1, ty_@0) 30.13/12.48 new_primCmpNat0(Zero, x0) 30.13/12.48 new_primMulInt(Neg(x0), Neg(x1)) 30.13/12.48 new_lt20(x0, x1, ty_Double) 30.13/12.48 new_esEs22(x0, x1, ty_@0) 30.13/12.48 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs10(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.48 new_compare13(x0, x1, False) 30.13/12.48 new_lt8(x0, x1, ty_Float) 30.13/12.48 new_esEs28(x0, x1, ty_Ordering) 30.13/12.48 new_lt20(x0, x1, ty_Char) 30.13/12.48 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_lt11(x0, x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare27(x0, x1, True, x2, x3) 30.13/12.48 new_sr(Integer(x0), Integer(x1)) 30.13/12.48 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs20(x0, x1, ty_@0) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.48 new_esEs20(x0, x1, ty_Integer) 30.13/12.48 new_lt6(x0, x1) 30.13/12.48 new_esEs23(x0, x1, ty_Float) 30.13/12.48 new_esEs4(Nothing, Just(x0), x1) 30.13/12.48 new_compare28(x0, x1, False, x2, x3) 30.13/12.48 new_esEs21(x0, x1, ty_Double) 30.13/12.48 new_esEs10(x0, x1, ty_Char) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs27(x0, x1, ty_Bool) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.48 new_esEs28(x0, x1, ty_Integer) 30.13/12.48 new_esEs22(x0, x1, ty_Char) 30.13/12.48 new_esEs25(x0, x1, ty_Bool) 30.13/12.48 new_esEs9(:(x0, x1), :(x2, x3), x4) 30.13/12.48 new_ltEs21(x0, x1, ty_Bool) 30.13/12.48 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs7(x0, x1, ty_Ordering) 30.13/12.48 new_primCompAux00(x0, GT) 30.13/12.48 new_ltEs5(x0, x1, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs24(x0, x1, ty_Bool) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs10(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs6(Left(x0), Right(x1), x2, x3) 30.13/12.48 new_esEs6(Right(x0), Left(x1), x2, x3) 30.13/12.48 new_esEs29(x0, x1, ty_Integer) 30.13/12.48 new_lt5(x0, x1) 30.13/12.48 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Float) 30.13/12.48 new_lt8(x0, x1, ty_Bool) 30.13/12.48 new_lt20(x0, x1, ty_Integer) 30.13/12.48 new_lt16(x0, x1) 30.13/12.48 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs30(x0, x1, ty_Int) 30.13/12.48 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_primCmpNat1(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.48 new_esEs28(x0, x1, ty_Bool) 30.13/12.48 new_esEs13(x0, x1) 30.13/12.48 new_compare19(Integer(x0), Integer(x1)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.48 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs27(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs9([], :(x0, x1), x2) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.48 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs30(x0, x1, ty_Char) 30.13/12.48 new_esEs23(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, ty_Double) 30.13/12.48 new_primEqNat0(Zero, Succ(x0)) 30.13/12.48 new_esEs32(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare9(Char(x0), Char(x1)) 30.13/12.48 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.48 new_ltEs21(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs24(x0, x1, ty_Char) 30.13/12.48 new_esEs8(GT, GT) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.48 new_esEs8(LT, EQ) 30.13/12.48 new_esEs8(EQ, LT) 30.13/12.48 new_compare31(x0, x1, ty_Integer) 30.13/12.48 new_esEs10(x0, x1, ty_Float) 30.13/12.48 new_ltEs17(LT, LT) 30.13/12.48 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.13/12.48 new_ltEs16(x0, x1, x2) 30.13/12.48 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare31(x0, x1, ty_Ordering) 30.13/12.48 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.48 new_compare30(x0, x1, x2) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.48 new_esEs24(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 30.13/12.48 new_compare111(x0, x1, False, x2, x3) 30.13/12.48 new_esEs10(x0, x1, ty_Bool) 30.13/12.48 new_lt20(x0, x1, ty_Ordering) 30.13/12.48 new_primCmpNat2(x0, Zero) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Int) 30.13/12.48 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs8(LT, LT) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.13/12.48 new_esEs30(x0, x1, ty_Ordering) 30.13/12.48 new_primCmpNat0(Succ(x0), x1) 30.13/12.48 new_compare29(x0, x1, x2, x3) 30.13/12.48 new_compare0(:(x0, x1), [], x2) 30.13/12.48 new_esEs31(x0, x1, ty_Ordering) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.48 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 30.13/12.48 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.48 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.48 new_ltEs19(x0, x1, ty_@0) 30.13/12.48 new_ltEs13(Left(x0), Right(x1), x2, x3) 30.13/12.48 new_ltEs13(Right(x0), Left(x1), x2, x3) 30.13/12.48 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs29(x0, x1, ty_Bool) 30.13/12.48 new_lt19(x0, x1, x2, x3) 30.13/12.48 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs29(x0, x1, ty_Float) 30.13/12.48 new_esEs32(x0, x1, ty_Double) 30.13/12.48 new_esEs30(x0, x1, ty_Bool) 30.13/12.48 new_esEs22(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs17(GT, GT) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.48 new_primEqNat0(Succ(x0), Zero) 30.13/12.48 new_compare25(x0, x1, False) 30.13/12.48 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.13/12.48 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.13/12.48 new_esEs30(x0, x1, ty_Integer) 30.13/12.48 new_esEs27(x0, x1, ty_Integer) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Char) 30.13/12.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_primMulNat0(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs26(x0, x1, ty_Double) 30.13/12.48 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.48 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_primCmpNat1(Succ(x0), Zero) 30.13/12.48 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_lt8(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs14(x0, x1) 30.13/12.48 new_esEs28(x0, x1, ty_Float) 30.13/12.48 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs20(x0, x1, ty_Int) 30.13/12.48 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs26(x0, x1, ty_@0) 30.13/12.48 new_esEs28(x0, x1, ty_Int) 30.13/12.48 new_esEs16(@0, @0) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 30.13/12.48 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 30.13/12.48 new_esEs29(x0, x1, ty_Int) 30.13/12.48 new_lt8(x0, x1, ty_Integer) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.48 new_ltEs17(LT, EQ) 30.13/12.48 new_ltEs17(EQ, LT) 30.13/12.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_primPlusNat1(Succ(x0), x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Bool) 30.13/12.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_pePe(False, x0) 30.13/12.48 new_esEs28(x0, x1, app(ty_[], x2)) 30.13/12.48 new_compare14(@0, @0) 30.13/12.48 new_lt8(x0, x1, ty_Int) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 30.13/12.48 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs27(x0, x1, ty_Float) 30.13/12.48 new_ltEs20(x0, x1, ty_Float) 30.13/12.48 new_lt9(x0, x1, ty_Double) 30.13/12.48 new_ltEs21(x0, x1, ty_Double) 30.13/12.48 new_esEs29(x0, x1, ty_Char) 30.13/12.48 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_lt8(x0, x1, ty_Char) 30.13/12.48 new_primMulNat0(Zero, Zero) 30.13/12.48 new_lt10(x0, x1, x2) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.48 new_esEs25(x0, x1, ty_Float) 30.13/12.48 new_esEs24(x0, x1, ty_Float) 30.13/12.48 new_lt17(x0, x1, x2) 30.13/12.48 new_compare27(Left(x0), Right(x1), False, x2, x3) 30.13/12.48 new_compare27(Right(x0), Left(x1), False, x2, x3) 30.13/12.48 new_lt9(x0, x1, ty_Ordering) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Bool) 30.13/12.48 new_esEs4(Just(x0), Nothing, x1) 30.13/12.48 new_compare28(x0, x1, True, x2, x3) 30.13/12.48 new_primPlusNat0(Zero, Succ(x0)) 30.13/12.48 new_compare0([], [], x0) 30.13/12.48 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Integer) 30.13/12.48 new_esEs17(True, True) 30.13/12.48 new_compare25(x0, x1, True) 30.13/12.48 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.48 new_ltEs21(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs10(True, False) 30.13/12.48 new_ltEs10(False, True) 30.13/12.48 new_compare13(x0, x1, True) 30.13/12.48 new_compare11(x0, x1, x2, x3, x4) 30.13/12.48 new_ltEs7(x0, x1, ty_@0) 30.13/12.48 new_lt8(x0, x1, ty_Double) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.48 new_esEs32(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 30.13/12.48 new_ltEs21(x0, x1, ty_Int) 30.13/12.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 30.13/12.48 new_primCmpNat1(Zero, Succ(x0)) 30.13/12.48 new_esEs18(Float(x0, x1), Float(x2, x3)) 30.13/12.48 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.48 new_ltEs15(x0, x1) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare6(x0, x1, x2, x3) 30.13/12.48 new_esEs10(x0, x1, ty_Integer) 30.13/12.48 new_esEs31(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.48 new_primPlusNat0(Zero, Zero) 30.13/12.48 new_ltEs7(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 30.13/12.48 new_ltEs20(x0, x1, app(ty_[], x2)) 30.13/12.48 new_not(True) 30.13/12.48 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_primMulNat0(Succ(x0), Zero) 30.13/12.48 new_ltEs21(x0, x1, ty_Char) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs31(x0, x1, ty_Bool) 30.13/12.48 new_esEs31(x0, x1, ty_@0) 30.13/12.48 new_lt20(x0, x1, ty_Float) 30.13/12.48 new_esEs8(EQ, GT) 30.13/12.48 new_esEs8(GT, EQ) 30.13/12.48 new_lt9(x0, x1, ty_Char) 30.13/12.48 new_esEs32(x0, x1, ty_Float) 30.13/12.48 new_esEs29(x0, x1, ty_Ordering) 30.13/12.48 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 30.13/12.48 new_lt9(x0, x1, ty_Int) 30.13/12.48 new_asAs(True, x0) 30.13/12.48 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs19(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs26(x0, x1, ty_Integer) 30.13/12.48 new_esEs25(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.48 new_esEs17(False, True) 30.13/12.48 new_esEs17(True, False) 30.13/12.48 new_primEqNat0(Succ(x0), Succ(x1)) 30.13/12.48 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_ltEs7(x0, x1, ty_Bool) 30.13/12.48 new_compare16(x0, x1, False) 30.13/12.48 new_lt15(x0, x1) 30.13/12.48 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_@0) 30.13/12.48 new_lt12(x0, x1, x2, x3, x4) 30.13/12.48 new_ltEs7(x0, x1, ty_Char) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Char) 30.13/12.48 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs22(x0, x1, ty_Double) 30.13/12.48 new_primCompAux00(x0, LT) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.48 new_esEs9(:(x0, x1), [], x2) 30.13/12.48 new_lt8(x0, x1, ty_@0) 30.13/12.48 new_compare23(x0, x1, False, x2, x3, x4) 30.13/12.48 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs11(Char(x0), Char(x1)) 30.13/12.48 new_esEs22(x0, x1, ty_Int) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Int) 30.13/12.48 new_compare26(x0, x1) 30.13/12.48 new_esEs22(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.13/12.48 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_pePe(True, x0) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.48 new_compare112(x0, x1, True, x2, x3) 30.13/12.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.48 new_lt9(x0, x1, ty_@0) 30.13/12.48 new_primMulInt(Pos(x0), Pos(x1)) 30.13/12.48 new_esEs24(x0, x1, ty_@0) 30.13/12.48 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_ltEs8(Nothing, Nothing, x0) 30.13/12.48 new_ltEs21(x0, x1, ty_@0) 30.13/12.48 new_lt7(x0, x1) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 30.13/12.48 new_esEs21(x0, x1, ty_Ordering) 30.13/12.48 new_esEs31(x0, x1, ty_Char) 30.13/12.48 new_fsEs(x0) 30.13/12.48 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs17(LT, GT) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 30.13/12.48 new_ltEs17(GT, LT) 30.13/12.48 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 30.13/12.48 new_primMulInt(Pos(x0), Neg(x1)) 30.13/12.48 new_primMulInt(Neg(x0), Pos(x1)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 30.13/12.48 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.48 new_esEs25(x0, x1, ty_Integer) 30.13/12.48 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs32(x0, x1, ty_Char) 30.13/12.48 new_esEs8(LT, GT) 30.13/12.48 new_esEs8(GT, LT) 30.13/12.48 new_esEs23(x0, x1, ty_Double) 30.13/12.48 new_esEs31(x0, x1, ty_Int) 30.13/12.48 new_esEs21(x0, x1, ty_Float) 30.13/12.48 new_ltEs7(x0, x1, ty_Int) 30.13/12.48 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.48 new_esEs26(x0, x1, ty_Bool) 30.13/12.48 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.13/12.48 new_esEs25(x0, x1, ty_@0) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_@0) 30.13/12.48 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 30.13/12.48 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs32(x0, x1, ty_Int) 30.13/12.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_compare27(Left(x0), Left(x1), False, x2, x3) 30.13/12.48 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.48 new_lt14(x0, x1, x2) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.48 new_esEs23(x0, x1, ty_Ordering) 30.13/12.48 new_lt13(x0, x1) 30.13/12.48 new_ltEs20(x0, x1, ty_Bool) 30.13/12.48 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.13/12.48 new_compare31(x0, x1, ty_Float) 30.13/12.48 new_lt9(x0, x1, ty_Integer) 30.13/12.48 new_esEs19(x0, x1, ty_Int) 30.13/12.48 new_ltEs7(x0, x1, ty_Float) 30.13/12.48 new_sr0(x0, x1) 30.13/12.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs31(x0, x1, ty_Float) 30.13/12.48 new_lt20(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.48 new_esEs30(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.48 new_esEs29(x0, x1, ty_Double) 30.13/12.48 new_esEs26(x0, x1, ty_Int) 30.13/12.48 new_lt4(x0, x1, x2, x3) 30.13/12.48 new_compare111(x0, x1, True, x2, x3) 30.13/12.48 new_primEqNat0(Zero, Zero) 30.13/12.48 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_ltEs8(Nothing, Just(x0), x1) 30.13/12.48 new_ltEs19(x0, x1, ty_Float) 30.13/12.48 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_primCmpNat2(x0, Succ(x1)) 30.13/12.48 new_not(False) 30.13/12.48 new_esEs30(x0, x1, ty_Double) 30.13/12.48 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.13/12.48 new_esEs10(x0, x1, ty_@0) 30.13/12.48 new_esEs29(x0, x1, ty_@0) 30.13/12.48 new_esEs32(x0, x1, ty_Bool) 30.13/12.48 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 30.13/12.48 new_esEs10(x0, x1, ty_Double) 30.13/12.48 new_esEs24(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs17(EQ, GT) 30.13/12.48 new_ltEs17(GT, EQ) 30.13/12.48 new_ltEs11(x0, x1) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.48 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_compare16(x0, x1, True) 30.13/12.48 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare12(x0, x1, True, x2) 30.13/12.48 new_esEs19(x0, x1, ty_Integer) 30.13/12.48 new_esEs28(x0, x1, ty_Double) 30.13/12.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs21(x0, x1, ty_Int) 30.13/12.48 new_esEs26(x0, x1, ty_Float) 30.13/12.48 new_ltEs9(x0, x1) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.48 new_compare210(x0, x1, True, x2) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Double) 30.13/12.48 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.13/12.48 new_compare24(x0, x1, True) 30.13/12.48 new_esEs26(x0, x1, ty_Char) 30.13/12.48 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.48 new_compare31(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.48 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.48 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_asAs(False, x0) 30.13/12.48 new_ltEs20(x0, x1, ty_Integer) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Ordering) 30.13/12.48 new_esEs21(x0, x1, ty_Char) 30.13/12.48 new_ltEs10(True, True) 30.13/12.48 new_compare10(x0, x1, True, x2, x3, x4) 30.13/12.48 new_ltEs20(x0, x1, ty_Ordering) 30.13/12.48 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs28(x0, x1, ty_@0) 30.13/12.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare27(Right(x0), Right(x1), False, x2, x3) 30.13/12.48 30.13/12.48 We have to consider all minimal (P,Q,R)-chains. 30.13/12.48 ---------------------------------------- 30.13/12.48 30.13/12.48 (30) QDPSizeChangeProof (EQUIVALENT) 30.13/12.48 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. 30.13/12.48 30.13/12.48 From the DPs we obtained the following set of size-change graphs: 30.13/12.48 *new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.48 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 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.48 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bf, bg, bh) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, bg), bf, bg), GT), bf, bg, bh) 30.13/12.48 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 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.48 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 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, bd), bc, bd), LT), bc, bd, be) 30.13/12.48 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 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C11(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Right(xuu4000), xuu401, bc, bd, be) 30.13/12.48 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C22(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu34, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.48 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.48 30.13/12.48 30.13/12.48 *new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bf, bg, bh) -> new_addToFM_C(xuu35, Right(xuu36), xuu37, bf, bg, bh) 30.13/12.48 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.48 30.13/12.48 30.13/12.48 ---------------------------------------- 30.13/12.48 30.13/12.48 (31) 30.13/12.48 YES 30.13/12.48 30.13/12.48 ---------------------------------------- 30.13/12.48 30.13/12.48 (32) 30.13/12.48 Obligation: 30.13/12.48 Q DP problem: 30.13/12.48 The TRS P consists of the following rules: 30.13/12.48 30.13/12.48 new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.48 new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.48 new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.48 new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.48 new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) 30.13/12.48 new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) 30.13/12.48 new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) 30.13/12.48 new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) 30.13/12.48 30.13/12.48 The TRS R consists of the following rules: 30.13/12.48 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Maybe, dhg)) -> new_ltEs8(xuu47000, xuu48000, dhg) 30.13/12.48 new_lt7(xuu47000, xuu48000) -> new_esEs8(new_compare9(xuu47000, xuu48000), LT) 30.13/12.48 new_ltEs17(LT, EQ) -> True 30.13/12.48 new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT 30.13/12.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.13/12.48 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare10(xuu47000, xuu48000, True, dh, ea, eb) -> LT 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_primPlusNat0(Zero, Zero) -> Zero 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Double) -> new_ltEs4(xuu47001, xuu48001) 30.13/12.48 new_compare27(Left(xuu4700), Right(xuu4800), False, cag, cah) -> LT 30.13/12.48 new_pePe(True, xuu204) -> True 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Double) -> new_esEs14(xuu47001, xuu48001) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs6(xuu47001, xuu48001, bdh, bea, beb) 30.13/12.48 new_ltEs10(False, False) -> True 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.48 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Int) -> new_ltEs11(xuu47002, xuu48002) 30.13/12.48 new_lt4(xuu47000, xuu48000, ca, cb) -> new_esEs8(new_compare6(xuu47000, xuu48000, ca, cb), LT) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(ty_[], dbh)) -> new_esEs9(xuu40001, xuu3001, dbh) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cga), fh) -> new_esEs15(xuu40000, xuu3000, cga) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.13/12.48 new_esEs29(xuu19, xuu14, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu19, xuu14, cdb, cdc, cdd) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT 30.13/12.48 new_lt17(xuu47000, xuu48000, hd) -> new_esEs8(new_compare15(xuu47000, xuu48000, hd), LT) 30.13/12.48 new_esEs5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, gc) -> new_asAs(new_esEs26(xuu40000, xuu3000, ga), new_asAs(new_esEs27(xuu40001, xuu3001, gb), new_esEs28(xuu40002, xuu3002, gc))) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Ordering, cbc) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(ty_Ratio, bef)) -> new_ltEs16(xuu47001, xuu48001, bef) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Ordering) -> new_lt18(xuu47001, xuu48001) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(ty_[], bec)) -> new_ltEs5(xuu47001, xuu48001, bec) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Float, cbc) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.48 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Ratio, chc)) -> new_esEs15(xuu40000, xuu3000, chc) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dag), dah)) -> new_esEs7(xuu40000, xuu3000, dag, dah) 30.13/12.48 new_compare111(xuu177, xuu178, True, deg, deh) -> LT 30.13/12.48 new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat1(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.48 new_lt18(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(ty_Ratio, bbh)) -> new_ltEs16(xuu47002, xuu48002, bbh) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_lt10(xuu47001, xuu48001, hg) 30.13/12.48 new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.48 new_ltEs4(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) 30.13/12.48 new_compare14(@0, @0) -> EQ 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(ty_[], bbe)) -> new_ltEs5(xuu47002, xuu48002, bbe) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, fh) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_esEs8(GT, GT) -> True 30.13/12.48 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.13/12.48 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.48 new_fsEs(xuu187) -> new_not(new_esEs8(xuu187, GT)) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(ty_Ratio, bfg)) -> new_esEs15(xuu40000, xuu3000, bfg) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(ty_[], bda)) -> new_esEs9(xuu47000, xuu48000, bda) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_@0) -> new_ltEs12(xuu47001, xuu48001) 30.13/12.48 new_esEs8(EQ, EQ) -> True 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(ty_Maybe, hg)) -> new_esEs4(xuu47001, xuu48001, hg) 30.13/12.48 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Float) -> new_esEs18(xuu47001, xuu48001) 30.13/12.48 new_lt12(xuu47000, xuu48000, dh, ea, eb) -> new_esEs8(new_compare11(xuu47000, xuu48000, dh, ea, eb), LT) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(ty_[], bac)) -> new_lt14(xuu47001, xuu48001, bac) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(app(ty_@2, bcc), bcd)) -> new_ltEs18(xuu4700, xuu4800, bcc, bcd) 30.13/12.48 new_ltEs17(LT, GT) -> True 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dge), cbc) -> new_ltEs8(xuu47000, xuu48000, dge) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Bool) -> new_esEs17(xuu47001, xuu48001) 30.13/12.48 new_not(True) -> False 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(app(ty_@3, dhh), eaa), eab)) -> new_ltEs6(xuu47000, xuu48000, dhh, eaa, eab) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.48 new_lt14(xuu47000, xuu48000, hc) -> new_esEs8(new_compare0(xuu47000, xuu48000, hc), LT) 30.13/12.48 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.48 new_primCompAux00(xuu228, LT) -> LT 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs13(xuu19, xuu14) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs11(xuu40002, xuu3002) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.48 new_ltEs6(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), gg, gh, ha) -> new_pePe(new_lt9(xuu47000, xuu48000, gg), new_asAs(new_esEs21(xuu47000, xuu48000, gg), new_pePe(new_lt8(xuu47001, xuu48001, gh), new_asAs(new_esEs22(xuu47001, xuu48001, gh), new_ltEs7(xuu47002, xuu48002, ha))))) 30.13/12.48 new_ltEs17(EQ, GT) -> True 30.13/12.48 new_esEs30(xuu4000, xuu300, app(ty_Ratio, gd)) -> new_esEs15(xuu4000, xuu300, gd) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_@0) -> new_lt15(xuu47001, xuu48001) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs6(xuu4700, xuu4800, gg, gh, ha) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Int) -> new_ltEs11(xuu47001, xuu48001) 30.13/12.48 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.13/12.48 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs12(xuu19, xuu14) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.48 new_esEs12(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Bool) -> new_lt6(xuu47001, xuu48001) 30.13/12.48 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(ty_Maybe, cba)) -> new_ltEs8(xuu4700, xuu4800, cba) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs5(xuu4000, xuu300, dfd, dfe, dff) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(ty_[], bda)) -> new_lt14(xuu47000, xuu48000, bda) 30.13/12.48 new_ltEs17(LT, LT) -> True 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_esEs7(xuu47001, xuu48001, bag, bah) 30.13/12.48 new_primCompAux00(xuu228, GT) -> GT 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(ty_[], bac)) -> new_esEs9(xuu47001, xuu48001, bac) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs5(xuu40001, xuu3001, bgf, bgg, bgh) 30.13/12.48 new_lt10(xuu47000, xuu48000, hb) -> new_esEs8(new_compare30(xuu47000, xuu48000, hb), LT) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs18(xuu36, xuu31) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs14(xuu36, xuu31) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.48 new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(ty_Maybe, bba)) -> new_ltEs8(xuu47002, xuu48002, bba) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(xuu4000, xuu300, ga, gb, gc) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs5(xuu40000, xuu3000, bfd, bfe, bff) 30.13/12.48 new_compare110(xuu47000, xuu48000, True, he, hf) -> LT 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(app(ty_@2, bca), bcb)) -> new_ltEs18(xuu47002, xuu48002, bca, bcb) 30.13/12.48 new_compare16(xuu47000, xuu48000, False) -> GT 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs17(xuu36, xuu31) 30.13/12.48 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.48 new_primCompAux0(xuu47000, xuu48000, xuu214, cc) -> new_primCompAux00(xuu214, new_compare31(xuu47000, xuu48000, cc)) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(app(ty_Either, deb), dec)) -> new_compare6(xuu47000, xuu48000, deb, dec) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, fh) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, dgf), dgg), dgh), cbc) -> new_ltEs6(xuu47000, xuu48000, dgf, dgg, dgh) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cff), cfg), cfh), fh) -> new_esEs5(xuu40000, xuu3000, cff, cfg, cfh) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_@0) -> new_ltEs12(xuu47002, xuu48002) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_compare27(Right(xuu4700), Left(xuu4800), False, cag, cah) -> GT 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(app(ty_Either, bbf), bbg)) -> new_ltEs13(xuu47002, xuu48002, bbf, bbg) 30.13/12.48 new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare19(xuu4700, xuu4800)) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_@0) -> new_esEs16(xuu47001, xuu48001) 30.13/12.48 new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_lt19(xuu47000, xuu48000, bde, bdf) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(xuu47000, xuu48000, dh, ea, eb) 30.13/12.48 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.48 new_sr(Integer(xuu480000), Integer(xuu470010)) -> Integer(new_primMulInt(xuu480000, xuu470010)) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dca), dcb)) -> new_esEs7(xuu40001, xuu3001, dca, dcb) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(ty_[], hc)) -> new_lt14(xuu47000, xuu48000, hc) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, fh) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_Ratio, dd)) -> new_esEs15(xuu40000, xuu3000, dd) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs13(xuu36, xuu31) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_lt12(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.48 new_pePe(False, xuu204) -> xuu204 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Left(xuu47000), Right(xuu48000), cbb, cbc) -> True 30.13/12.48 new_compare29(xuu47000, xuu48000, he, hf) -> new_compare28(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.48 new_compare210(xuu47000, xuu48000, True, hb) -> EQ 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_compare24(xuu47000, xuu48000, False) -> new_compare13(xuu47000, xuu48000, new_ltEs17(xuu47000, xuu48000)) 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_esEs6(xuu47001, xuu48001, bad, bae) 30.13/12.48 new_compare112(xuu184, xuu185, True, dgc, dgd) -> LT 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Ordering) -> new_ltEs17(xuu47002, xuu48002) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Char, cbc) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.48 new_esEs11(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, fh) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_esEs8(LT, EQ) -> False 30.13/12.48 new_esEs8(EQ, LT) -> False 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_Either, dhb), dhc), cbc) -> new_ltEs13(xuu47000, xuu48000, dhb, dhc) 30.13/12.48 new_esEs9(:(xuu40000, xuu40001), [], cd) -> False 30.13/12.48 new_esEs9([], :(xuu3000, xuu3001), cd) -> False 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_esEs4(xuu47000, xuu48000, bce) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_[], daf)) -> new_esEs9(xuu40000, xuu3000, daf) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs16(xuu40002, xuu3002) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Right(xuu47000), Left(xuu48000), cbb, cbc) -> False 30.13/12.48 new_ltEs10(True, False) -> False 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs5(xuu40000, xuu3000, bhh, caa, cab) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare11(xuu47000, xuu48000, ddf, ddg, ddh) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(app(ty_Either, cbb), cbc)) -> new_ltEs13(xuu4700, xuu4800, cbb, cbc) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Float) -> new_ltEs9(xuu47002, xuu48002) 30.13/12.48 new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.48 new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40000, xuu3000, bfb, bfc) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Integer) -> new_lt16(xuu47001, xuu48001) 30.13/12.48 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfd), cfe), fh) -> new_esEs6(xuu40000, xuu3000, cfd, cfe) 30.13/12.48 new_compare12(xuu47000, xuu48000, False, hb) -> GT 30.13/12.48 new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs16(xuu36, xuu31) 30.13/12.48 new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs6(xuu47000, xuu48000, ceb, cec, ced) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Float) -> new_lt11(xuu47001, xuu48001) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_lt13(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cac)) -> new_esEs15(xuu40000, xuu3000, cac) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(ty_Maybe, bdg)) -> new_ltEs8(xuu47001, xuu48001, bdg) 30.13/12.48 new_primMulNat0(Succ(xuu4000100), Zero) -> Zero 30.13/12.48 new_primMulNat0(Zero, Succ(xuu300000)) -> Zero 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(ty_Either, cf), cg)) -> new_esEs6(xuu40000, xuu3000, cf, cg) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(xuu47000, xuu48000, bcf, bcg, bch) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(app(ty_Either, bed), bee)) -> new_ltEs13(xuu47001, xuu48001, bed, bee) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(xuu40000, xuu3000, cgh, cha, chb) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_Maybe, dfa)) -> new_esEs4(xuu4000, xuu300, dfa) 30.13/12.48 new_primPlusNat1(Succ(xuu1410), xuu300000) -> Succ(Succ(new_primPlusNat0(xuu1410, xuu300000))) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Ratio, dhd), cbc) -> new_ltEs16(xuu47000, xuu48000, dhd) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.48 new_primCmpNat0(Zero, xuu4700) -> LT 30.13/12.48 new_primPlusNat0(Succ(xuu50200), Zero) -> Succ(xuu50200) 30.13/12.48 new_primPlusNat0(Zero, Succ(xuu13200)) -> Succ(xuu13200) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cgc), cgd), fh) -> new_esEs7(xuu40000, xuu3000, cgc, cgd) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_@0, cbc) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Integer) -> new_ltEs14(xuu47001, xuu48001) 30.13/12.48 new_primPlusNat1(Zero, xuu300000) -> Succ(xuu300000) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(xuu36, xuu31, ef, eg, eh) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.48 new_esEs8(LT, LT) -> True 30.13/12.48 new_compare25(xuu47000, xuu48000, False) -> new_compare16(xuu47000, xuu48000, new_ltEs10(xuu47000, xuu48000)) 30.13/12.48 new_compare19(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_esEs15(xuu47001, xuu48001, baf) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.48 new_compare6(xuu47000, xuu48000, ca, cb) -> new_compare27(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, ca, cb), ca, cb) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_Maybe, ce)) -> new_esEs4(xuu40000, xuu3000, ce) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_[], dha), cbc) -> new_ltEs5(xuu47000, xuu48000, dha) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_esEs15(xuu47000, xuu48000, bdd) 30.13/12.48 new_ltEs10(False, True) -> True 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_lt4(xuu47000, xuu48000, ca, cb) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs14(xuu40002, xuu3002) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Ordering) -> new_ltEs17(xuu47001, xuu48001) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs17(xuu19, xuu14) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Ratio, ceh)) -> new_ltEs16(xuu47000, xuu48000, ceh) 30.13/12.48 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_[], chd)) -> new_esEs9(xuu40000, xuu3000, chd) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_esEs4(xuu47000, xuu48000, hb) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Int) -> new_esEs13(xuu47001, xuu48001) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Integer, cbc) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_[], cee)) -> new_ltEs5(xuu47000, xuu48000, cee) 30.13/12.48 new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Char) -> new_ltEs15(xuu47001, xuu48001) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs14(xuu19, xuu14) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(app(ty_@2, bhc), bhd)) -> new_esEs7(xuu40001, xuu3001, bhc, bhd) 30.13/12.48 new_compare8(xuu47000, xuu48000) -> new_compare25(xuu47000, xuu48000, new_esEs17(xuu47000, xuu48000)) 30.13/12.48 new_lt16(xuu47000, xuu48000) -> new_esEs8(new_compare19(xuu47000, xuu48000), LT) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(ty_Maybe, bce)) -> new_lt10(xuu47000, xuu48000, bce) 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_Maybe, ec)) -> new_esEs4(xuu36, xuu31, ec) 30.13/12.48 new_lt20(xuu47000, xuu48000, app(ty_Ratio, bdd)) -> new_lt17(xuu47000, xuu48000, bdd) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_@2, che), chf)) -> new_esEs7(xuu40000, xuu3000, che, chf) 30.13/12.48 new_ltEs16(xuu4700, xuu4800, cbd) -> new_fsEs(new_compare15(xuu4700, xuu4800, cbd)) 30.13/12.48 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare19(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(app(ty_@3, da), db), dc)) -> new_esEs5(xuu40000, xuu3000, da, db, dc) 30.13/12.48 new_ltEs17(EQ, EQ) -> True 30.13/12.48 new_compare31(xuu47000, xuu48000, app(app(ty_@2, dee), def)) -> new_compare29(xuu47000, xuu48000, dee, def) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.13/12.48 new_primCmpNat2(xuu4700, Zero) -> GT 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bhe)) -> new_esEs4(xuu40000, xuu3000, bhe) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.13/12.48 new_lt19(xuu47000, xuu48000, he, hf) -> new_esEs8(new_compare29(xuu47000, xuu48000, he, hf), LT) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(xuu47000, xuu48000, bdb, bdc) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(ty_[], bfh)) -> new_esEs9(xuu40000, xuu3000, bfh) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(ty_[], de)) -> new_esEs9(xuu40000, xuu3000, de) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(app(ty_Either, ca), cb)) -> new_esEs6(xuu47000, xuu48000, ca, cb) 30.13/12.48 new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) 30.13/12.48 new_ltEs17(GT, LT) -> False 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_ltEs17(EQ, LT) -> False 30.13/12.48 new_compare16(xuu47000, xuu48000, True) -> LT 30.13/12.48 new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(ty_Maybe, ff)) -> new_esEs4(xuu4000, xuu300, ff) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(ty_Maybe, bfa)) -> new_esEs4(xuu40000, xuu3000, bfa) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(app(ty_Either, cgf), cgg)) -> new_esEs6(xuu40000, xuu3000, cgf, cgg) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs15(xuu40000, xuu3000, dae) 30.13/12.48 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ge, gf) -> new_asAs(new_esEs24(xuu40000, xuu3000, ge), new_esEs25(xuu40001, xuu3001, gf)) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_[], dea)) -> new_compare0(xuu47000, xuu48000, dea) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.13/12.48 new_compare10(xuu47000, xuu48000, False, dh, ea, eb) -> GT 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.13/12.48 new_primCmpNat1(Succ(xuu47000), Zero) -> GT 30.13/12.48 new_esEs22(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs5(xuu47001, xuu48001, hh, baa, bab) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Char) -> new_ltEs15(xuu47002, xuu48002) 30.13/12.48 new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare17(xuu4700, xuu4800)) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.13/12.48 new_esEs9(:(xuu40000, xuu40001), :(xuu3000, xuu3001), cd) -> new_asAs(new_esEs10(xuu40000, xuu3000, cd), new_esEs9(xuu40001, xuu3001, cd)) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Float) -> new_compare17(xuu47000, xuu48000) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bhf), bhg)) -> new_esEs6(xuu40000, xuu3000, bhf, bhg) 30.13/12.48 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Integer) -> new_ltEs14(xuu47002, xuu48002) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_lt17(xuu47000, xuu48000, hd) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_[], dfh)) -> new_esEs9(xuu4000, xuu300, dfh) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs16(xuu19, xuu14) 30.13/12.48 new_compare0([], :(xuu48000, xuu48001), cc) -> LT 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Char) -> new_lt7(xuu47001, xuu48001) 30.13/12.48 new_asAs(True, xuu172) -> xuu172 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_Ratio, fa)) -> new_esEs15(xuu36, xuu31, fa) 30.13/12.48 new_esEs17(False, True) -> False 30.13/12.48 new_esEs17(True, False) -> False 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_[], bhb)) -> new_esEs9(xuu40001, xuu3001, bhb) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Double) -> new_compare7(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(ty_Either, bad), bae)) -> new_lt4(xuu47001, xuu48001, bad, bae) 30.13/12.48 new_esEs6(Left(xuu40000), Right(xuu3000), fg, fh) -> False 30.13/12.48 new_esEs6(Right(xuu40000), Left(xuu3000), fg, fh) -> False 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_Either, ead), eae)) -> new_ltEs13(xuu47000, xuu48000, ead, eae) 30.13/12.48 new_esEs16(@0, @0) -> True 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(app(ty_@2, eag), eah)) -> new_ltEs18(xuu47000, xuu48000, eag, eah) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_Ratio, hd)) -> new_esEs15(xuu47000, xuu48000, hd) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.48 new_compare111(xuu177, xuu178, False, deg, deh) -> GT 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, fh) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs11(xuu36, xuu31) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.13/12.48 new_esEs24(xuu40000, xuu3000, app(app(ty_@2, bga), bgb)) -> new_esEs7(xuu40000, xuu3000, bga, bgb) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(app(ty_@2, ge), gf)) -> new_esEs7(xuu4000, xuu300, ge, gf) 30.13/12.48 new_compare30(xuu47000, xuu48000, hb) -> new_compare210(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, hb), hb) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.13/12.48 new_esEs18(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.48 new_primCompAux00(xuu228, EQ) -> xuu228 30.13/12.48 new_compare0([], [], cc) -> EQ 30.13/12.48 new_compare210(xuu47000, xuu48000, False, hb) -> new_compare12(xuu47000, xuu48000, new_ltEs8(xuu47000, xuu48000, hb), hb) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_primMulNat0(Zero, Zero) -> Zero 30.13/12.48 new_ltEs10(True, True) -> True 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.13/12.48 new_esEs10(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cfc), fh) -> new_esEs4(xuu40000, xuu3000, cfc) 30.13/12.48 new_primCmpNat1(Zero, Zero) -> EQ 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, chh), daa)) -> new_esEs6(xuu40000, xuu3000, chh, daa) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(ty_Either, ed), ee)) -> new_esEs6(xuu36, xuu31, ed, ee) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, dcc)) -> new_esEs4(xuu40002, xuu3002, dcc) 30.13/12.48 new_esEs23(xuu47000, xuu48000, app(app(ty_@2, bde), bdf)) -> new_esEs7(xuu47000, xuu48000, bde, bdf) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(ty_[], hc)) -> new_esEs9(xuu47000, xuu48000, hc) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.13/12.48 new_lt15(xuu47000, xuu48000) -> new_esEs8(new_compare14(xuu47000, xuu48000), LT) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_[], cad)) -> new_esEs9(xuu40000, xuu3000, cad) 30.13/12.48 new_esEs4(Nothing, Nothing, ff) -> True 30.13/12.48 new_compare23(xuu47000, xuu48000, False, dh, ea, eb) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_@0) -> new_compare14(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Nothing, Just(xuu3000), ff) -> False 30.13/12.48 new_esEs4(Just(xuu40000), Nothing, ff) -> False 30.13/12.48 new_esEs31(xuu4000, xuu300, app(app(ty_Either, dfb), dfc)) -> new_esEs6(xuu4000, xuu300, dfb, dfc) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(app(ty_@3, hh), baa), bab)) -> new_lt12(xuu47001, xuu48001, hh, baa, bab) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_@2, cfa), cfb)) -> new_ltEs18(xuu47000, xuu48000, cfa, cfb) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, app(ty_Maybe, cge)) -> new_esEs4(xuu40000, xuu3000, cge) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40001, xuu3001, bgd, bge) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) 30.13/12.48 new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare14(xuu4700, xuu4800)) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs12(xuu40002, xuu3002) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_Maybe, cbe)) -> new_ltEs8(xuu4700, xuu4800, cbe) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Int, cbc) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Maybe, cea)) -> new_ltEs8(xuu47000, xuu48000, cea) 30.13/12.48 new_lt5(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.13/12.48 new_ltEs8(Nothing, Just(xuu48000), cba) -> True 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_Either, cef), ceg)) -> new_ltEs13(xuu47000, xuu48000, cef, ceg) 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Char) -> new_esEs11(xuu47001, xuu48001) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.13/12.48 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(app(ty_@3, dh), ea), eb)) -> new_lt12(xuu47000, xuu48000, dh, ea, eb) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(ty_@2, cce), ccf)) -> new_ltEs18(xuu4700, xuu4800, cce, ccf) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Bool) -> new_compare8(xuu47000, xuu48000) 30.13/12.48 new_compare24(xuu47000, xuu48000, True) -> EQ 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xuu40002, xuu3002, ddc, ddd) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.48 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.13/12.48 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_Ratio, bha)) -> new_esEs15(xuu40001, xuu3001, bha) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_esEs15(xuu4000, xuu300, dfg) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(ty_Either, ccb), ccc)) -> new_ltEs13(xuu4700, xuu4800, ccb, ccc) 30.13/12.48 new_esEs15(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), gd) -> new_asAs(new_esEs19(xuu40000, xuu3000, gd), new_esEs20(xuu40001, xuu3001, gd)) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_Maybe, ccg)) -> new_esEs4(xuu19, xuu14, ccg) 30.13/12.48 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.13/12.48 new_esEs17(True, True) -> True 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Float) -> new_ltEs9(xuu47001, xuu48001) 30.13/12.48 new_compare12(xuu47000, xuu48000, True, hb) -> LT 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.48 new_ltEs18(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), bcc, bcd) -> new_pePe(new_lt20(xuu47000, xuu48000, bcc), new_asAs(new_esEs23(xuu47000, xuu48000, bcc), new_ltEs19(xuu47001, xuu48001, bcd))) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.13/12.48 new_compare112(xuu184, xuu185, False, dgc, dgd) -> GT 30.13/12.48 new_compare23(xuu47000, xuu48000, True, dh, ea, eb) -> EQ 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(ty_Ratio, baf)) -> new_lt17(xuu47001, xuu48001, baf) 30.13/12.48 new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.13/12.48 new_not(False) -> True 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.13/12.48 new_lt9(xuu47000, xuu48000, app(ty_Maybe, hb)) -> new_lt10(xuu47000, xuu48000, hb) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Double, cbc) -> new_ltEs4(xuu47000, xuu48000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) 30.13/12.48 new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.48 new_esEs32(xuu36, xuu31, app(ty_[], fb)) -> new_esEs9(xuu36, xuu31, fb) 30.13/12.48 new_compare0(:(xuu47000, xuu47001), [], cc) -> GT 30.13/12.48 new_esEs8(LT, GT) -> False 30.13/12.48 new_esEs8(GT, LT) -> False 30.13/12.48 new_compare27(Right(xuu4700), Right(xuu4800), False, cag, cah) -> new_compare112(xuu4700, xuu4800, new_ltEs21(xuu4700, xuu4800, cah), cag, cah) 30.13/12.48 new_primPlusNat0(Succ(xuu50200), Succ(xuu13200)) -> Succ(Succ(new_primPlusNat0(xuu50200, xuu13200))) 30.13/12.48 new_esEs29(xuu19, xuu14, app(app(ty_Either, cch), cda)) -> new_esEs6(xuu19, xuu14, cch, cda) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs15(xuu40001, xuu3001, dbg) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cgb), fh) -> new_esEs9(xuu40000, xuu3000, cgb) 30.13/12.48 new_esEs14(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.13/12.48 new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(xuu40002, xuu3002, dcf, dcg, dch) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_Ratio, cde)) -> new_esEs15(xuu19, xuu14, cde) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.13/12.48 new_compare25(xuu47000, xuu48000, True) -> EQ 30.13/12.48 new_compare27(xuu470, xuu480, True, cag, cah) -> EQ 30.13/12.48 new_esEs29(xuu19, xuu14, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu19, xuu14, cdg, cdh) 30.13/12.48 new_compare13(xuu47000, xuu48000, True) -> LT 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, fh) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_compare11(xuu47000, xuu48000, dh, ea, eb) -> new_compare23(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, dh, ea, eb), dh, ea, eb) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_[], cca)) -> new_ltEs5(xuu4700, xuu4800, cca) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Char) -> new_compare9(xuu47000, xuu48000) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Double) -> new_lt5(xuu47001, xuu48001) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, fh) -> new_esEs14(xuu40000, xuu3000) 30.13/12.48 new_esEs6(Right(xuu40000), Right(xuu3000), fg, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.48 new_esEs30(xuu4000, xuu300, app(app(ty_Either, fg), fh)) -> new_esEs6(xuu4000, xuu300, fg, fh) 30.13/12.48 new_primCmpNat1(Zero, Succ(xuu48000)) -> LT 30.13/12.48 new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Bool) -> new_ltEs10(xuu47002, xuu48002) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, app(app(ty_@2, beg), beh)) -> new_ltEs18(xuu47001, xuu48001, beg, beh) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.13/12.48 new_esEs22(xuu47001, xuu48001, ty_Integer) -> new_esEs12(xuu47001, xuu48001) 30.13/12.48 new_compare9(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.13/12.48 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.48 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_Ratio, eaf)) -> new_ltEs16(xuu47000, xuu48000, eaf) 30.13/12.48 new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), cc) -> new_primCompAux0(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, cc), cc) 30.13/12.48 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_Ratio, ded)) -> new_compare15(xuu47000, xuu48000, ded) 30.13/12.48 new_ltEs11(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) 30.13/12.48 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.13/12.48 new_esEs10(xuu40000, xuu3000, app(app(ty_@2, df), dg)) -> new_esEs7(xuu40000, xuu3000, df, dg) 30.13/12.48 new_ltEs17(GT, EQ) -> False 30.13/12.48 new_compare27(Left(xuu4700), Left(xuu4800), False, cag, cah) -> new_compare111(xuu4700, xuu4800, new_ltEs20(xuu4700, xuu4800, cag), cag, cah) 30.13/12.48 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_[], ddb)) -> new_esEs9(xuu40002, xuu3002, ddb) 30.13/12.48 new_esEs25(xuu40001, xuu3001, app(ty_Maybe, bgc)) -> new_esEs4(xuu40001, xuu3001, bgc) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dbb), dbc)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs6(xuu4700, xuu4800, cbf, cbg, cbh) 30.13/12.48 new_lt8(xuu47001, xuu48001, app(app(ty_@2, bag), bah)) -> new_lt19(xuu47001, xuu48001, bag, bah) 30.13/12.48 new_esEs21(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Bool, cbc) -> new_ltEs10(xuu47000, xuu48000) 30.13/12.48 new_esEs17(False, False) -> True 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, app(ty_[], eac)) -> new_ltEs5(xuu47000, xuu48000, eac) 30.13/12.48 new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.13/12.48 new_lt9(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.13/12.48 new_ltEs15(xuu4700, xuu4800) -> new_fsEs(new_compare9(xuu4700, xuu4800)) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(xuu40000, xuu3000, dab, dac, dad) 30.13/12.48 new_esEs21(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_esEs7(xuu47000, xuu48000, he, hf) 30.13/12.48 new_ltEs7(xuu47002, xuu48002, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs6(xuu47002, xuu48002, bbb, bbc, bbd) 30.13/12.48 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.48 new_ltEs8(Nothing, Nothing, cba) -> True 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dba)) -> new_esEs4(xuu40001, xuu3001, dba) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 30.13/12.48 new_ltEs8(Just(xuu47000), Nothing, cba) -> False 30.13/12.48 new_lt9(xuu47000, xuu48000, app(app(ty_@2, he), hf)) -> new_lt19(xuu47000, xuu48000, he, hf) 30.13/12.48 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cae), caf)) -> new_esEs7(xuu40000, xuu3000, cae, caf) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, app(ty_Ratio, ccd)) -> new_ltEs16(xuu4700, xuu4800, ccd) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs11(xuu19, xuu14) 30.13/12.48 new_ltEs21(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.13/12.48 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_@2, dhe), dhf), cbc) -> new_ltEs18(xuu47000, xuu48000, dhe, dhf) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.13/12.48 new_esEs9([], [], cd) -> True 30.13/12.48 new_ltEs17(GT, GT) -> True 30.13/12.48 new_ltEs7(xuu47002, xuu48002, ty_Double) -> new_ltEs4(xuu47002, xuu48002) 30.13/12.48 new_ltEs5(xuu4700, xuu4800, cc) -> new_fsEs(new_compare0(xuu4700, xuu4800, cc)) 30.13/12.48 new_compare110(xuu47000, xuu48000, False, he, hf) -> GT 30.13/12.48 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.48 new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, fh) -> new_esEs16(xuu40000, xuu3000) 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, dcd), dce)) -> new_esEs6(xuu40002, xuu3002, dcd, dce) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.13/12.48 new_esEs29(xuu19, xuu14, app(ty_[], cdf)) -> new_esEs9(xuu19, xuu14, cdf) 30.13/12.48 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, chg)) -> new_esEs4(xuu40000, xuu3000, chg) 30.13/12.48 new_esEs24(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.13/12.48 new_primEqNat0(Zero, Zero) -> True 30.13/12.48 new_compare26(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) 30.13/12.48 new_compare13(xuu47000, xuu48000, False) -> GT 30.13/12.48 new_lt20(xuu47000, xuu48000, app(app(ty_Either, bdb), bdc)) -> new_lt4(xuu47000, xuu48000, bdb, bdc) 30.13/12.48 new_esEs32(xuu36, xuu31, app(app(ty_@2, fc), fd)) -> new_esEs7(xuu36, xuu31, fc, fd) 30.13/12.48 new_ltEs19(xuu47001, xuu48001, ty_Bool) -> new_ltEs10(xuu47001, xuu48001) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(ty_[], cc)) -> new_ltEs5(xuu4700, xuu4800, cc) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, app(ty_Ratio, cbd)) -> new_ltEs16(xuu4700, xuu4800, cbd) 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Ordering) -> new_compare26(xuu47000, xuu48000) 30.13/12.48 new_esEs31(xuu4000, xuu300, app(app(ty_@2, dga), dgb)) -> new_esEs7(xuu4000, xuu300, dga, dgb) 30.13/12.48 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.48 new_compare31(xuu47000, xuu48000, app(ty_Maybe, dde)) -> new_compare30(xuu47000, xuu48000, dde) 30.13/12.48 new_asAs(False, xuu172) -> False 30.13/12.48 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, dda)) -> new_esEs15(xuu40002, xuu3002, dda) 30.13/12.48 new_compare31(xuu47000, xuu48000, ty_Integer) -> new_compare19(xuu47000, xuu48000) 30.13/12.48 new_esEs25(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.48 new_compare28(xuu47000, xuu48000, True, he, hf) -> EQ 30.13/12.48 new_esEs30(xuu4000, xuu300, app(ty_[], cd)) -> new_esEs9(xuu4000, xuu300, cd) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.13/12.48 new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs12(xuu36, xuu31) 30.13/12.48 new_ltEs20(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.13/12.48 new_esEs8(EQ, GT) -> False 30.13/12.48 new_esEs8(GT, EQ) -> False 30.13/12.48 new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs18(xuu19, xuu14) 30.13/12.48 new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) 30.13/12.48 new_ltEs13(Right(xuu47000), Right(xuu48000), cbb, ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.48 new_lt8(xuu47001, xuu48001, ty_Int) -> new_lt13(xuu47001, xuu48001) 30.13/12.48 new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.13/12.48 new_compare28(xuu47000, xuu48000, False, he, hf) -> new_compare110(xuu47000, xuu48000, new_ltEs18(xuu47000, xuu48000, he, hf), he, hf) 30.13/12.48 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(xuu40001, xuu3001, dbd, dbe, dbf) 30.13/12.48 30.13/12.48 The set Q consists of the following terms: 30.13/12.48 30.13/12.48 new_compare112(x0, x1, False, x2, x3) 30.13/12.48 new_esEs21(x0, x1, ty_Bool) 30.13/12.48 new_esEs22(x0, x1, ty_Integer) 30.13/12.48 new_esEs8(EQ, EQ) 30.13/12.48 new_esEs4(Nothing, Nothing, x0) 30.13/12.48 new_esEs23(x0, x1, ty_@0) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.48 new_ltEs8(Just(x0), Nothing, x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.48 new_esEs27(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs20(x0, x1, ty_Double) 30.13/12.48 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.48 new_ltEs17(EQ, EQ) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 30.13/12.48 new_esEs23(x0, x1, ty_Bool) 30.13/12.48 new_esEs25(x0, x1, ty_Ordering) 30.13/12.48 new_esEs21(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.48 new_esEs32(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs21(x0, x1, ty_Float) 30.13/12.48 new_esEs27(x0, x1, ty_Double) 30.13/12.48 new_esEs28(x0, x1, ty_Char) 30.13/12.48 new_primCmpNat1(Zero, Zero) 30.13/12.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_primPlusNat1(Zero, x0) 30.13/12.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.13/12.48 new_compare18(x0, x1) 30.13/12.48 new_esEs9([], [], x0) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 30.13/12.48 new_ltEs19(x0, x1, ty_Int) 30.13/12.48 new_compare12(x0, x1, False, x2) 30.13/12.48 new_esEs25(x0, x1, ty_Char) 30.13/12.48 new_primEqInt(Pos(Zero), Pos(Zero)) 30.13/12.48 new_esEs24(x0, x1, ty_Ordering) 30.13/12.48 new_primPlusNat0(Succ(x0), Zero) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 30.13/12.48 new_esEs22(x0, x1, ty_Bool) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Float) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.48 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_primCompAux0(x0, x1, x2, x3) 30.13/12.48 new_compare0(:(x0, x1), :(x2, x3), x4) 30.13/12.48 new_compare10(x0, x1, False, x2, x3, x4) 30.13/12.48 new_esEs25(x0, x1, ty_Double) 30.13/12.48 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs31(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs17(False, False) 30.13/12.48 new_esEs21(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Integer) 30.13/12.48 new_compare8(x0, x1) 30.13/12.48 new_lt9(x0, x1, ty_Float) 30.13/12.48 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_ltEs19(x0, x1, ty_Char) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 30.13/12.48 new_ltEs7(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs24(x0, x1, ty_Double) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 30.13/12.48 new_esEs25(x0, x1, ty_Int) 30.13/12.48 new_compare23(x0, x1, True, x2, x3, x4) 30.13/12.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.13/12.48 new_primEqInt(Neg(Zero), Neg(Zero)) 30.13/12.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs32(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.48 new_esEs29(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primCompAux00(x0, EQ) 30.13/12.48 new_compare210(x0, x1, False, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs12(x0, x1) 30.13/12.48 new_esEs23(x0, x1, ty_Char) 30.13/12.48 new_ltEs20(x0, x1, ty_Char) 30.13/12.48 new_ltEs19(x0, x1, ty_Bool) 30.13/12.48 new_compare110(x0, x1, True, x2, x3) 30.13/12.48 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs23(x0, x1, app(ty_[], x2)) 30.13/12.48 new_primPlusNat0(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 30.13/12.48 new_esEs30(x0, x1, ty_Float) 30.13/12.48 new_compare31(x0, x1, ty_Bool) 30.13/12.48 new_ltEs4(x0, x1) 30.13/12.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.13/12.48 new_ltEs19(x0, x1, ty_Ordering) 30.13/12.48 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 30.13/12.48 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, ty_Double) 30.13/12.48 new_compare110(x0, x1, False, x2, x3) 30.13/12.48 new_esEs24(x0, x1, ty_Int) 30.13/12.48 new_esEs10(x0, x1, ty_Ordering) 30.13/12.48 new_esEs12(Integer(x0), Integer(x1)) 30.13/12.48 new_esEs26(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs31(x0, x1, ty_Double) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 30.13/12.48 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 30.13/12.48 new_esEs27(x0, x1, ty_Char) 30.13/12.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.13/12.48 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs30(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, ty_Integer) 30.13/12.48 new_compare31(x0, x1, ty_@0) 30.13/12.48 new_lt20(x0, x1, ty_@0) 30.13/12.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_lt8(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs21(x0, x1, ty_Integer) 30.13/12.48 new_lt9(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs22(x0, x1, ty_Float) 30.13/12.48 new_lt20(x0, x1, ty_Bool) 30.13/12.48 new_compare0([], :(x0, x1), x2) 30.13/12.48 new_esEs21(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.48 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.13/12.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.48 new_ltEs10(False, False) 30.13/12.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare24(x0, x1, False) 30.13/12.48 new_primMulNat0(Zero, Succ(x0)) 30.13/12.48 new_compare31(x0, x1, ty_Int) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Double) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.13/12.48 new_ltEs7(x0, x1, ty_Double) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Zero)) 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Zero)) 30.13/12.48 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs27(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, ty_Integer) 30.13/12.48 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs26(x0, x1, ty_Ordering) 30.13/12.48 new_lt18(x0, x1) 30.13/12.48 new_ltEs20(x0, x1, ty_Int) 30.13/12.48 new_lt20(x0, x1, ty_Int) 30.13/12.48 new_lt9(x0, x1, ty_Bool) 30.13/12.48 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, ty_Char) 30.13/12.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.13/12.48 new_esEs27(x0, x1, ty_@0) 30.13/12.48 new_primCmpNat0(Zero, x0) 30.13/12.48 new_primMulInt(Neg(x0), Neg(x1)) 30.13/12.48 new_lt20(x0, x1, ty_Double) 30.13/12.48 new_esEs22(x0, x1, ty_@0) 30.13/12.48 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs10(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 30.13/12.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.13/12.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.13/12.48 new_compare13(x0, x1, False) 30.13/12.48 new_lt8(x0, x1, ty_Float) 30.13/12.48 new_esEs28(x0, x1, ty_Ordering) 30.13/12.48 new_lt20(x0, x1, ty_Char) 30.13/12.48 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_lt11(x0, x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare27(x0, x1, True, x2, x3) 30.13/12.48 new_sr(Integer(x0), Integer(x1)) 30.13/12.48 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs20(x0, x1, ty_@0) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.48 new_esEs20(x0, x1, ty_Integer) 30.13/12.48 new_lt6(x0, x1) 30.13/12.48 new_esEs23(x0, x1, ty_Float) 30.13/12.48 new_esEs4(Nothing, Just(x0), x1) 30.13/12.48 new_compare28(x0, x1, False, x2, x3) 30.13/12.48 new_esEs21(x0, x1, ty_Double) 30.13/12.48 new_esEs10(x0, x1, ty_Char) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs27(x0, x1, ty_Bool) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.48 new_esEs28(x0, x1, ty_Integer) 30.13/12.48 new_esEs22(x0, x1, ty_Char) 30.13/12.48 new_esEs25(x0, x1, ty_Bool) 30.13/12.48 new_esEs9(:(x0, x1), :(x2, x3), x4) 30.13/12.48 new_ltEs21(x0, x1, ty_Bool) 30.13/12.48 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_ltEs7(x0, x1, ty_Ordering) 30.13/12.48 new_primCompAux00(x0, GT) 30.13/12.48 new_ltEs5(x0, x1, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs24(x0, x1, ty_Bool) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.48 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs10(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs6(Left(x0), Right(x1), x2, x3) 30.13/12.48 new_esEs6(Right(x0), Left(x1), x2, x3) 30.13/12.48 new_esEs29(x0, x1, ty_Integer) 30.13/12.48 new_lt5(x0, x1) 30.13/12.48 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.48 new_esEs4(Just(x0), Just(x1), ty_Float) 30.13/12.48 new_lt8(x0, x1, ty_Bool) 30.13/12.48 new_lt20(x0, x1, ty_Integer) 30.13/12.48 new_lt16(x0, x1) 30.13/12.48 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs30(x0, x1, ty_Int) 30.13/12.48 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_primCmpNat1(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.48 new_esEs28(x0, x1, ty_Bool) 30.13/12.48 new_esEs13(x0, x1) 30.13/12.48 new_compare19(Integer(x0), Integer(x1)) 30.13/12.48 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.13/12.48 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs27(x0, x1, app(ty_[], x2)) 30.13/12.48 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs9([], :(x0, x1), x2) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.13/12.48 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.48 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs30(x0, x1, ty_Char) 30.13/12.48 new_esEs23(x0, x1, ty_Int) 30.13/12.48 new_ltEs19(x0, x1, ty_Double) 30.13/12.48 new_primEqNat0(Zero, Succ(x0)) 30.13/12.48 new_esEs32(x0, x1, ty_@0) 30.13/12.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare9(Char(x0), Char(x1)) 30.13/12.48 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.48 new_ltEs21(x0, x1, app(ty_[], x2)) 30.13/12.48 new_esEs24(x0, x1, ty_Char) 30.13/12.48 new_esEs8(GT, GT) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 30.13/12.48 new_esEs8(LT, EQ) 30.13/12.48 new_esEs8(EQ, LT) 30.13/12.48 new_compare31(x0, x1, ty_Integer) 30.13/12.48 new_esEs10(x0, x1, ty_Float) 30.13/12.48 new_ltEs17(LT, LT) 30.13/12.48 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.13/12.48 new_ltEs16(x0, x1, x2) 30.13/12.48 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_compare31(x0, x1, ty_Ordering) 30.13/12.48 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 30.13/12.48 new_compare30(x0, x1, x2) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.48 new_esEs24(x0, x1, ty_Integer) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 30.13/12.48 new_compare111(x0, x1, False, x2, x3) 30.13/12.48 new_esEs10(x0, x1, ty_Bool) 30.13/12.48 new_lt20(x0, x1, ty_Ordering) 30.13/12.48 new_primCmpNat2(x0, Zero) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Int) 30.13/12.48 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs8(LT, LT) 30.13/12.48 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.13/12.48 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.13/12.48 new_esEs30(x0, x1, ty_Ordering) 30.13/12.48 new_primCmpNat0(Succ(x0), x1) 30.13/12.48 new_compare29(x0, x1, x2, x3) 30.13/12.48 new_compare0(:(x0, x1), [], x2) 30.13/12.48 new_esEs31(x0, x1, ty_Ordering) 30.13/12.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 30.13/12.48 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 30.13/12.48 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.48 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.48 new_ltEs19(x0, x1, ty_@0) 30.13/12.48 new_ltEs13(Left(x0), Right(x1), x2, x3) 30.13/12.48 new_ltEs13(Right(x0), Left(x1), x2, x3) 30.13/12.48 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs29(x0, x1, ty_Bool) 30.13/12.48 new_lt19(x0, x1, x2, x3) 30.13/12.48 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs29(x0, x1, ty_Float) 30.13/12.48 new_esEs32(x0, x1, ty_Double) 30.13/12.48 new_esEs30(x0, x1, ty_Bool) 30.13/12.48 new_esEs22(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs17(GT, GT) 30.13/12.48 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.13/12.48 new_primEqNat0(Succ(x0), Zero) 30.13/12.48 new_compare25(x0, x1, False) 30.13/12.48 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.13/12.48 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.13/12.48 new_esEs30(x0, x1, ty_Integer) 30.13/12.48 new_esEs27(x0, x1, ty_Integer) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Char) 30.13/12.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_primMulNat0(Succ(x0), Succ(x1)) 30.13/12.48 new_esEs26(x0, x1, ty_Double) 30.13/12.48 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.13/12.48 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_primCmpNat1(Succ(x0), Zero) 30.13/12.48 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.48 new_lt8(x0, x1, ty_Ordering) 30.13/12.48 new_ltEs14(x0, x1) 30.13/12.48 new_esEs28(x0, x1, ty_Float) 30.13/12.48 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.13/12.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.13/12.48 new_esEs20(x0, x1, ty_Int) 30.13/12.48 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_esEs26(x0, x1, ty_@0) 30.13/12.48 new_esEs28(x0, x1, ty_Int) 30.13/12.48 new_esEs16(@0, @0) 30.13/12.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 30.13/12.48 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 30.13/12.48 new_esEs29(x0, x1, ty_Int) 30.13/12.48 new_lt8(x0, x1, ty_Integer) 30.13/12.48 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.13/12.48 new_ltEs17(LT, EQ) 30.13/12.48 new_ltEs17(EQ, LT) 30.13/12.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.48 new_primPlusNat1(Succ(x0), x1) 30.13/12.48 new_ltEs8(Just(x0), Just(x1), ty_Bool) 30.13/12.49 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_pePe(False, x0) 30.13/12.49 new_esEs28(x0, x1, app(ty_[], x2)) 30.13/12.49 new_compare14(@0, @0) 30.13/12.49 new_lt8(x0, x1, ty_Int) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 30.13/12.49 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_esEs27(x0, x1, ty_Float) 30.13/12.49 new_ltEs20(x0, x1, ty_Float) 30.13/12.49 new_lt9(x0, x1, ty_Double) 30.13/12.49 new_ltEs21(x0, x1, ty_Double) 30.13/12.49 new_esEs29(x0, x1, ty_Char) 30.13/12.49 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_lt8(x0, x1, ty_Char) 30.13/12.49 new_primMulNat0(Zero, Zero) 30.13/12.49 new_lt10(x0, x1, x2) 30.13/12.49 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 30.13/12.49 new_esEs25(x0, x1, ty_Float) 30.13/12.49 new_esEs24(x0, x1, ty_Float) 30.13/12.49 new_lt17(x0, x1, x2) 30.13/12.49 new_compare27(Left(x0), Right(x1), False, x2, x3) 30.13/12.49 new_compare27(Right(x0), Left(x1), False, x2, x3) 30.13/12.49 new_lt9(x0, x1, ty_Ordering) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_Bool) 30.13/12.49 new_esEs4(Just(x0), Nothing, x1) 30.13/12.49 new_compare28(x0, x1, True, x2, x3) 30.13/12.49 new_primPlusNat0(Zero, Succ(x0)) 30.13/12.49 new_compare0([], [], x0) 30.13/12.49 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_Integer) 30.13/12.49 new_esEs17(True, True) 30.13/12.49 new_compare25(x0, x1, True) 30.13/12.49 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.13/12.49 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.49 new_ltEs21(x0, x1, ty_Ordering) 30.13/12.49 new_ltEs10(True, False) 30.13/12.49 new_ltEs10(False, True) 30.13/12.49 new_compare13(x0, x1, True) 30.13/12.49 new_compare11(x0, x1, x2, x3, x4) 30.13/12.49 new_ltEs7(x0, x1, ty_@0) 30.13/12.49 new_lt8(x0, x1, ty_Double) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.49 new_esEs32(x0, x1, ty_Integer) 30.13/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 30.13/12.49 new_ltEs21(x0, x1, ty_Int) 30.13/12.49 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 30.13/12.49 new_primCmpNat1(Zero, Succ(x0)) 30.13/12.49 new_esEs18(Float(x0, x1), Float(x2, x3)) 30.13/12.49 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 30.13/12.49 new_ltEs15(x0, x1) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.13/12.49 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_compare6(x0, x1, x2, x3) 30.13/12.49 new_esEs10(x0, x1, ty_Integer) 30.13/12.49 new_esEs31(x0, x1, ty_Integer) 30.13/12.49 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.49 new_primPlusNat0(Zero, Zero) 30.13/12.49 new_ltEs7(x0, x1, ty_Integer) 30.13/12.49 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 30.13/12.49 new_ltEs20(x0, x1, app(ty_[], x2)) 30.13/12.49 new_not(True) 30.13/12.49 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_primMulNat0(Succ(x0), Zero) 30.13/12.49 new_ltEs21(x0, x1, ty_Char) 30.13/12.49 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.13/12.49 new_esEs31(x0, x1, ty_Bool) 30.13/12.49 new_esEs31(x0, x1, ty_@0) 30.13/12.49 new_lt20(x0, x1, ty_Float) 30.13/12.49 new_esEs8(EQ, GT) 30.13/12.49 new_esEs8(GT, EQ) 30.13/12.49 new_lt9(x0, x1, ty_Char) 30.13/12.49 new_esEs32(x0, x1, ty_Float) 30.13/12.49 new_esEs29(x0, x1, ty_Ordering) 30.13/12.49 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 30.13/12.49 new_lt9(x0, x1, ty_Int) 30.13/12.49 new_asAs(True, x0) 30.13/12.49 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_ltEs19(x0, x1, app(ty_[], x2)) 30.13/12.49 new_esEs26(x0, x1, ty_Integer) 30.13/12.49 new_esEs25(x0, x1, app(ty_[], x2)) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 30.13/12.49 new_esEs17(False, True) 30.13/12.49 new_esEs17(True, False) 30.13/12.49 new_primEqNat0(Succ(x0), Succ(x1)) 30.13/12.49 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_ltEs7(x0, x1, ty_Bool) 30.13/12.49 new_compare16(x0, x1, False) 30.13/12.49 new_lt15(x0, x1) 30.13/12.49 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_@0) 30.13/12.49 new_lt12(x0, x1, x2, x3, x4) 30.13/12.49 new_ltEs7(x0, x1, ty_Char) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_Char) 30.13/12.49 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs22(x0, x1, ty_Double) 30.13/12.49 new_primCompAux00(x0, LT) 30.13/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.49 new_esEs9(:(x0, x1), [], x2) 30.13/12.49 new_lt8(x0, x1, ty_@0) 30.13/12.49 new_compare23(x0, x1, False, x2, x3, x4) 30.13/12.49 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs11(Char(x0), Char(x1)) 30.13/12.49 new_esEs22(x0, x1, ty_Int) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_Int) 30.13/12.49 new_compare26(x0, x1) 30.13/12.49 new_esEs22(x0, x1, app(ty_[], x2)) 30.13/12.49 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.13/12.49 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_pePe(True, x0) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.13/12.49 new_compare112(x0, x1, True, x2, x3) 30.13/12.49 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.49 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.49 new_lt9(x0, x1, ty_@0) 30.13/12.49 new_primMulInt(Pos(x0), Pos(x1)) 30.13/12.49 new_esEs24(x0, x1, ty_@0) 30.13/12.49 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_ltEs8(Nothing, Nothing, x0) 30.13/12.49 new_ltEs21(x0, x1, ty_@0) 30.13/12.49 new_lt7(x0, x1) 30.13/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 30.13/12.49 new_esEs21(x0, x1, ty_Ordering) 30.13/12.49 new_esEs31(x0, x1, ty_Char) 30.13/12.49 new_fsEs(x0) 30.13/12.49 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_ltEs17(LT, GT) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 30.13/12.49 new_ltEs17(GT, LT) 30.13/12.49 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 30.13/12.49 new_primMulInt(Pos(x0), Neg(x1)) 30.13/12.49 new_primMulInt(Neg(x0), Pos(x1)) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 30.13/12.49 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.13/12.49 new_esEs25(x0, x1, ty_Integer) 30.13/12.49 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_esEs32(x0, x1, ty_Char) 30.13/12.49 new_esEs8(LT, GT) 30.13/12.49 new_esEs8(GT, LT) 30.13/12.49 new_esEs23(x0, x1, ty_Double) 30.13/12.49 new_esEs31(x0, x1, ty_Int) 30.13/12.49 new_esEs21(x0, x1, ty_Float) 30.13/12.49 new_ltEs7(x0, x1, ty_Int) 30.13/12.49 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.13/12.49 new_esEs26(x0, x1, ty_Bool) 30.13/12.49 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.13/12.49 new_esEs25(x0, x1, ty_@0) 30.13/12.49 new_ltEs8(Just(x0), Just(x1), ty_@0) 30.13/12.49 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 30.13/12.49 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs32(x0, x1, ty_Int) 30.13/12.49 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_compare27(Left(x0), Left(x1), False, x2, x3) 30.13/12.49 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.49 new_lt14(x0, x1, x2) 30.13/12.49 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.13/12.49 new_esEs23(x0, x1, ty_Ordering) 30.13/12.49 new_lt13(x0, x1) 30.13/12.49 new_ltEs20(x0, x1, ty_Bool) 30.13/12.49 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.13/12.49 new_compare31(x0, x1, ty_Float) 30.13/12.49 new_lt9(x0, x1, ty_Integer) 30.13/12.49 new_esEs19(x0, x1, ty_Int) 30.13/12.49 new_ltEs7(x0, x1, ty_Float) 30.13/12.49 new_sr0(x0, x1) 30.13/12.49 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs31(x0, x1, ty_Float) 30.13/12.49 new_lt20(x0, x1, app(ty_[], x2)) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.13/12.49 new_esEs30(x0, x1, app(ty_[], x2)) 30.13/12.49 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.13/12.49 new_esEs29(x0, x1, ty_Double) 30.13/12.49 new_esEs26(x0, x1, ty_Int) 30.13/12.49 new_lt4(x0, x1, x2, x3) 30.13/12.49 new_compare111(x0, x1, True, x2, x3) 30.13/12.49 new_primEqNat0(Zero, Zero) 30.13/12.49 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_ltEs8(Nothing, Just(x0), x1) 30.13/12.49 new_ltEs19(x0, x1, ty_Float) 30.13/12.49 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_primCmpNat2(x0, Succ(x1)) 30.13/12.49 new_not(False) 30.13/12.49 new_esEs30(x0, x1, ty_Double) 30.13/12.49 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.13/12.49 new_esEs10(x0, x1, ty_@0) 30.13/12.49 new_esEs29(x0, x1, ty_@0) 30.13/12.49 new_esEs32(x0, x1, ty_Bool) 30.13/12.49 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 30.13/12.49 new_esEs10(x0, x1, ty_Double) 30.13/12.49 new_esEs24(x0, x1, app(ty_[], x2)) 30.13/12.49 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.13/12.49 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_ltEs17(EQ, GT) 30.13/12.49 new_ltEs17(GT, EQ) 30.13/12.49 new_ltEs11(x0, x1) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.13/12.49 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_compare16(x0, x1, True) 30.13/12.49 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.13/12.49 new_compare12(x0, x1, True, x2) 30.13/12.49 new_esEs19(x0, x1, ty_Integer) 30.13/12.49 new_esEs28(x0, x1, ty_Double) 30.13/12.49 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.13/12.49 new_esEs21(x0, x1, ty_Int) 30.13/12.49 new_esEs26(x0, x1, ty_Float) 30.13/12.49 new_ltEs9(x0, x1) 30.13/12.49 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.13/12.49 new_compare210(x0, x1, True, x2) 30.13/12.49 new_ltEs8(Just(x0), Just(x1), ty_Double) 30.13/12.49 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.13/12.49 new_compare24(x0, x1, True) 30.13/12.49 new_esEs26(x0, x1, ty_Char) 30.13/12.49 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.13/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.13/12.49 new_compare31(x0, x1, app(ty_[], x2)) 30.13/12.49 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.13/12.49 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.13/12.49 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.13/12.49 new_asAs(False, x0) 30.13/12.49 new_ltEs20(x0, x1, ty_Integer) 30.13/12.49 new_esEs4(Just(x0), Just(x1), ty_Ordering) 30.13/12.49 new_esEs21(x0, x1, ty_Char) 30.13/12.49 new_ltEs10(True, True) 30.13/12.49 new_compare10(x0, x1, True, x2, x3, x4) 30.13/12.49 new_ltEs20(x0, x1, ty_Ordering) 30.13/12.49 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_esEs28(x0, x1, ty_@0) 30.13/12.49 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.13/12.49 new_compare27(Right(x0), Right(x1), False, x2, x3) 30.13/12.49 30.13/12.49 We have to consider all minimal (P,Q,R)-chains. 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (33) QDPSizeChangeProof (EQUIVALENT) 30.13/12.49 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. 30.13/12.49 30.13/12.49 From the DPs we obtained the following set of size-change graphs: 30.13/12.49 *new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu34, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.49 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), LT), bc, bd, be) 30.13/12.49 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 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, bc, bd, be) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, bc), bc, bd), LT), bc, bd, be) 30.13/12.49 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 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, bc, bd, be) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, bc, bd), GT), bc, bd, be) 30.13/12.49 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 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C20(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, bc, bd, be) -> new_addToFM_C(xuu33, Left(xuu4000), xuu401, bc, bd, be) 30.13/12.49 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba, bb) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, h), h, ba), GT), h, ba, bb) 30.13/12.49 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 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu17, Left(xuu19), xuu20, h, ba, bb) 30.13/12.49 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.49 30.13/12.49 30.13/12.49 *new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba, bb) -> new_addToFM_C(xuu18, Left(xuu19), xuu20, h, ba, bb) 30.13/12.49 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 30.13/12.49 30.13/12.49 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (34) 30.13/12.49 YES 30.13/12.49 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (35) 30.13/12.49 Obligation: 30.13/12.49 Q DP problem: 30.13/12.49 The TRS P consists of the following rules: 30.13/12.49 30.13/12.49 new_primMulNat(Succ(xuu4000100), Succ(xuu300000)) -> new_primMulNat(xuu4000100, Succ(xuu300000)) 30.13/12.49 30.13/12.49 R is empty. 30.13/12.49 Q is empty. 30.13/12.49 We have to consider all minimal (P,Q,R)-chains. 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (36) QDPSizeChangeProof (EQUIVALENT) 30.13/12.49 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. 30.13/12.49 30.13/12.49 From the DPs we obtained the following set of size-change graphs: 30.13/12.49 *new_primMulNat(Succ(xuu4000100), Succ(xuu300000)) -> new_primMulNat(xuu4000100, Succ(xuu300000)) 30.13/12.49 The graph contains the following edges 1 > 1, 2 >= 2 30.13/12.49 30.13/12.49 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (37) 30.13/12.49 YES 30.13/12.49 30.13/12.49 ---------------------------------------- 30.13/12.49 30.13/12.49 (38) 30.13/12.49 Obligation: 30.13/12.49 Q DP problem: 30.13/12.49 The TRS P consists of the following rules: 30.13/12.49 30.13/12.49 new_foldl(xuu3, :(xuu40, xuu41), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba, bb), xuu41, h, ba, bb) 30.13/12.49 30.13/12.49 The TRS R consists of the following rules: 30.13/12.49 30.13/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(ty_Maybe, eaa)) -> new_ltEs8(xuu47000, xuu48000, eaa) 30.13/12.49 new_lt7(xuu47000, xuu48000) -> new_esEs8(new_compare9(xuu47000, xuu48000), LT) 30.13/12.49 new_primCmpInt(Neg(Succ(xuu4700)), Pos(xuu480)) -> LT 30.13/12.49 new_ltEs17(LT, EQ) -> True 30.13/12.49 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.13/12.49 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.49 new_compare10(xuu47000, xuu48000, True, da, db, dc) -> LT 30.13/12.49 new_esEs24(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.13/12.49 new_primPlusNat0(Zero, Zero) -> Zero 30.13/12.49 new_ltEs19(xuu47001, xuu48001, ty_Double) -> new_ltEs4(xuu47001, xuu48001) 30.13/12.49 new_compare27(Left(xuu4700), Right(xuu4800), False, bcb, bcc) -> LT 30.13/12.49 new_pePe(True, xuu204) -> True 30.13/12.49 new_ltEs19(xuu47001, xuu48001, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs6(xuu47001, xuu48001, fa, fb, fc) 30.13/12.49 new_esEs22(xuu47001, xuu48001, ty_Double) -> new_esEs14(xuu47001, xuu48001) 30.13/12.49 new_ltEs10(False, False) -> True 30.13/12.49 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.13/12.49 new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.13/12.49 new_esEs30(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.13/12.49 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4800))) -> new_primCmpNat0(Zero, xuu4800) 30.13/12.49 new_ltEs7(xuu47002, xuu48002, ty_Int) -> new_ltEs11(xuu47002, xuu48002) 30.13/12.49 new_lt4(xuu47000, xuu48000, gf, gg) -> new_esEs8(new_compare6(xuu47000, xuu48000, gf, gg), LT) 30.13/12.49 new_ltEs20(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.13/12.49 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.13/12.49 new_esEs27(xuu40001, xuu3001, app(ty_[], cbg)) -> new_esEs9(xuu40001, xuu3001, cbg) 30.13/12.49 new_addToFM_C25(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, dah, dba, dbb) -> new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare27(Left(xuu19), Left(xuu14), new_esEs29(xuu19, xuu14, dah), dah, dba), GT), dah, dba, dbb) 30.13/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, bfd), bee) -> new_esEs15(xuu40000, xuu3000, bfd) 30.13/12.49 new_esEs10(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.13/12.49 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.13/12.49 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4800))) -> GT 30.13/12.49 new_esEs29(xuu19, xuu14, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs5(xuu19, xuu14, dbf, dbg, dbh) 30.13/12.49 new_mkBalBranch6MkBalBranch30(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Right(xuu300), xuu31, xuu42, xuu34, app(app(ty_Either, h), ba), bb) 30.13/12.49 new_lt17(xuu47000, xuu48000, cde) -> new_esEs8(new_compare15(xuu47000, xuu48000, cde), LT) 30.13/12.49 new_esEs5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bhc, bhd, bhe) -> new_asAs(new_esEs26(xuu40000, xuu3000, bhc), new_asAs(new_esEs27(xuu40001, xuu3001, bhd), new_esEs28(xuu40002, xuu3002, bhe))) 30.13/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Ordering, bda) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.49 new_esEs24(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.13/12.49 new_ltEs19(xuu47001, xuu48001, app(ty_Ratio, fh)) -> new_ltEs16(xuu47001, xuu48001, fh) 30.13/12.49 new_lt8(xuu47001, xuu48001, ty_Ordering) -> new_lt18(xuu47001, xuu48001) 30.13/12.49 new_esEs30(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.13/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.13/12.49 new_ltEs19(xuu47001, xuu48001, app(ty_[], fd)) -> new_ltEs5(xuu47001, xuu48001, fd) 30.13/12.49 new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.13/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Float, bda) -> new_ltEs9(xuu47000, xuu48000) 30.13/12.49 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.13/12.49 new_addToFM_C23(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, gh, ha, hb) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, new_esEs8(new_compare27(Right(xuu36), Right(xuu31), new_esEs32(xuu36, xuu31, ha), gh, ha), GT), gh, ha, hb) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(ty_Ratio, bgg)) -> new_esEs15(xuu40000, xuu3000, bgg) 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, caf), cag)) -> new_esEs7(xuu40000, xuu3000, caf, cag) 30.34/12.49 new_compare111(xuu177, xuu178, True, dgc, dgd) -> LT 30.34/12.49 new_primMulNat0(Succ(xuu4000100), Succ(xuu300000)) -> new_primPlusNat1(new_primMulNat0(xuu4000100, Succ(xuu300000)), xuu300000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.34/12.49 new_lt18(xuu47000, xuu48000) -> new_esEs8(new_compare26(xuu47000, xuu48000), LT) 30.34/12.49 new_addToFM_C23(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, gh, ha, hb) -> new_mkBalBranch0(xuu31, xuu32, new_addToFM_C0(xuu34, Right(xuu36), xuu37, gh, ha, hb), xuu35, gh, ha, hb) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(ty_Ratio, cfg)) -> new_ltEs16(xuu47002, xuu48002, cfg) 30.34/12.49 new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch0(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Left(xuu4000), xuu401, h, ba, bb), h, ba, bb) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(ty_Maybe, cdf)) -> new_lt10(xuu47001, xuu48001, cdf) 30.34/12.49 new_primCmpNat1(Succ(xuu47000), Succ(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.34/12.49 new_ltEs4(xuu4700, xuu4800) -> new_fsEs(new_compare7(xuu4700, xuu4800)) 30.34/12.49 new_compare14(@0, @0) -> EQ 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(ty_[], cfd)) -> new_ltEs5(xuu47002, xuu48002, cfd) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bee) -> new_esEs12(xuu40000, xuu3000) 30.34/12.49 new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_sizeFM(xuu34, h, ba, bb) 30.34/12.49 new_esEs8(GT, GT) -> True 30.34/12.49 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.34/12.49 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.34/12.49 new_fsEs(xuu187) -> new_not(new_esEs8(xuu187, GT)) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(ty_Ratio, chb)) -> new_esEs15(xuu40000, xuu3000, chb) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(ty_[], eb)) -> new_esEs9(xuu47000, xuu48000, eb) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_@0) -> new_ltEs12(xuu47001, xuu48001) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.34/12.49 new_esEs8(EQ, EQ) -> True 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(ty_Maybe, cdf)) -> new_esEs4(xuu47001, xuu48001, cdf) 30.34/12.49 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Float) -> new_esEs18(xuu47001, xuu48001) 30.34/12.49 new_lt12(xuu47000, xuu48000, da, db, dc) -> new_esEs8(new_compare11(xuu47000, xuu48000, da, db, dc), LT) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(ty_[], ceb)) -> new_lt14(xuu47001, xuu48001, ceb) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(app(ty_@2, dd), de)) -> new_ltEs18(xuu4700, xuu4800, dd, de) 30.34/12.49 new_ltEs17(LT, GT) -> True 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Maybe, dgg), bda) -> new_ltEs8(xuu47000, xuu48000, dgg) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Bool) -> new_esEs17(xuu47001, xuu48001) 30.34/12.49 new_not(True) -> False 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs6(xuu47000, xuu48000, eab, eac, ead) 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.34/12.49 new_lt14(xuu47000, xuu48000, cdd) -> new_esEs8(new_compare0(xuu47000, xuu48000, cdd), LT) 30.34/12.49 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.34/12.49 new_primCompAux00(xuu228, LT) -> LT 30.34/12.49 new_addToFM_C0(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C23(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Right(xuu300), new_esEs31(xuu4000, xuu300, ba), h, ba), LT), h, ba, bb) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Int) -> new_esEs13(xuu19, xuu14) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs11(xuu40002, xuu3002) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.34/12.49 new_gt(xuu125, xuu124) -> new_esEs8(new_compare18(xuu125, xuu124), GT) 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.34/12.49 new_ltEs6(@3(xuu47000, xuu47001, xuu47002), @3(xuu48000, xuu48001, xuu48002), bce, bcf, bcg) -> new_pePe(new_lt9(xuu47000, xuu48000, bce), new_asAs(new_esEs21(xuu47000, xuu48000, bce), new_pePe(new_lt8(xuu47001, xuu48001, bcf), new_asAs(new_esEs22(xuu47001, xuu48001, bcf), new_ltEs7(xuu47002, xuu48002, bcg))))) 30.34/12.49 new_ltEs17(EQ, GT) -> True 30.34/12.49 new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Right(xuu300), xuu31, xuu42, xuu3433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(ty_Ratio, cg)) -> new_esEs15(xuu4000, xuu300, cg) 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.34/12.49 new_mkBalBranch(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, new_esEs8(new_primCmpInt0(xuu50, xuu300, xuu31, xuu34, h, ba, bb), LT), h, ba, bb) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_@0) -> new_lt15(xuu47001, xuu48001) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs6(xuu4700, xuu4800, bce, bcf, bcg) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Int) -> new_ltEs11(xuu47001, xuu48001) 30.34/12.49 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.34/12.49 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Integer) -> new_esEs12(xuu19, xuu14) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.34/12.49 new_esEs12(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Bool) -> new_lt6(xuu47001, xuu48001) 30.34/12.49 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(ty_Maybe, bcd)) -> new_ltEs8(xuu4700, xuu4800, bcd) 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_Integer) -> new_esEs12(xuu4000, xuu300) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(xuu4000, xuu300, dch, dda, ddb) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_lt20(xuu47000, xuu48000, app(ty_[], eb)) -> new_lt14(xuu47000, xuu48000, eb) 30.34/12.49 new_ltEs17(LT, LT) -> True 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(app(ty_@2, cef), ceg)) -> new_esEs7(xuu47001, xuu48001, cef, ceg) 30.34/12.49 new_primCompAux00(xuu228, GT) -> GT 30.34/12.49 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4800))) -> new_primCmpNat2(xuu4800, Zero) 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(ty_[], ceb)) -> new_esEs9(xuu47001, xuu48001, ceb) 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs5(xuu40001, xuu3001, daa, dab, dac) 30.34/12.49 new_primMinusNat0(Succ(xuu50200), Zero) -> Pos(Succ(xuu50200)) 30.34/12.49 new_lt10(xuu47000, xuu48000, gc) -> new_esEs8(new_compare30(xuu47000, xuu48000, gc), LT) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Float) -> new_esEs18(xuu36, xuu31) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Double) -> new_esEs14(xuu36, xuu31) 30.34/12.49 new_primPlusInt(Pos(xuu5020), Pos(xuu1320)) -> Pos(new_primPlusNat0(xuu5020, xuu1320)) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.34/12.49 new_primCmpInt(Pos(Succ(xuu4700)), Neg(xuu480)) -> GT 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(ty_Maybe, ceh)) -> new_ltEs8(xuu47002, xuu48002, ceh) 30.34/12.49 new_compare110(xuu47000, xuu48000, True, gd, ge) -> LT 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(xuu40000, xuu3000, cgg, cgh, cha) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(xuu4000, xuu300, bhc, bhd, bhe) 30.34/12.49 new_mkBalBranch6MkBalBranch30(xuu300, xuu31, EmptyFM, xuu34, True, h, ba, bb) -> error([]) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(app(ty_@2, cfh), cga)) -> new_ltEs18(xuu47002, xuu48002, cfh, cga) 30.34/12.49 new_compare16(xuu47000, xuu48000, False) -> GT 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Bool) -> new_esEs17(xuu36, xuu31) 30.34/12.49 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.34/12.49 new_primCompAux0(xuu47000, xuu48000, xuu214, bc) -> new_primCompAux00(xuu214, new_compare31(xuu47000, xuu48000, bc)) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_compare31(xuu47000, xuu48000, app(app(ty_Either, dff), dfg)) -> new_compare6(xuu47000, xuu48000, dff, dfg) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bee) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, dah, dba, dbb) -> new_mkBalBranch(xuu14, xuu15, xuu17, new_addToFM_C0(xuu18, Left(xuu19), xuu20, dah, dba, dbb), dah, dba, dbb) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(app(ty_@3, dgh), dha), dhb), bda) -> new_ltEs6(xuu47000, xuu48000, dgh, dha, dhb) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, bfa), bfb), bfc), bee) -> new_esEs5(xuu40000, xuu3000, bfa, bfb, bfc) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_@0) -> new_ltEs12(xuu47002, xuu48002) 30.34/12.49 new_compare27(Right(xuu4700), Left(xuu4800), False, bcb, bcc) -> GT 30.34/12.49 new_ltEs14(xuu4700, xuu4800) -> new_fsEs(new_compare19(xuu4700, xuu4800)) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(app(ty_Either, cfe), cff)) -> new_ltEs13(xuu47002, xuu48002, cfe, cff) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_@0) -> new_esEs16(xuu47001, xuu48001) 30.34/12.49 new_primCmpNat0(Succ(xuu4800), xuu4700) -> new_primCmpNat1(xuu4800, xuu4700) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.34/12.49 new_lt20(xuu47000, xuu48000, app(app(ty_@2, ef), eg)) -> new_lt19(xuu47000, xuu48000, ef, eg) 30.34/12.49 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(app(app(ty_@3, da), db), dc)) -> new_esEs5(xuu47000, xuu48000, da, db, dc) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.34/12.49 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.34/12.49 new_sr(Integer(xuu480000), Integer(xuu470010)) -> Integer(new_primMulInt(xuu480000, xuu470010)) 30.34/12.49 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, cbh), cca)) -> new_esEs7(xuu40001, xuu3001, cbh, cca) 30.34/12.49 new_lt9(xuu47000, xuu48000, app(ty_[], cdd)) -> new_lt14(xuu47000, xuu48000, cdd) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bee) -> new_esEs11(xuu40000, xuu3000) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(ty_Ratio, cc)) -> new_esEs15(xuu40000, xuu3000, cc) 30.34/12.49 new_lt20(xuu47000, xuu48000, app(app(app(ty_@3, dg), dh), ea)) -> new_lt12(xuu47000, xuu48000, dg, dh, ea) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Int) -> new_esEs13(xuu36, xuu31) 30.34/12.49 new_pePe(False, xuu204) -> xuu204 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.34/12.49 new_ltEs13(Left(xuu47000), Right(xuu48000), bch, bda) -> True 30.34/12.49 new_compare29(xuu47000, xuu48000, gd, ge) -> new_compare28(xuu47000, xuu48000, new_esEs7(xuu47000, xuu48000, gd, ge), gd, ge) 30.34/12.49 new_compare210(xuu47000, xuu48000, True, gc) -> EQ 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.34/12.49 new_compare24(xuu47000, xuu48000, False) -> new_compare13(xuu47000, xuu48000, new_ltEs17(xuu47000, xuu48000)) 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(app(ty_Either, cec), ced)) -> new_esEs6(xuu47001, xuu48001, cec, ced) 30.34/12.49 new_compare112(xuu184, xuu185, True, dge, dgf) -> LT 30.34/12.49 new_primMinusNat0(Succ(xuu50200), Succ(xuu13200)) -> new_primMinusNat0(xuu50200, xuu13200) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Ordering) -> new_ltEs17(xuu47002, xuu48002) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Char, bda) -> new_ltEs15(xuu47000, xuu48000) 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.34/12.49 new_esEs11(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bee) -> new_esEs8(xuu40000, xuu3000) 30.34/12.49 new_esEs8(LT, EQ) -> False 30.34/12.49 new_esEs8(EQ, LT) -> False 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_Either, dhd), dhe), bda) -> new_ltEs13(xuu47000, xuu48000, dhd, dhe) 30.34/12.49 new_esEs9(:(xuu40000, xuu40001), [], bd) -> False 30.34/12.49 new_esEs9([], :(xuu3000, xuu3001), bd) -> False 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(ty_Maybe, df)) -> new_esEs4(xuu47000, xuu48000, df) 30.34/12.49 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.34/12.49 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.34/12.49 new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch30(xuu300, xuu31, xuu42, xuu34, new_gt(new_mkBalBranch6Size_l0(xuu300, xuu31, xuu42, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb))), h, ba, bb) 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(ty_[], cae)) -> new_esEs9(xuu40000, xuu3000, cae) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs16(xuu40002, xuu3002) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Int) -> new_ltEs11(xuu4700, xuu4800) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.34/12.49 new_ltEs13(Right(xuu47000), Left(xuu48000), bch, bda) -> False 30.34/12.49 new_ltEs10(True, False) -> False 30.34/12.49 new_mkBalBranch0(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, new_esEs8(new_primCmpInt1(xuu42, xuu300, xuu31, xuu34, h, ba, bb), LT), h, ba, bb) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_@0) -> new_ltEs12(xuu4700, xuu4800) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(xuu40000, xuu3000, bba, bbb, bbc) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.34/12.49 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.34/12.49 new_compare31(xuu47000, xuu48000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_compare11(xuu47000, xuu48000, dfb, dfc, dfd) 30.34/12.49 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4800))) -> LT 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(app(ty_Either, bch), bda)) -> new_ltEs13(xuu4700, xuu4800, bch, bda) 30.34/12.49 new_emptyFM(h, ba, bb) -> EmptyFM 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Float) -> new_ltEs9(xuu47002, xuu48002) 30.34/12.49 new_primMulInt(Pos(xuu400010), Pos(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.34/12.49 new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu42, EmptyFM, True, h, ba, bb) -> error([]) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.34/12.49 new_lt6(xuu47000, xuu48000) -> new_esEs8(new_compare8(xuu47000, xuu48000), LT) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(app(ty_Either, cge), cgf)) -> new_esEs6(xuu40000, xuu3000, cge, cgf) 30.34/12.49 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.34/12.49 new_compare7(Double(xuu47000, Neg(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Integer) -> new_lt16(xuu47001, xuu48001) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, beg), beh), bee) -> new_esEs6(xuu40000, xuu3000, beg, beh) 30.34/12.49 new_compare12(xuu47000, xuu48000, False, gc) -> GT 30.34/12.49 new_esEs32(xuu36, xuu31, ty_@0) -> new_esEs16(xuu36, xuu31) 30.34/12.49 new_lt11(xuu47000, xuu48000) -> new_esEs8(new_compare17(xuu47000, xuu48000), LT) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs6(xuu47000, xuu48000, ddh, dea, deb) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Float) -> new_lt11(xuu47001, xuu48001) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Ratio, bbd)) -> new_esEs15(xuu40000, xuu3000, bbd) 30.34/12.49 new_lt13(xuu470, xuu480) -> new_esEs8(new_compare18(xuu470, xuu480), LT) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Double) -> new_ltEs4(xuu47000, xuu48000) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, app(ty_Maybe, eh)) -> new_ltEs8(xuu47001, xuu48001, eh) 30.34/12.49 new_primMulNat0(Succ(xuu4000100), Zero) -> Zero 30.34/12.49 new_primMulNat0(Zero, Succ(xuu300000)) -> Zero 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(app(ty_Either, bf), bg)) -> new_esEs6(xuu40000, xuu3000, bf, bg) 30.34/12.49 new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(xuu300, xuu31, xuu50, xuu34, new_gt(new_mkBalBranch6Size_l(xuu300, xuu31, xuu50, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb))), h, ba, bb) 30.34/12.49 new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> Branch(Left(xuu4000), new_addListToFM0(xuu31, xuu401, bb), xuu32, xuu33, xuu34) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xuu47000, xuu48000, dg, dh, ea) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, app(app(ty_Either, ff), fg)) -> new_ltEs13(xuu47001, xuu48001, ff, fg) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(xuu40000, xuu3000, bgd, bge, bgf) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(ty_Maybe, dce)) -> new_esEs4(xuu4000, xuu300, dce) 30.34/12.49 new_primPlusNat1(Succ(xuu1410), xuu300000) -> Succ(Succ(new_primPlusNat0(xuu1410, xuu300000))) 30.34/12.49 new_primCmpInt1(EmptyFM, xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu300, xuu31, EmptyFM, xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_Ratio, dhf), bda) -> new_ltEs16(xuu47000, xuu48000, dhf) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.34/12.49 new_primCmpNat0(Zero, xuu4700) -> LT 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, bff), bfg), bee) -> new_esEs7(xuu40000, xuu3000, bff, bfg) 30.34/12.49 new_primPlusNat0(Succ(xuu50200), Zero) -> Succ(xuu50200) 30.34/12.49 new_primPlusNat0(Zero, Succ(xuu13200)) -> Succ(xuu13200) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_@0, bda) -> new_ltEs12(xuu47000, xuu48000) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Integer) -> new_ltEs14(xuu47001, xuu48001) 30.34/12.49 new_primPlusNat1(Zero, xuu300000) -> Succ(xuu300000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.34/12.49 new_esEs32(xuu36, xuu31, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu36, xuu31, hf, hg, hh) 30.34/12.49 new_esEs8(LT, LT) -> True 30.34/12.49 new_compare25(xuu47000, xuu48000, False) -> new_compare16(xuu47000, xuu48000, new_ltEs10(xuu47000, xuu48000)) 30.34/12.49 new_compare19(Integer(xuu47000), Integer(xuu48000)) -> new_primCmpInt(xuu47000, xuu48000) 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(ty_Ratio, cee)) -> new_esEs15(xuu47001, xuu48001, cee) 30.34/12.49 new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, EmptyFM, xuu34, False, h, ba, bb) -> error([]) 30.34/12.49 new_primCmpInt0(EmptyFM, xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu300, xuu31, EmptyFM, xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) 30.34/12.49 new_compare6(xuu47000, xuu48000, gf, gg) -> new_compare27(xuu47000, xuu48000, new_esEs6(xuu47000, xuu48000, gf, gg), gf, gg) 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.34/12.49 new_addToFM_C16(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, dah, dba, dbb) -> Branch(Left(xuu19), new_addListToFM0(xuu15, xuu20, dbb), xuu16, xuu17, xuu18) 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(ty_Maybe, be)) -> new_esEs4(xuu40000, xuu3000, be) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(ty_[], dhc), bda) -> new_ltEs5(xuu47000, xuu48000, dhc) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(ty_Ratio, ee)) -> new_esEs15(xuu47000, xuu48000, ee) 30.34/12.49 new_ltEs10(False, True) -> True 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs14(xuu40002, xuu3002) 30.34/12.49 new_lt9(xuu47000, xuu48000, app(app(ty_Either, gf), gg)) -> new_lt4(xuu47000, xuu48000, gf, gg) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_@0) -> new_esEs16(xuu4000, xuu300) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Ordering) -> new_ltEs17(xuu47001, xuu48001) 30.34/12.49 new_mkBalBranch6MkBalBranch3(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Left(xuu300), xuu31, xuu50, xuu34, app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Bool) -> new_esEs17(xuu19, xuu14) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Ratio, def)) -> new_ltEs16(xuu47000, xuu48000, def) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(ty_[], bgh)) -> new_esEs9(xuu40000, xuu3000, bgh) 30.34/12.49 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Int) -> new_compare18(new_sr0(xuu47000, xuu48001), new_sr0(xuu48000, xuu47001)) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(ty_Maybe, gc)) -> new_esEs4(xuu47000, xuu48000, gc) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Int) -> new_esEs13(xuu47001, xuu48001) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Integer, bda) -> new_ltEs14(xuu47000, xuu48000) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_[], dec)) -> new_ltEs5(xuu47000, xuu48000, dec) 30.34/12.49 new_primMulInt(Neg(xuu400010), Neg(xuu30000)) -> Pos(new_primMulNat0(xuu400010, xuu30000)) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Char) -> new_ltEs15(xuu47001, xuu48001) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Double) -> new_esEs14(xuu19, xuu14) 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(app(ty_@2, daf), dag)) -> new_esEs7(xuu40001, xuu3001, daf, dag) 30.34/12.49 new_compare8(xuu47000, xuu48000) -> new_compare25(xuu47000, xuu48000, new_esEs17(xuu47000, xuu48000)) 30.34/12.49 new_lt16(xuu47000, xuu48000) -> new_esEs8(new_compare19(xuu47000, xuu48000), LT) 30.34/12.49 new_addListToFM0(xuu15, xuu20, dbb) -> xuu20 30.34/12.49 new_lt20(xuu47000, xuu48000, app(ty_Maybe, df)) -> new_lt10(xuu47000, xuu48000, df) 30.34/12.49 new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Right(xuu300), xuu31, xuu42, xuu343, app(app(ty_Either, h), ba), bb), xuu344, app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs32(xuu36, xuu31, app(ty_Maybe, hc)) -> new_esEs4(xuu36, xuu31, hc) 30.34/12.49 new_primCmpInt1(Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu422, new_mkBalBranch6Size_r0(xuu300, xuu31, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) 30.34/12.49 new_lt20(xuu47000, xuu48000, app(ty_Ratio, ee)) -> new_lt17(xuu47000, xuu48000, ee) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Bool) -> new_ltEs10(xuu47000, xuu48000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(app(ty_@2, bha), bhb)) -> new_esEs7(xuu40000, xuu3000, bha, bhb) 30.34/12.49 new_ltEs16(xuu4700, xuu4800, bdb) -> new_fsEs(new_compare15(xuu4700, xuu4800, bdb)) 30.34/12.49 new_compare15(:%(xuu47000, xuu47001), :%(xuu48000, xuu48001), ty_Integer) -> new_compare19(new_sr(xuu47000, xuu48001), new_sr(xuu48000, xuu47001)) 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs5(xuu40000, xuu3000, bh, ca, cb) 30.34/12.49 new_ltEs17(EQ, EQ) -> True 30.34/12.49 new_compare31(xuu47000, xuu48000, app(app(ty_@2, dga), dgb)) -> new_compare29(xuu47000, xuu48000, dga, dgb) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Ordering) -> new_ltEs17(xuu4700, xuu4800) 30.34/12.49 new_primCmpNat2(xuu4700, Zero) -> GT 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_Maybe, baf)) -> new_esEs4(xuu40000, xuu3000, baf) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Ordering) -> new_esEs8(xuu47000, xuu48000) 30.34/12.49 new_lt19(xuu47000, xuu48000, gd, ge) -> new_esEs8(new_compare29(xuu47000, xuu48000, gd, ge), LT) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Int) -> new_compare18(xuu47000, xuu48000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(app(ty_Either, ec), ed)) -> new_esEs6(xuu47000, xuu48000, ec, ed) 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(ty_[], chc)) -> new_esEs9(xuu40000, xuu3000, chc) 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(ty_[], cd)) -> new_esEs9(xuu40000, xuu3000, cd) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(app(ty_Either, gf), gg)) -> new_esEs6(xuu47000, xuu48000, gf, gg) 30.34/12.49 new_compare18(xuu47, xuu48) -> new_primCmpInt(xuu47, xuu48) 30.34/12.49 new_ltEs17(GT, LT) -> False 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_ltEs17(EQ, LT) -> False 30.34/12.49 new_compare16(xuu47000, xuu48000, True) -> LT 30.34/12.49 new_primMulInt(Pos(xuu400010), Neg(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.34/12.49 new_primMulInt(Neg(xuu400010), Pos(xuu30000)) -> Neg(new_primMulNat0(xuu400010, xuu30000)) 30.34/12.49 new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba, bb) -> error([]) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Ordering) -> new_esEs8(xuu47001, xuu48001) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(ty_Maybe, bae)) -> new_esEs4(xuu4000, xuu300, bae) 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(ty_Maybe, cgd)) -> new_esEs4(xuu40000, xuu3000, cgd) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(app(ty_Either, bgb), bgc)) -> new_esEs6(xuu40000, xuu3000, bgb, bgc) 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, cad)) -> new_esEs15(xuu40000, xuu3000, cad) 30.34/12.49 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cgb, cgc) -> new_asAs(new_esEs24(xuu40000, xuu3000, cgb), new_esEs25(xuu40001, xuu3001, cgc)) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.34/12.49 new_compare31(xuu47000, xuu48000, app(ty_[], dfe)) -> new_compare0(xuu47000, xuu48000, dfe) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Float) -> new_lt11(xuu47000, xuu48000) 30.34/12.49 new_compare10(xuu47000, xuu48000, False, da, db, dc) -> GT 30.34/12.49 new_primCmpNat1(Succ(xuu47000), Zero) -> GT 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 30.34/12.49 new_esEs22(xuu47001, xuu48001, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(xuu47001, xuu48001, cdg, cdh, cea) 30.34/12.49 new_primPlusInt(Neg(xuu5020), Neg(xuu1320)) -> Neg(new_primPlusNat0(xuu5020, xuu1320)) 30.34/12.49 new_primCmpNat2(xuu4700, Succ(xuu4800)) -> new_primCmpNat1(xuu4700, xuu4800) 30.34/12.49 new_ltEs9(xuu4700, xuu4800) -> new_fsEs(new_compare17(xuu4700, xuu4800)) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Integer) -> new_ltEs14(xuu4700, xuu4800) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Char) -> new_ltEs15(xuu47002, xuu48002) 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Int) -> new_esEs13(xuu47000, xuu48000) 30.34/12.49 new_esEs9(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bd) -> new_asAs(new_esEs10(xuu40000, xuu3000, bd), new_esEs9(xuu40001, xuu3001, bd)) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Float) -> new_compare17(xuu47000, xuu48000) 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_Double) -> new_esEs14(xuu4000, xuu300) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bag), bah)) -> new_esEs6(xuu40000, xuu3000, bag, bah) 30.34/12.49 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Integer) -> new_ltEs14(xuu47002, xuu48002) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Char) -> new_ltEs15(xuu4700, xuu4800) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.34/12.49 new_lt9(xuu47000, xuu48000, app(ty_Ratio, cde)) -> new_lt17(xuu47000, xuu48000, cde) 30.34/12.49 new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_sizeFM(xuu34, h, ba, bb) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(ty_[], ddd)) -> new_esEs9(xuu4000, xuu300, ddd) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_@0) -> new_esEs16(xuu19, xuu14) 30.34/12.49 new_compare0([], :(xuu48000, xuu48001), bc) -> LT 30.34/12.49 new_asAs(True, xuu172) -> xuu172 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Char) -> new_lt7(xuu47001, xuu48001) 30.34/12.49 new_esEs32(xuu36, xuu31, app(ty_Ratio, baa)) -> new_esEs15(xuu36, xuu31, baa) 30.34/12.49 new_esEs17(False, True) -> False 30.34/12.49 new_esEs17(True, False) -> False 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(ty_[], dae)) -> new_esEs9(xuu40001, xuu3001, dae) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_@0) -> new_ltEs12(xuu47000, xuu48000) 30.34/12.49 new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba, bb) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Double) -> new_compare7(xuu47000, xuu48000) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(app(ty_Either, cec), ced)) -> new_lt4(xuu47001, xuu48001, cec, ced) 30.34/12.49 new_esEs6(Left(xuu40000), Right(xuu3000), bfh, bee) -> False 30.34/12.49 new_esEs6(Right(xuu40000), Left(xuu3000), bfh, bee) -> False 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(app(ty_Either, eaf), eag)) -> new_ltEs13(xuu47000, xuu48000, eaf, eag) 30.34/12.49 new_esEs16(@0, @0) -> True 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(app(ty_@2, eba), ebb)) -> new_ltEs18(xuu47000, xuu48000, eba, ebb) 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(ty_Ratio, cde)) -> new_esEs15(xuu47000, xuu48000, cde) 30.34/12.49 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 30.34/12.49 new_compare111(xuu177, xuu178, False, dgc, dgd) -> GT 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bee) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_primPlusInt(Pos(xuu5020), Neg(xuu1320)) -> new_primMinusNat0(xuu5020, xuu1320) 30.34/12.49 new_primPlusInt(Neg(xuu5020), Pos(xuu1320)) -> new_primMinusNat0(xuu1320, xuu5020) 30.34/12.49 new_addToFM_C0(Branch(Right(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C26(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, h, ba), LT), h, ba, bb) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Char) -> new_esEs11(xuu36, xuu31) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Double) -> new_lt5(xuu47000, xuu48000) 30.34/12.49 new_esEs24(xuu40000, xuu3000, app(app(ty_@2, chd), che)) -> new_esEs7(xuu40000, xuu3000, chd, che) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xuu4000, xuu300, cgb, cgc) 30.34/12.49 new_compare30(xuu47000, xuu48000, gc) -> new_compare210(xuu47000, xuu48000, new_esEs4(xuu47000, xuu48000, gc), gc) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Char) -> new_lt7(xuu47000, xuu48000) 30.34/12.49 new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu42, xuu34, new_gt(new_mkBalBranch6Size_r0(xuu300, xuu31, xuu42, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu300, xuu31, xuu42, xuu34, h, ba, bb))), h, ba, bb) 30.34/12.49 new_esEs18(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.34/12.49 new_primCompAux00(xuu228, EQ) -> xuu228 30.34/12.49 new_compare0([], [], bc) -> EQ 30.34/12.49 new_compare210(xuu47000, xuu48000, False, gc) -> new_compare12(xuu47000, xuu48000, new_ltEs8(xuu47000, xuu48000, gc), gc) 30.34/12.49 new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, h, ba), GT), h, ba, bb) 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_primCmpInt0(Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu300, xuu31, xuu34, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu502, new_mkBalBranch6Size_r(xuu300, xuu31, Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu34, h, ba, bb)), Pos(Succ(Succ(Zero)))) 30.34/12.49 new_primMulNat0(Zero, Zero) -> Zero 30.34/12.49 new_ltEs10(True, True) -> True 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) 30.34/12.49 new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, xuu504, xuu34, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu500, xuu501, xuu503, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Left(xuu300), xuu31, xuu504, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_sizeFM(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba, bb) -> xuu342 30.34/12.49 new_esEs10(xuu40000, xuu3000, ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bef), bee) -> new_esEs4(xuu40000, xuu3000, bef) 30.34/12.49 new_primCmpNat1(Zero, Zero) -> EQ 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, bhg), bhh)) -> new_esEs6(xuu40000, xuu3000, bhg, bhh) 30.34/12.49 new_esEs32(xuu36, xuu31, app(app(ty_Either, hd), he)) -> new_esEs6(xuu36, xuu31, hd, he) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ccb)) -> new_esEs4(xuu40002, xuu3002, ccb) 30.34/12.49 new_esEs23(xuu47000, xuu48000, app(app(ty_@2, ef), eg)) -> new_esEs7(xuu47000, xuu48000, ef, eg) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(ty_[], cdd)) -> new_esEs9(xuu47000, xuu48000, cdd) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_@0) -> new_esEs16(xuu47000, xuu48000) 30.34/12.49 new_lt15(xuu47000, xuu48000) -> new_esEs8(new_compare14(xuu47000, xuu48000), LT) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(ty_[], bbe)) -> new_esEs9(xuu40000, xuu3000, bbe) 30.34/12.49 new_esEs4(Nothing, Nothing, bae) -> True 30.34/12.49 new_compare23(xuu47000, xuu48000, False, da, db, dc) -> new_compare10(xuu47000, xuu48000, new_ltEs6(xuu47000, xuu48000, da, db, dc), da, db, dc) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_@0) -> new_compare14(xuu47000, xuu48000) 30.34/12.49 new_esEs4(Nothing, Just(xuu3000), bae) -> False 30.34/12.49 new_esEs4(Just(xuu40000), Nothing, bae) -> False 30.34/12.49 new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba, bb) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba, bb) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(app(ty_Either, dcf), dcg)) -> new_esEs6(xuu4000, xuu300, dcf, dcg) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Char) -> new_esEs11(xuu47000, xuu48000) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt12(xuu47001, xuu48001, cdg, cdh, cea) 30.34/12.49 new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, gh, ha, hb) -> new_mkBalBranch0(xuu31, xuu32, xuu34, new_addToFM_C0(xuu35, Right(xuu36), xuu37, gh, ha, hb), gh, ha, hb) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, app(ty_Maybe, bga)) -> new_esEs4(xuu40000, xuu3000, bga) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_@2, deg), deh)) -> new_ltEs18(xuu47000, xuu48000, deg, deh) 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(app(ty_Either, chg), chh)) -> new_esEs6(xuu40001, xuu3001, chg, chh) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Ordering) -> new_esEs8(xuu36, xuu31) 30.34/12.49 new_addToFM_C26(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> new_addToFM_C15(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Right(xuu300), False, h, ba), GT), h, ba, bb) 30.34/12.49 new_ltEs12(xuu4700, xuu4800) -> new_fsEs(new_compare14(xuu4700, xuu4800)) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs12(xuu40002, xuu3002) 30.34/12.49 new_addToFM_C0(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Right(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Right(xuu4000), Left(xuu300), False, h, ba), LT), h, ba, bb) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(ty_Maybe, bdc)) -> new_ltEs8(xuu4700, xuu4800, bdc) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Int, bda) -> new_ltEs11(xuu47000, xuu48000) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(ty_Maybe, ddg)) -> new_ltEs8(xuu47000, xuu48000, ddg) 30.34/12.49 new_lt5(xuu47000, xuu48000) -> new_esEs8(new_compare7(xuu47000, xuu48000), LT) 30.34/12.49 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.34/12.49 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.34/12.49 new_ltEs8(Nothing, Just(xuu48000), bcd) -> True 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), app(app(ty_Either, ded), dee)) -> new_ltEs13(xuu47000, xuu48000, ded, dee) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Char) -> new_esEs11(xuu47001, xuu48001) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Float) -> new_esEs18(xuu47000, xuu48000) 30.34/12.49 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.34/12.49 new_lt9(xuu47000, xuu48000, app(app(app(ty_@3, da), db), dc)) -> new_lt12(xuu47000, xuu48000, da, db, dc) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(app(ty_@2, bec), bed)) -> new_ltEs18(xuu4700, xuu4800, bec, bed) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Bool) -> new_compare8(xuu47000, xuu48000) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, cdb), cdc)) -> new_esEs7(xuu40002, xuu3002, cdb, cdc) 30.34/12.49 new_compare24(xuu47000, xuu48000, True) -> EQ 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_mkBalBranch6MkBalBranch40(xuu300, xuu31, xuu42, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt13(new_sizeFM(xuu343, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu344, h, ba, bb))), h, ba, bb) 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs11(xuu40001, xuu3001) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Float) -> new_ltEs9(xuu4700, xuu4800) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) 30.34/12.49 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.34/12.49 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.34/12.49 new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Right(xuu4000), xuu401, h, ba, bb), h, ba, bb) 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(ty_Ratio, dad)) -> new_esEs15(xuu40001, xuu3001, dad) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(ty_Ratio, ddc)) -> new_esEs15(xuu4000, xuu300, ddc) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(app(ty_Either, bdh), bea)) -> new_ltEs13(xuu4700, xuu4800, bdh, bea) 30.34/12.49 new_esEs15(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cg) -> new_asAs(new_esEs19(xuu40000, xuu3000, cg), new_esEs20(xuu40001, xuu3001, cg)) 30.34/12.49 new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Left(xuu300), xuu31, xuu50, xuu3433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs18(xuu40000, xuu3000) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Float) -> new_ltEs9(xuu47000, xuu48000) 30.34/12.49 new_esEs29(xuu19, xuu14, app(ty_Maybe, dbc)) -> new_esEs4(xuu19, xuu14, dbc) 30.34/12.49 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.34/12.49 new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, Branch(xuu5040, xuu5041, xuu5042, xuu5043, xuu5044), xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu5040, xuu5041, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu500, xuu501, xuu503, xuu5043, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Left(xuu300), xuu31, xuu5044, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs17(True, True) -> True 30.34/12.49 new_sizeFM0(Branch(xuu2610, xuu2611, xuu2612, xuu2613, xuu2614), bbh, bca) -> xuu2612 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Float) -> new_ltEs9(xuu47001, xuu48001) 30.34/12.49 new_compare12(xuu47000, xuu48000, True, gc) -> LT 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Char) -> new_esEs11(xuu4000, xuu300) 30.34/12.49 new_ltEs18(@2(xuu47000, xuu47001), @2(xuu48000, xuu48001), dd, de) -> new_pePe(new_lt20(xuu47000, xuu48000, dd), new_asAs(new_esEs23(xuu47000, xuu48000, dd), new_ltEs19(xuu47001, xuu48001, de))) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Int) -> new_ltEs11(xuu47000, xuu48000) 30.34/12.49 new_compare112(xuu184, xuu185, False, dge, dgf) -> GT 30.34/12.49 new_compare23(xuu47000, xuu48000, True, da, db, dc) -> EQ 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(ty_Ratio, cee)) -> new_lt17(xuu47001, xuu48001, cee) 30.34/12.49 new_esEs23(xuu47000, xuu48000, ty_Bool) -> new_esEs17(xuu47000, xuu48000) 30.34/12.49 new_not(False) -> True 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Double) -> new_esEs14(xuu47000, xuu48000) 30.34/12.49 new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu50, xuu34, new_gt(new_mkBalBranch6Size_r(xuu300, xuu31, xuu50, xuu34, h, ba, bb), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu300, xuu31, xuu50, xuu34, h, ba, bb))), h, ba, bb) 30.34/12.49 new_lt9(xuu47000, xuu48000, app(ty_Maybe, gc)) -> new_lt10(xuu47000, xuu48000, gc) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Double, bda) -> new_ltEs4(xuu47000, xuu48000) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) 30.34/12.49 new_esEs31(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) 30.34/12.49 new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, EmptyFM, xuu34, False, h, ba, bb) -> error([]) 30.34/12.49 new_esEs32(xuu36, xuu31, app(ty_[], bab)) -> new_esEs9(xuu36, xuu31, bab) 30.34/12.49 new_compare0(:(xuu47000, xuu47001), [], bc) -> GT 30.34/12.49 new_addToFM_C0(Branch(Left(xuu300), xuu31, xuu32, xuu33, xuu34), Left(xuu4000), xuu401, h, ba, bb) -> new_addToFM_C25(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare27(Left(xuu4000), Left(xuu300), new_esEs30(xuu4000, xuu300, h), h, ba), LT), h, ba, bb) 30.34/12.49 new_esEs8(LT, GT) -> False 30.34/12.49 new_esEs8(GT, LT) -> False 30.34/12.49 new_compare27(Right(xuu4700), Right(xuu4800), False, bcb, bcc) -> new_compare112(xuu4700, xuu4800, new_ltEs21(xuu4700, xuu4800, bcc), bcb, bcc) 30.34/12.49 new_primPlusNat0(Succ(xuu50200), Succ(xuu13200)) -> Succ(Succ(new_primPlusNat0(xuu50200, xuu13200))) 30.34/12.49 new_esEs29(xuu19, xuu14, app(app(ty_Either, dbd), dbe)) -> new_esEs6(xuu19, xuu14, dbd, dbe) 30.34/12.49 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, cbf)) -> new_esEs15(xuu40001, xuu3001, cbf) 30.34/12.49 new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, xuu424, xuu34, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu420, xuu421, xuu423, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Right(xuu300), xuu31, xuu424, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], bfe), bee) -> new_esEs9(xuu40000, xuu3000, bfe) 30.34/12.49 new_esEs14(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr0(xuu40000, xuu3001), new_sr0(xuu40001, xuu3000)) 30.34/12.49 new_primCmpInt(Pos(Succ(xuu4700)), Pos(xuu480)) -> new_primCmpNat2(xuu4700, xuu480) 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_mkBranch(xuu257, xuu258, xuu259, xuu260, xuu261, bbh, bca) -> Branch(xuu258, xuu259, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu260, bbh, bca)), new_sizeFM0(xuu261, bbh, bca)), xuu260, xuu261) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs5(xuu40002, xuu3002, cce, ccf, ccg) 30.34/12.49 new_esEs29(xuu19, xuu14, app(ty_Ratio, dca)) -> new_esEs15(xuu19, xuu14, dca) 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_Double) -> new_esEs14(xuu40001, xuu3001) 30.34/12.49 new_compare27(xuu470, xuu480, True, bcb, bcc) -> EQ 30.34/12.49 new_compare25(xuu47000, xuu48000, True) -> EQ 30.34/12.49 new_esEs29(xuu19, xuu14, app(app(ty_@2, dcc), dcd)) -> new_esEs7(xuu19, xuu14, dcc, dcd) 30.34/12.49 new_compare13(xuu47000, xuu48000, True) -> LT 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bee) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_compare11(xuu47000, xuu48000, da, db, dc) -> new_compare23(xuu47000, xuu48000, new_esEs5(xuu47000, xuu48000, da, db, dc), da, db, dc) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(ty_[], bdg)) -> new_ltEs5(xuu4700, xuu4800, bdg) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Char) -> new_compare9(xuu47000, xuu48000) 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Double) -> new_lt5(xuu47001, xuu48001) 30.34/12.49 new_addToFM_C26(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch0(xuu300, xuu31, new_addToFM_C0(xuu33, Left(xuu4000), xuu401, h, ba, bb), xuu34, h, ba, bb) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bee) -> new_esEs14(xuu40000, xuu3000) 30.34/12.49 new_esEs6(Right(xuu40000), Right(xuu3000), bfh, ty_Char) -> new_esEs11(xuu40000, xuu3000) 30.34/12.49 new_primCmpNat1(Zero, Succ(xuu48000)) -> LT 30.34/12.49 new_addToFM_C24(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba, bb) -> new_mkBalBranch(xuu300, xuu31, new_addToFM_C0(xuu33, Right(xuu4000), xuu401, h, ba, bb), xuu34, h, ba, bb) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(app(ty_Either, bfh), bee)) -> new_esEs6(xuu4000, xuu300, bfh, bee) 30.34/12.49 new_sr0(xuu40001, xuu3000) -> new_primMulInt(xuu40001, xuu3000) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, app(app(ty_@2, ga), gb)) -> new_ltEs18(xuu47001, xuu48001, ga, gb) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Bool) -> new_ltEs10(xuu47002, xuu48002) 30.34/12.49 new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, gh, ha, hb) -> Branch(Right(xuu36), new_addListToFM0(xuu32, xuu37, hb), xuu33, xuu34, xuu35) 30.34/12.49 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.34/12.49 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 30.34/12.49 new_compare9(Char(xuu47000), Char(xuu48000)) -> new_primCmpNat1(xuu47000, xuu48000) 30.34/12.49 new_esEs22(xuu47001, xuu48001, ty_Integer) -> new_esEs12(xuu47001, xuu48001) 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 30.34/12.49 new_compare17(Float(xuu47000, Pos(xuu470010)), Float(xuu48000, Neg(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Neg(xuu470010), xuu48000)) 30.34/12.49 new_compare17(Float(xuu47000, Neg(xuu470010)), Float(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Neg(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Integer) -> new_ltEs14(xuu47000, xuu48000) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(ty_Ratio, eah)) -> new_ltEs16(xuu47000, xuu48000, eah) 30.34/12.49 new_mkBalBranch6Size_l0(xuu300, xuu31, xuu42, xuu34, h, ba, bb) -> new_sizeFM(xuu42, h, ba, bb) 30.34/12.49 new_compare0(:(xuu47000, xuu47001), :(xuu48000, xuu48001), bc) -> new_primCompAux0(xuu47000, xuu48000, new_compare0(xuu47001, xuu48001, bc), bc) 30.34/12.49 new_compare7(Double(xuu47000, Pos(xuu470010)), Double(xuu48000, Pos(xuu480010))) -> new_compare18(new_sr0(xuu47000, Pos(xuu480010)), new_sr0(Pos(xuu470010), xuu48000)) 30.34/12.49 new_compare31(xuu47000, xuu48000, app(ty_Ratio, dfh)) -> new_compare15(xuu47000, xuu48000, dfh) 30.34/12.49 new_ltEs11(xuu4700, xuu4800) -> new_fsEs(new_compare18(xuu4700, xuu4800)) 30.34/12.49 new_ltEs8(Just(xuu47000), Just(xuu48000), ty_Char) -> new_ltEs15(xuu47000, xuu48000) 30.34/12.49 new_esEs10(xuu40000, xuu3000, app(app(ty_@2, ce), cf)) -> new_esEs7(xuu40000, xuu3000, ce, cf) 30.34/12.49 new_compare27(Left(xuu4700), Left(xuu4800), False, bcb, bcc) -> new_compare111(xuu4700, xuu4800, new_ltEs20(xuu4700, xuu4800, bcb), bcb, bcc) 30.34/12.49 new_ltEs17(GT, EQ) -> False 30.34/12.49 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(ty_[], cda)) -> new_esEs9(xuu40002, xuu3002, cda) 30.34/12.49 new_esEs25(xuu40001, xuu3001, app(ty_Maybe, chf)) -> new_esEs4(xuu40001, xuu3001, chf) 30.34/12.49 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, cba), cbb)) -> new_esEs6(xuu40001, xuu3001, cba, cbb) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs6(xuu4700, xuu4800, bdd, bde, bdf) 30.34/12.49 new_lt8(xuu47001, xuu48001, app(app(ty_@2, cef), ceg)) -> new_lt19(xuu47001, xuu48001, cef, ceg) 30.34/12.49 new_esEs21(xuu47000, xuu48000, ty_Integer) -> new_esEs12(xuu47000, xuu48000) 30.34/12.49 new_mkBalBranch6MkBalBranch3(xuu300, xuu31, Branch(xuu500, xuu501, xuu502, xuu503, xuu504), xuu34, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch110(xuu300, xuu31, xuu500, xuu501, xuu502, xuu503, xuu504, xuu34, new_lt13(new_sizeFM(xuu504, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu503, h, ba, bb))), h, ba, bb) 30.34/12.49 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), ty_Bool, bda) -> new_ltEs10(xuu47000, xuu48000) 30.34/12.49 new_esEs17(False, False) -> True 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, app(ty_[], eae)) -> new_ltEs5(xuu47000, xuu48000, eae) 30.34/12.49 new_esEs30(xuu4000, xuu300, ty_Float) -> new_esEs18(xuu4000, xuu300) 30.34/12.49 new_mkBalBranch6MkBalBranch010(xuu300, xuu31, xuu42, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba, bb) -> error([]) 30.34/12.49 new_lt9(xuu47000, xuu48000, ty_Int) -> new_lt13(xuu47000, xuu48000) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Ordering) -> new_lt18(xuu47000, xuu48000) 30.34/12.49 new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu50, EmptyFM, True, h, ba, bb) -> error([]) 30.34/12.49 new_ltEs15(xuu4700, xuu4800) -> new_fsEs(new_compare9(xuu4700, xuu4800)) 30.34/12.49 new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs5(xuu40000, xuu3000, caa, cab, cac) 30.34/12.49 new_esEs21(xuu47000, xuu48000, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu47000, xuu48000, gd, ge) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs6(xuu47002, xuu48002, cfa, cfb, cfc) 30.34/12.49 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs12(xuu40001, xuu3001) 30.34/12.49 new_mkBalBranch6MkBalBranch3(xuu300, xuu31, EmptyFM, xuu34, True, h, ba, bb) -> error([]) 30.34/12.49 new_ltEs8(Nothing, Nothing, bcd) -> True 30.34/12.49 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, cah)) -> new_esEs4(xuu40001, xuu3001, cah) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 30.34/12.49 new_ltEs8(Just(xuu47000), Nothing, bcd) -> False 30.34/12.49 new_lt9(xuu47000, xuu48000, app(app(ty_@2, gd), ge)) -> new_lt19(xuu47000, xuu48000, gd, ge) 30.34/12.49 new_primMinusNat0(Zero, Succ(xuu13200)) -> Neg(Succ(xuu13200)) 30.34/12.49 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bbf), bbg)) -> new_esEs7(xuu40000, xuu3000, bbf, bbg) 30.34/12.49 new_mkBalBranch6MkBalBranch30(xuu300, xuu31, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), xuu34, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, xuu424, xuu34, new_lt13(new_sizeFM(xuu424, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu423, h, ba, bb))), h, ba, bb) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, app(ty_Ratio, beb)) -> new_ltEs16(xuu4700, xuu4800, beb) 30.34/12.49 new_mkBalBranch6Size_l(xuu300, xuu31, xuu50, xuu34, h, ba, bb) -> new_sizeFM(xuu50, h, ba, bb) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Char) -> new_esEs11(xuu19, xuu14) 30.34/12.49 new_ltEs21(xuu4700, xuu4800, ty_Double) -> new_ltEs4(xuu4700, xuu4800) 30.34/12.49 new_ltEs13(Left(xuu47000), Left(xuu48000), app(app(ty_@2, dhg), dhh), bda) -> new_ltEs18(xuu47000, xuu48000, dhg, dhh) 30.34/12.49 new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Left(xuu300), xuu31, xuu50, xuu343, app(app(ty_Either, h), ba), bb), xuu344, app(app(ty_Either, h), ba), bb) 30.34/12.49 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.34/12.49 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.34/12.49 new_esEs9([], [], bd) -> True 30.34/12.49 new_ltEs17(GT, GT) -> True 30.34/12.49 new_mkBalBranch6MkBalBranch11(xuu300, xuu31, xuu420, xuu421, xuu422, xuu423, Branch(xuu4240, xuu4241, xuu4242, xuu4243, xuu4244), xuu34, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4240, xuu4241, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu420, xuu421, xuu423, xuu4243, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Right(xuu300), xuu31, xuu4244, xuu34, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 30.34/12.49 new_ltEs7(xuu47002, xuu48002, ty_Double) -> new_ltEs4(xuu47002, xuu48002) 30.34/12.49 new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba, bb) -> Branch(Right(xuu4000), new_addListToFM0(xuu31, xuu401, bb), xuu32, xuu33, xuu34) 30.34/12.49 new_ltEs5(xuu4700, xuu4800, bc) -> new_fsEs(new_compare0(xuu4700, xuu4800, bc)) 30.34/12.49 new_compare110(xuu47000, xuu48000, False, gd, ge) -> GT 30.34/12.49 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 30.34/12.49 new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bee) -> new_esEs16(xuu40000, xuu3000) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ccc), ccd)) -> new_esEs6(xuu40002, xuu3002, ccc, ccd) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Integer) -> new_lt16(xuu47000, xuu48000) 30.34/12.49 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, bhf)) -> new_esEs4(xuu40000, xuu3000, bhf) 30.34/12.49 new_esEs29(xuu19, xuu14, app(ty_[], dcb)) -> new_esEs9(xuu19, xuu14, dcb) 30.34/12.49 new_primEqNat0(Zero, Zero) -> True 30.34/12.49 new_esEs24(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 30.34/12.49 new_compare26(xuu47000, xuu48000) -> new_compare24(xuu47000, xuu48000, new_esEs8(xuu47000, xuu48000)) 30.34/12.49 new_compare13(xuu47000, xuu48000, False) -> GT 30.34/12.49 new_lt20(xuu47000, xuu48000, app(app(ty_Either, ec), ed)) -> new_lt4(xuu47000, xuu48000, ec, ed) 30.34/12.49 new_esEs32(xuu36, xuu31, app(app(ty_@2, bac), bad)) -> new_esEs7(xuu36, xuu31, bac, bad) 30.34/12.49 new_ltEs19(xuu47001, xuu48001, ty_Bool) -> new_ltEs10(xuu47001, xuu48001) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(ty_[], bc)) -> new_ltEs5(xuu4700, xuu4800, bc) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, app(ty_Ratio, bdb)) -> new_ltEs16(xuu4700, xuu4800, bdb) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Ordering) -> new_compare26(xuu47000, xuu48000) 30.34/12.49 new_esEs31(xuu4000, xuu300, app(app(ty_@2, dde), ddf)) -> new_esEs7(xuu4000, xuu300, dde, ddf) 30.34/12.49 new_esEs4(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs12(xuu40000, xuu3000) 30.34/12.49 new_compare31(xuu47000, xuu48000, app(ty_Maybe, dfa)) -> new_compare30(xuu47000, xuu48000, dfa) 30.34/12.49 new_asAs(False, xuu172) -> False 30.34/12.49 new_addToFM_C25(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, dah, dba, dbb) -> new_mkBalBranch(xuu14, xuu15, new_addToFM_C0(xuu17, Left(xuu19), xuu20, dah, dba, dbb), xuu18, dah, dba, dbb) 30.34/12.49 new_mkBalBranch6MkBalBranch4(xuu300, xuu31, xuu50, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(xuu300, xuu31, xuu50, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt13(new_sizeFM(xuu343, h, ba, bb), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu344, h, ba, bb))), h, ba, bb) 30.34/12.49 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, cch)) -> new_esEs15(xuu40002, xuu3002, cch) 30.34/12.49 new_compare31(xuu47000, xuu48000, ty_Integer) -> new_compare19(xuu47000, xuu48000) 30.34/12.49 new_esEs25(xuu40001, xuu3001, ty_@0) -> new_esEs16(xuu40001, xuu3001) 30.34/12.49 new_compare28(xuu47000, xuu48000, True, gd, ge) -> EQ 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_@0) -> new_lt15(xuu47000, xuu48000) 30.34/12.49 new_esEs30(xuu4000, xuu300, app(ty_[], bd)) -> new_esEs9(xuu4000, xuu300, bd) 30.34/12.49 new_esEs32(xuu36, xuu31, ty_Integer) -> new_esEs12(xuu36, xuu31) 30.34/12.49 new_ltEs20(xuu4700, xuu4800, ty_Bool) -> new_ltEs10(xuu4700, xuu4800) 30.34/12.49 new_esEs8(EQ, GT) -> False 30.34/12.49 new_esEs8(GT, EQ) -> False 30.34/12.49 new_sizeFM0(EmptyFM, bbh, bca) -> Pos(Zero) 30.34/12.49 new_esEs29(xuu19, xuu14, ty_Float) -> new_esEs18(xuu19, xuu14) 30.34/12.49 new_primCmpInt(Neg(Succ(xuu4700)), Neg(xuu480)) -> new_primCmpNat0(xuu480, xuu4700) 30.34/12.49 new_ltEs13(Right(xuu47000), Right(xuu48000), bch, ty_Ordering) -> new_ltEs17(xuu47000, xuu48000) 30.34/12.49 new_lt8(xuu47001, xuu48001, ty_Int) -> new_lt13(xuu47001, xuu48001) 30.34/12.49 new_lt20(xuu47000, xuu48000, ty_Bool) -> new_lt6(xuu47000, xuu48000) 30.34/12.49 new_compare28(xuu47000, xuu48000, False, gd, ge) -> new_compare110(xuu47000, xuu48000, new_ltEs18(xuu47000, xuu48000, gd, ge), gd, ge) 30.34/12.49 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs5(xuu40001, xuu3001, cbc, cbd, cbe) 30.34/12.49 new_mkBalBranch6MkBalBranch50(xuu300, xuu31, xuu42, xuu34, True, h, ba, bb) -> new_mkBranch(Zero, Right(xuu300), xuu31, xuu42, xuu34, app(app(ty_Either, h), ba), bb) 30.34/12.49 new_mkBalBranch6MkBalBranch5(xuu300, xuu31, xuu50, xuu34, True, h, ba, bb) -> new_mkBranch(Zero, Left(xuu300), xuu31, xuu50, xuu34, app(app(ty_Either, h), ba), bb) 30.34/12.49 30.34/12.49 The set Q consists of the following terms: 30.34/12.49 30.34/12.49 new_esEs21(x0, x1, ty_Bool) 30.34/12.49 new_primCompAux0(x0, x1, x2, x3) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 30.34/12.49 new_esEs22(x0, x1, ty_Integer) 30.34/12.49 new_esEs8(EQ, EQ) 30.34/12.49 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 30.34/12.49 new_esEs23(x0, x1, ty_@0) 30.34/12.49 new_esEs27(x0, x1, ty_Ordering) 30.34/12.49 new_ltEs20(x0, x1, ty_Double) 30.34/12.49 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_primMinusNat0(Zero, Succ(x0)) 30.34/12.49 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs17(EQ, EQ) 30.34/12.49 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 30.34/12.49 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs23(x0, x1, ty_Bool) 30.34/12.49 new_esEs25(x0, x1, ty_Ordering) 30.34/12.49 new_esEs21(x0, x1, ty_@0) 30.34/12.49 new_ltEs16(x0, x1, x2) 30.34/12.49 new_esEs29(x0, x1, app(ty_[], x2)) 30.34/12.49 new_ltEs21(x0, x1, ty_Float) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 30.34/12.49 new_esEs27(x0, x1, ty_Double) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 30.34/12.49 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_compare6(x0, x1, x2, x3) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 30.34/12.49 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs28(x0, x1, ty_Char) 30.34/12.49 new_primCmpNat1(Zero, Zero) 30.34/12.49 new_primPlusNat1(Zero, x0) 30.34/12.49 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.34/12.49 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_compare18(x0, x1) 30.34/12.49 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) 30.34/12.49 new_ltEs19(x0, x1, ty_Int) 30.34/12.49 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_esEs25(x0, x1, ty_Char) 30.34/12.49 new_primEqInt(Pos(Zero), Pos(Zero)) 30.34/12.49 new_esEs24(x0, x1, ty_Ordering) 30.34/12.49 new_primPlusNat0(Succ(x0), Zero) 30.34/12.49 new_primMinusNat0(Zero, Zero) 30.34/12.49 new_esEs22(x0, x1, ty_Bool) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Float) 30.34/12.49 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.34/12.49 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_esEs25(x0, x1, ty_Double) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 30.34/12.49 new_esEs17(False, False) 30.34/12.49 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs9([], [], x0) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Integer) 30.34/12.49 new_compare0(:(x0, x1), :(x2, x3), x4) 30.34/12.49 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_compare8(x0, x1) 30.34/12.49 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_lt9(x0, x1, ty_Float) 30.34/12.49 new_ltEs19(x0, x1, ty_Char) 30.34/12.49 new_esEs24(x0, x1, ty_Double) 30.34/12.49 new_esEs25(x0, x1, ty_Int) 30.34/12.49 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 30.34/12.49 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.34/12.49 new_primEqInt(Neg(Zero), Neg(Zero)) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 30.34/12.49 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.34/12.49 new_esEs32(x0, x1, ty_Ordering) 30.34/12.49 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.34/12.49 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_primCompAux00(x0, EQ) 30.34/12.49 new_ltEs12(x0, x1) 30.34/12.49 new_esEs23(x0, x1, ty_Char) 30.34/12.49 new_ltEs20(x0, x1, ty_Char) 30.34/12.49 new_ltEs19(x0, x1, ty_Bool) 30.34/12.49 new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 30.34/12.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 30.34/12.49 new_primPlusNat0(Succ(x0), Succ(x1)) 30.34/12.49 new_sIZE_RATIO 30.34/12.49 new_esEs30(x0, x1, ty_Float) 30.34/12.49 new_compare31(x0, x1, ty_Bool) 30.34/12.49 new_ltEs4(x0, x1) 30.34/12.49 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.34/12.49 new_ltEs19(x0, x1, ty_Ordering) 30.34/12.49 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_primCmpInt1(EmptyFM, x0, x1, x2, x3, x4, x5) 30.34/12.49 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.34/12.49 new_compare29(x0, x1, x2, x3) 30.34/12.49 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_mkBalBranch6MkBalBranch30(x0, x1, EmptyFM, x2, True, x3, x4, x5) 30.34/12.49 new_compare31(x0, x1, ty_Double) 30.34/12.49 new_esEs24(x0, x1, ty_Int) 30.34/12.49 new_esEs10(x0, x1, ty_Ordering) 30.34/12.49 new_esEs12(Integer(x0), Integer(x1)) 30.34/12.49 new_esEs31(x0, x1, ty_Double) 30.34/12.49 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 30.34/12.49 new_esEs27(x0, x1, ty_Char) 30.34/12.49 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.34/12.49 new_esEs30(x0, x1, ty_@0) 30.34/12.49 new_esEs23(x0, x1, ty_Integer) 30.34/12.49 new_compare27(Left(x0), Right(x1), False, x2, x3) 30.34/12.49 new_compare27(Right(x0), Left(x1), False, x2, x3) 30.34/12.49 new_compare31(x0, x1, ty_@0) 30.34/12.49 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.34/12.49 new_lt20(x0, x1, ty_@0) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 30.34/12.49 new_ltEs21(x0, x1, ty_Integer) 30.34/12.49 new_esEs6(Left(x0), Right(x1), x2, x3) 30.34/12.49 new_esEs6(Right(x0), Left(x1), x2, x3) 30.34/12.49 new_compare111(x0, x1, False, x2, x3) 30.34/12.49 new_ltEs19(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs22(x0, x1, ty_Float) 30.34/12.49 new_lt20(x0, x1, ty_Bool) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs21(x0, x1, ty_Integer) 30.34/12.49 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.34/12.49 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.34/12.49 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.34/12.49 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.34/12.49 new_ltEs10(False, False) 30.34/12.49 new_lt12(x0, x1, x2, x3, x4) 30.34/12.49 new_compare24(x0, x1, False) 30.34/12.49 new_primMulNat0(Zero, Succ(x0)) 30.34/12.49 new_compare31(x0, x1, ty_Int) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Double) 30.34/12.49 new_ltEs7(x0, x1, ty_Double) 30.34/12.49 new_primEqInt(Pos(Zero), Neg(Zero)) 30.34/12.49 new_primEqInt(Neg(Zero), Pos(Zero)) 30.34/12.49 new_compare27(x0, x1, True, x2, x3) 30.34/12.49 new_esEs27(x0, x1, ty_Int) 30.34/12.49 new_ltEs19(x0, x1, ty_Integer) 30.34/12.49 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_esEs26(x0, x1, ty_Ordering) 30.34/12.49 new_lt18(x0, x1) 30.34/12.49 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.34/12.49 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_ltEs20(x0, x1, ty_Int) 30.34/12.49 new_lt20(x0, x1, ty_Int) 30.34/12.49 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_lt9(x0, x1, ty_Bool) 30.34/12.49 new_mkBalBranch6MkBalBranch40(x0, x1, x2, EmptyFM, True, x3, x4, x5) 30.34/12.49 new_compare31(x0, x1, ty_Char) 30.34/12.49 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.34/12.49 new_esEs27(x0, x1, ty_@0) 30.34/12.49 new_primCmpNat0(Zero, x0) 30.34/12.49 new_compare27(Left(x0), Left(x1), False, x2, x3) 30.34/12.49 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) 30.34/12.49 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.34/12.49 new_primMulInt(Neg(x0), Neg(x1)) 30.34/12.49 new_lt20(x0, x1, ty_Double) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.34/12.49 new_esEs22(x0, x1, ty_@0) 30.34/12.49 new_compare31(x0, x1, app(ty_[], x2)) 30.34/12.49 new_compare23(x0, x1, False, x2, x3, x4) 30.34/12.49 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.34/12.49 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.34/12.49 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_compare13(x0, x1, False) 30.34/12.49 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_lt8(x0, x1, ty_Float) 30.34/12.49 new_esEs28(x0, x1, ty_Ordering) 30.34/12.49 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_lt20(x0, x1, ty_Char) 30.34/12.49 new_lt11(x0, x1) 30.34/12.49 new_esEs27(x0, x1, app(ty_[], x2)) 30.34/12.49 new_sr(Integer(x0), Integer(x1)) 30.34/12.49 new_ltEs20(x0, x1, ty_@0) 30.34/12.49 new_esEs20(x0, x1, ty_Integer) 30.34/12.49 new_lt6(x0, x1) 30.34/12.49 new_esEs23(x0, x1, ty_Float) 30.34/12.49 new_esEs21(x0, x1, ty_Double) 30.34/12.49 new_esEs10(x0, x1, ty_Char) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 30.34/12.49 new_esEs27(x0, x1, ty_Bool) 30.34/12.49 new_esEs28(x0, x1, ty_Integer) 30.34/12.49 new_esEs22(x0, x1, ty_Char) 30.34/12.49 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs25(x0, x1, ty_Bool) 30.34/12.49 new_ltEs21(x0, x1, ty_Bool) 30.34/12.49 new_ltEs7(x0, x1, ty_Ordering) 30.34/12.49 new_esEs26(x0, x1, app(ty_[], x2)) 30.34/12.49 new_primCompAux00(x0, GT) 30.34/12.49 new_ltEs13(Left(x0), Right(x1), x2, x3) 30.34/12.49 new_ltEs13(Right(x0), Left(x1), x2, x3) 30.34/12.49 new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 30.34/12.49 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 30.34/12.49 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs24(x0, x1, ty_Bool) 30.34/12.49 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs10(x0, x1, ty_Int) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 30.34/12.49 new_esEs29(x0, x1, ty_Integer) 30.34/12.49 new_esEs9([], :(x0, x1), x2) 30.34/12.49 new_lt5(x0, x1) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Float) 30.34/12.49 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 30.34/12.49 new_lt10(x0, x1, x2) 30.34/12.49 new_lt8(x0, x1, ty_Bool) 30.34/12.49 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_lt20(x0, x1, ty_Integer) 30.34/12.49 new_lt16(x0, x1) 30.34/12.49 new_gt(x0, x1) 30.34/12.49 new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) 30.34/12.49 new_esEs30(x0, x1, ty_Int) 30.34/12.49 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_primCmpNat1(Succ(x0), Succ(x1)) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs28(x0, x1, ty_Bool) 30.34/12.49 new_esEs13(x0, x1) 30.34/12.49 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_compare19(Integer(x0), Integer(x1)) 30.34/12.49 new_esEs21(x0, x1, app(ty_[], x2)) 30.34/12.49 new_addListToFM0(x0, x1, x2) 30.34/12.49 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs30(x0, x1, ty_Char) 30.34/12.49 new_esEs23(x0, x1, ty_Int) 30.34/12.49 new_ltEs19(x0, x1, ty_Double) 30.34/12.49 new_primEqNat0(Zero, Succ(x0)) 30.34/12.49 new_esEs32(x0, x1, ty_@0) 30.34/12.49 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_compare9(Char(x0), Char(x1)) 30.34/12.49 new_ltEs21(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs24(x0, x1, ty_Char) 30.34/12.49 new_esEs8(GT, GT) 30.34/12.49 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 30.34/12.49 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_esEs8(LT, EQ) 30.34/12.49 new_esEs8(EQ, LT) 30.34/12.49 new_compare31(x0, x1, ty_Integer) 30.34/12.49 new_esEs10(x0, x1, ty_Float) 30.34/12.49 new_ltEs17(LT, LT) 30.34/12.49 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.34/12.49 new_compare31(x0, x1, ty_Ordering) 30.34/12.49 new_esEs24(x0, x1, ty_Integer) 30.34/12.49 new_esEs10(x0, x1, ty_Bool) 30.34/12.49 new_lt20(x0, x1, ty_Ordering) 30.34/12.49 new_primCmpNat2(x0, Zero) 30.34/12.49 new_ltEs8(Nothing, Just(x0), x1) 30.34/12.49 new_compare210(x0, x1, True, x2) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Int) 30.34/12.49 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.34/12.49 new_esEs9(:(x0, x1), [], x2) 30.34/12.49 new_esEs8(LT, LT) 30.34/12.49 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 30.34/12.49 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.34/12.49 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.34/12.49 new_esEs30(x0, x1, ty_Ordering) 30.34/12.49 new_primCmpNat0(Succ(x0), x1) 30.34/12.49 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs4(Nothing, Nothing, x0) 30.34/12.49 new_esEs31(x0, x1, ty_Ordering) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 30.34/12.49 new_esEs4(Just(x0), Nothing, x1) 30.34/12.49 new_compare0([], :(x0, x1), x2) 30.34/12.49 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 30.34/12.49 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) 30.34/12.49 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_ltEs19(x0, x1, ty_@0) 30.34/12.49 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_lt19(x0, x1, x2, x3) 30.34/12.49 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs29(x0, x1, ty_Bool) 30.34/12.49 new_esEs29(x0, x1, ty_Float) 30.34/12.49 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 30.34/12.49 new_esEs32(x0, x1, ty_Double) 30.34/12.49 new_compare12(x0, x1, True, x2) 30.34/12.49 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs30(x0, x1, ty_Bool) 30.34/12.49 new_esEs22(x0, x1, ty_Ordering) 30.34/12.49 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_ltEs17(GT, GT) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.34/12.49 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.34/12.49 new_primEqNat0(Succ(x0), Zero) 30.34/12.49 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_compare25(x0, x1, False) 30.34/12.49 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.34/12.49 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.34/12.49 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_esEs30(x0, x1, ty_Integer) 30.34/12.49 new_esEs27(x0, x1, ty_Integer) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Char) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.34/12.49 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_compare112(x0, x1, False, x2, x3) 30.34/12.49 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_primMulNat0(Succ(x0), Succ(x1)) 30.34/12.49 new_esEs26(x0, x1, ty_Double) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 30.34/12.49 new_primCmpNat1(Succ(x0), Zero) 30.34/12.49 new_lt8(x0, x1, ty_Ordering) 30.34/12.49 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_ltEs14(x0, x1) 30.34/12.49 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs28(x0, x1, ty_Float) 30.34/12.49 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs8(Just(x0), Nothing, x1) 30.34/12.49 new_esEs20(x0, x1, ty_Int) 30.34/12.49 new_esEs26(x0, x1, ty_@0) 30.34/12.49 new_esEs28(x0, x1, ty_Int) 30.34/12.49 new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_esEs16(@0, @0) 30.34/12.49 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 30.34/12.49 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 30.34/12.49 new_esEs32(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs29(x0, x1, ty_Int) 30.34/12.49 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 30.34/12.49 new_lt8(x0, x1, ty_Integer) 30.34/12.49 new_ltEs17(LT, EQ) 30.34/12.49 new_lt20(x0, x1, app(ty_[], x2)) 30.34/12.49 new_ltEs17(EQ, LT) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.34/12.49 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 30.34/12.49 new_primPlusNat1(Succ(x0), x1) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Bool) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.34/12.49 new_sizeFM(EmptyFM, x0, x1, x2) 30.34/12.49 new_pePe(False, x0) 30.34/12.49 new_compare14(@0, @0) 30.34/12.49 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 30.34/12.49 new_lt8(x0, x1, ty_Int) 30.34/12.49 new_esEs27(x0, x1, ty_Float) 30.34/12.49 new_ltEs20(x0, x1, ty_Float) 30.34/12.49 new_lt9(x0, x1, ty_Double) 30.34/12.49 new_ltEs21(x0, x1, ty_Double) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.34/12.49 new_esEs29(x0, x1, ty_Char) 30.34/12.49 new_compare28(x0, x1, False, x2, x3) 30.34/12.49 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_lt8(x0, x1, ty_Char) 30.34/12.49 new_primMulNat0(Zero, Zero) 30.34/12.49 new_primPlusInt(Pos(x0), Pos(x1)) 30.34/12.49 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 30.34/12.49 new_esEs25(x0, x1, ty_Float) 30.34/12.49 new_esEs24(x0, x1, ty_Float) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.34/12.49 new_lt9(x0, x1, ty_Ordering) 30.34/12.49 new_esEs25(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Bool) 30.34/12.49 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs7(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_primPlusNat0(Zero, Succ(x0)) 30.34/12.49 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.34/12.49 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Integer) 30.34/12.49 new_mkBalBranch6MkBalBranch40(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 30.34/12.49 new_esEs17(True, True) 30.34/12.49 new_compare25(x0, x1, True) 30.34/12.49 new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.34/12.49 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_compare10(x0, x1, False, x2, x3, x4) 30.34/12.49 new_ltEs21(x0, x1, ty_Ordering) 30.34/12.49 new_ltEs10(True, False) 30.34/12.49 new_ltEs10(False, True) 30.34/12.49 new_compare13(x0, x1, True) 30.34/12.49 new_ltEs7(x0, x1, ty_@0) 30.34/12.49 new_lt8(x0, x1, ty_Double) 30.34/12.49 new_compare0([], [], x0) 30.34/12.49 new_esEs32(x0, x1, ty_Integer) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.34/12.49 new_primMinusNat0(Succ(x0), Zero) 30.34/12.49 new_ltEs21(x0, x1, ty_Int) 30.34/12.49 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_sizeFM0(EmptyFM, x0, x1) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 30.34/12.49 new_primCmpNat1(Zero, Succ(x0)) 30.34/12.49 new_esEs18(Float(x0, x1), Float(x2, x3)) 30.34/12.49 new_ltEs15(x0, x1) 30.34/12.49 new_esEs10(x0, x1, ty_Integer) 30.34/12.49 new_esEs31(x0, x1, ty_Integer) 30.34/12.49 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_primPlusNat0(Zero, Zero) 30.34/12.49 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_ltEs7(x0, x1, ty_Integer) 30.34/12.49 new_compare112(x0, x1, True, x2, x3) 30.34/12.49 new_primPlusInt(Neg(x0), Neg(x1)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.34/12.49 new_ltEs5(x0, x1, x2) 30.34/12.49 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_not(True) 30.34/12.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 30.34/12.49 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_mkBalBranch6MkBalBranch30(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) 30.34/12.49 new_primMulNat0(Succ(x0), Zero) 30.34/12.49 new_ltEs21(x0, x1, ty_Char) 30.34/12.49 new_esEs31(x0, x1, ty_Bool) 30.34/12.49 new_compare110(x0, x1, True, x2, x3) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.34/12.49 new_primMinusNat0(Succ(x0), Succ(x1)) 30.34/12.49 new_esEs31(x0, x1, ty_@0) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 30.34/12.49 new_lt20(x0, x1, ty_Float) 30.34/12.49 new_esEs8(EQ, GT) 30.34/12.49 new_esEs8(GT, EQ) 30.34/12.49 new_lt9(x0, x1, ty_Char) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 30.34/12.49 new_esEs32(x0, x1, ty_Float) 30.34/12.49 new_esEs29(x0, x1, ty_Ordering) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.34/12.49 new_lt9(x0, x1, ty_Int) 30.34/12.49 new_asAs(True, x0) 30.34/12.49 new_esEs28(x0, x1, app(ty_[], x2)) 30.34/12.49 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs26(x0, x1, ty_Integer) 30.34/12.49 new_esEs10(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.34/12.49 new_esEs17(False, True) 30.34/12.49 new_esEs17(True, False) 30.34/12.49 new_primEqNat0(Succ(x0), Succ(x1)) 30.34/12.49 new_ltEs7(x0, x1, ty_Bool) 30.34/12.49 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_compare16(x0, x1, False) 30.34/12.49 new_lt15(x0, x1) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_@0) 30.34/12.49 new_ltEs7(x0, x1, ty_Char) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Char) 30.34/12.49 new_esEs22(x0, x1, ty_Double) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.34/12.49 new_primCompAux00(x0, LT) 30.34/12.49 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_lt8(x0, x1, ty_@0) 30.34/12.49 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 30.34/12.49 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs11(Char(x0), Char(x1)) 30.34/12.49 new_esEs22(x0, x1, ty_Int) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Int) 30.34/12.49 new_ltEs8(Nothing, Nothing, x0) 30.34/12.49 new_compare26(x0, x1) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.34/12.49 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.34/12.49 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_compare0(:(x0, x1), [], x2) 30.34/12.49 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 30.34/12.49 new_pePe(True, x0) 30.34/12.49 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.34/12.49 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.34/12.49 new_lt9(x0, x1, ty_@0) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.34/12.49 new_primMulInt(Pos(x0), Pos(x1)) 30.34/12.49 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs24(x0, x1, ty_@0) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.34/12.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 30.34/12.49 new_compare23(x0, x1, True, x2, x3, x4) 30.34/12.49 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5, x6) 30.34/12.49 new_ltEs21(x0, x1, ty_@0) 30.34/12.49 new_lt7(x0, x1) 30.34/12.49 new_esEs21(x0, x1, ty_Ordering) 30.34/12.49 new_esEs31(x0, x1, ty_Char) 30.34/12.49 new_fsEs(x0) 30.34/12.49 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 30.34/12.49 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.34/12.49 new_ltEs17(LT, GT) 30.34/12.49 new_ltEs17(GT, LT) 30.34/12.49 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 30.34/12.49 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_lt14(x0, x1, x2) 30.34/12.49 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_primMulInt(Pos(x0), Neg(x1)) 30.34/12.49 new_primMulInt(Neg(x0), Pos(x1)) 30.34/12.49 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 30.34/12.49 new_compare28(x0, x1, True, x2, x3) 30.34/12.49 new_esEs25(x0, x1, ty_Integer) 30.34/12.49 new_esEs32(x0, x1, ty_Char) 30.34/12.49 new_esEs8(LT, GT) 30.34/12.49 new_esEs8(GT, LT) 30.34/12.49 new_esEs23(x0, x1, ty_Double) 30.34/12.49 new_esEs31(x0, x1, ty_Int) 30.34/12.49 new_esEs21(x0, x1, ty_Float) 30.34/12.49 new_ltEs7(x0, x1, ty_Int) 30.34/12.49 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.34/12.49 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs23(x0, x1, app(ty_[], x2)) 30.34/12.49 new_esEs26(x0, x1, ty_Bool) 30.34/12.49 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.34/12.49 new_esEs25(x0, x1, ty_@0) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_@0) 30.34/12.49 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 30.34/12.49 new_esEs32(x0, x1, ty_Int) 30.34/12.49 new_compare27(Right(x0), Right(x1), False, x2, x3) 30.34/12.49 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.34/12.49 new_esEs23(x0, x1, ty_Ordering) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.34/12.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 30.34/12.49 new_lt13(x0, x1) 30.34/12.49 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 30.34/12.49 new_esEs24(x0, x1, app(ty_[], x2)) 30.34/12.49 new_ltEs20(x0, x1, ty_Bool) 30.34/12.49 new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, True, x4, x5, x6) 30.34/12.49 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.34/12.49 new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) 30.34/12.49 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.34/12.49 new_compare31(x0, x1, ty_Float) 30.34/12.49 new_compare11(x0, x1, x2, x3, x4) 30.34/12.49 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_lt9(x0, x1, ty_Integer) 30.34/12.49 new_esEs9(:(x0, x1), :(x2, x3), x4) 30.34/12.49 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_esEs19(x0, x1, ty_Int) 30.34/12.49 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_ltEs7(x0, x1, ty_Float) 30.34/12.49 new_sr0(x0, x1) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.34/12.49 new_esEs31(x0, x1, ty_Float) 30.34/12.49 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 30.34/12.49 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_compare210(x0, x1, False, x2) 30.34/12.49 new_esEs29(x0, x1, ty_Double) 30.34/12.49 new_esEs26(x0, x1, ty_Int) 30.34/12.49 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_primEqNat0(Zero, Zero) 30.34/12.49 new_ltEs19(x0, x1, ty_Float) 30.34/12.49 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 30.34/12.49 new_esEs22(x0, x1, app(ty_[], x2)) 30.34/12.49 new_primCmpNat2(x0, Succ(x1)) 30.34/12.49 new_esEs31(x0, x1, app(ty_[], x2)) 30.34/12.49 new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) 30.34/12.49 new_not(False) 30.34/12.49 new_esEs30(x0, x1, ty_Double) 30.34/12.49 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.34/12.49 new_esEs10(x0, x1, ty_@0) 30.34/12.49 new_esEs29(x0, x1, ty_@0) 30.34/12.49 new_esEs30(x0, x1, app(ty_[], x2)) 30.34/12.49 new_compare12(x0, x1, False, x2) 30.34/12.49 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_compare110(x0, x1, False, x2, x3) 30.34/12.49 new_esEs32(x0, x1, ty_Bool) 30.34/12.49 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 30.34/12.49 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs10(x0, x1, ty_Double) 30.34/12.49 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.34/12.49 new_ltEs17(EQ, GT) 30.34/12.49 new_ltEs17(GT, EQ) 30.34/12.49 new_compare111(x0, x1, True, x2, x3) 30.34/12.49 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_ltEs11(x0, x1) 30.34/12.49 new_esEs4(Nothing, Just(x0), x1) 30.34/12.49 new_emptyFM(x0, x1, x2) 30.34/12.49 new_compare16(x0, x1, True) 30.34/12.49 new_compare30(x0, x1, x2) 30.34/12.49 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_esEs19(x0, x1, ty_Integer) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.34/12.49 new_esEs28(x0, x1, ty_Double) 30.34/12.49 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.34/12.49 new_esEs21(x0, x1, ty_Int) 30.34/12.49 new_lt4(x0, x1, x2, x3) 30.34/12.49 new_esEs26(x0, x1, ty_Float) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 30.34/12.49 new_ltEs9(x0, x1) 30.34/12.49 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.34/12.49 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.34/12.49 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.34/12.49 new_ltEs8(Just(x0), Just(x1), ty_Double) 30.34/12.49 new_ltEs20(x0, x1, app(ty_[], x2)) 30.34/12.49 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.34/12.49 new_compare24(x0, x1, True) 30.34/12.49 new_esEs26(x0, x1, ty_Char) 30.34/12.49 new_lt9(x0, x1, app(ty_[], x2)) 30.34/12.49 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.34/12.49 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.34/12.49 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_primPlusInt(Pos(x0), Neg(x1)) 30.34/12.49 new_primPlusInt(Neg(x0), Pos(x1)) 30.34/12.49 new_asAs(False, x0) 30.34/12.49 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 30.34/12.49 new_ltEs20(x0, x1, ty_Integer) 30.34/12.49 new_esEs4(Just(x0), Just(x1), ty_Ordering) 30.34/12.49 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 30.34/12.49 new_esEs21(x0, x1, ty_Char) 30.34/12.49 new_ltEs10(True, True) 30.34/12.49 new_ltEs20(x0, x1, ty_Ordering) 30.34/12.49 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.34/12.49 new_esEs28(x0, x1, ty_@0) 30.34/12.49 new_lt8(x0, x1, app(ty_[], x2)) 30.34/12.49 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 30.34/12.49 new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4, x5) 30.34/12.49 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.34/12.49 new_compare10(x0, x1, True, x2, x3, x4) 30.34/12.49 new_lt17(x0, x1, x2) 30.34/12.49 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 30.34/12.49 new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5) 30.34/12.49 30.34/12.49 We have to consider all minimal (P,Q,R)-chains. 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (39) QDPSizeChangeProof (EQUIVALENT) 30.34/12.49 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. 30.34/12.49 30.34/12.49 From the DPs we obtained the following set of size-change graphs: 30.34/12.49 *new_foldl(xuu3, :(xuu40, xuu41), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba, bb), xuu41, h, ba, bb) 30.34/12.49 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 30.34/12.49 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (40) 30.34/12.49 YES 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (41) 30.34/12.49 Obligation: 30.34/12.49 Q DP problem: 30.34/12.49 The TRS P consists of the following rules: 30.34/12.49 30.34/12.49 new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 30.34/12.49 30.34/12.49 R is empty. 30.34/12.49 Q is empty. 30.34/12.49 We have to consider all minimal (P,Q,R)-chains. 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (42) QDPSizeChangeProof (EQUIVALENT) 30.34/12.49 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. 30.34/12.49 30.34/12.49 From the DPs we obtained the following set of size-change graphs: 30.34/12.49 *new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 30.34/12.49 The graph contains the following edges 1 > 1, 2 > 2 30.34/12.49 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (43) 30.34/12.49 YES 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (44) 30.34/12.49 Obligation: 30.34/12.49 Q DP problem: 30.34/12.49 The TRS P consists of the following rules: 30.34/12.49 30.34/12.49 new_primMinusNat(Succ(xuu50200), Succ(xuu13200)) -> new_primMinusNat(xuu50200, xuu13200) 30.34/12.49 30.34/12.49 R is empty. 30.34/12.49 Q is empty. 30.34/12.49 We have to consider all minimal (P,Q,R)-chains. 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (45) QDPSizeChangeProof (EQUIVALENT) 30.34/12.49 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. 30.34/12.49 30.34/12.49 From the DPs we obtained the following set of size-change graphs: 30.34/12.49 *new_primMinusNat(Succ(xuu50200), Succ(xuu13200)) -> new_primMinusNat(xuu50200, xuu13200) 30.34/12.49 The graph contains the following edges 1 > 1, 2 > 2 30.34/12.49 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (46) 30.34/12.49 YES 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (47) 30.34/12.49 Obligation: 30.34/12.49 Q DP problem: 30.34/12.49 The TRS P consists of the following rules: 30.34/12.49 30.34/12.49 new_primPlusNat(Succ(xuu50200), Succ(xuu13200)) -> new_primPlusNat(xuu50200, xuu13200) 30.34/12.49 30.34/12.49 R is empty. 30.34/12.49 Q is empty. 30.34/12.49 We have to consider all minimal (P,Q,R)-chains. 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (48) QDPSizeChangeProof (EQUIVALENT) 30.34/12.49 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. 30.34/12.49 30.34/12.49 From the DPs we obtained the following set of size-change graphs: 30.34/12.49 *new_primPlusNat(Succ(xuu50200), Succ(xuu13200)) -> new_primPlusNat(xuu50200, xuu13200) 30.34/12.49 The graph contains the following edges 1 > 1, 2 > 2 30.34/12.49 30.34/12.49 30.34/12.49 ---------------------------------------- 30.34/12.49 30.34/12.49 (49) 30.34/12.49 YES 30.34/12.54 EOF